Package org.camunda.bpm.engine.rest
Interface BatchRestService
-
- All Known Implementing Classes:
BatchRestServiceImpl
public interface BatchRestService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchResourcegetBatch(String batchId)List<BatchDto>getBatches(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)CountResultDtogetBatchesCount(javax.ws.rs.core.UriInfo uriInfo)List<BatchStatisticsDto>getStatistics(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)CountResultDtogetStatisticsCount(javax.ws.rs.core.UriInfo uriInfo)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBatch
BatchResource getBatch(String batchId)
-
getBatches
List<BatchDto> getBatches(@Context javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
-
getBatchesCount
CountResultDto getBatchesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
getStatistics
List<BatchStatisticsDto> getStatistics(@Context javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
-
getStatisticsCount
CountResultDto getStatisticsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-