Package org.camunda.bpm.engine.rest
Interface BatchRestService
- All Known Implementing Classes:
BatchRestServiceImpl
public interface BatchRestService
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetBatches
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getBatchesCount
(jakarta.ws.rs.core.UriInfo uriInfo) getStatistics
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getStatisticsCount
(jakarta.ws.rs.core.UriInfo uriInfo)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getBatch
-
getBatches
-
getBatchesCount
@GET @Path("/count") @Produces("application/json") CountResultDto getBatchesCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
getStatistics
@GET @Path("/statistics") @Produces("application/json") List<BatchStatisticsDto> getStatistics(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getStatisticsCount
@GET @Path("/statistics/count") @Produces("application/json") CountResultDto getStatisticsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)
-