Interface HistoricBatchRestService
- 
- All Known Implementing Classes:
- HistoricBatchRestServiceImpl
 
 @Path("/batch") public interface HistoricBatchRestService
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringPATH
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<CleanableHistoricBatchReportResultDto>getCleanableHistoricBatchesReport(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)CountResultDtogetCleanableHistoricBatchesReportCount(javax.ws.rs.core.UriInfo uriInfo)HistoricBatchResourcegetHistoricBatch(java.lang.String batchId)java.util.List<HistoricBatchDto>getHistoricBatches(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)CountResultDtogetHistoricBatchesCount(javax.ws.rs.core.UriInfo uriInfo)BatchDtosetRemovalTimeAsync(SetRemovalTimeToHistoricBatchesDto dto)
 
- 
- 
- 
Field Detail- 
PATHstatic final java.lang.String PATH - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getHistoricBatch@Path("/{id}") HistoricBatchResource getHistoricBatch(@PathParam("id") java.lang.String batchId)
 - 
getHistoricBatches@GET @Produces("application/json") java.util.List<HistoricBatchDto> getHistoricBatches(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
 - 
getHistoricBatchesCount@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricBatchesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
 - 
getCleanableHistoricBatchesReport@GET @Path("/cleanable-batch-report") @Produces("application/json") java.util.List<CleanableHistoricBatchReportResultDto> getCleanableHistoricBatchesReport(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
 - 
getCleanableHistoricBatchesReportCount@GET @Path("/cleanable-batch-report/count") @Produces("application/json") CountResultDto getCleanableHistoricBatchesReportCount(@Context javax.ws.rs.core.UriInfo uriInfo)
 - 
setRemovalTimeAsync@POST @Path("/set-removal-time") @Consumes("application/json") @Produces("application/json") BatchDto setRemovalTimeAsync(SetRemovalTimeToHistoricBatchesDto dto)
 
- 
 
-