Interface HistoricBatchRestService
- All Known Implementing Classes:
- HistoricBatchRestServiceImpl
@Path("/batch")
public interface HistoricBatchRestService
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptiongetCleanableHistoricBatchesReport(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getCleanableHistoricBatchesReportCount(jakarta.ws.rs.core.UriInfo uriInfo) getHistoricBatch(String batchId) getHistoricBatches(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getHistoricBatchesCount(jakarta.ws.rs.core.UriInfo uriInfo) 
- 
Field Details- 
PATH- See Also:
 
 
- 
- 
Method Details- 
getHistoricBatch
- 
getHistoricBatches@GET @Produces("application/json") List<HistoricBatchDto> getHistoricBatches(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) 
- 
getHistoricBatchesCount@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricBatchesCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) 
- 
getCleanableHistoricBatchesReport@GET @Path("/cleanable-batch-report") @Produces("application/json") List<CleanableHistoricBatchReportResultDto> getCleanableHistoricBatchesReport(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) 
- 
getCleanableHistoricBatchesReportCount@GET @Path("/cleanable-batch-report/count") @Produces("application/json") CountResultDto getCleanableHistoricBatchesReportCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) 
- 
setRemovalTimeAsync@POST @Path("/set-removal-time") @Consumes("application/json") @Produces("application/json") BatchDto setRemovalTimeAsync(SetRemovalTimeToHistoricBatchesDto dto) 
 
-