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 BatchResource
getBatch(String batchId)
List<BatchDto>
getBatches(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
CountResultDto
getBatchesCount(javax.ws.rs.core.UriInfo uriInfo)
List<BatchStatisticsDto>
getStatistics(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
CountResultDto
getStatisticsCount(javax.ws.rs.core.UriInfo uriInfo)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBatch
@Path("/{id}") BatchResource getBatch(@PathParam("id") String batchId)
-
getBatches
@GET @Produces("application/json") List<BatchDto> getBatches(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
-
getBatchesCount
@GET @Path("/count") @Produces("application/json") CountResultDto getBatchesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
getStatistics
@GET @Path("/statistics") @Produces("application/json") List<BatchStatisticsDto> getStatistics(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
-
getStatisticsCount
@GET @Path("/statistics/count") @Produces("application/json") CountResultDto getStatisticsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-