Package org.camunda.bpm.engine.rest
Interface ExecutionRestService
- All Known Implementing Classes:
ExecutionRestServiceImpl
@Produces("application/json")
public interface ExecutionRestService
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetExecution
(String executionId) getExecutions
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getExecutionsCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryExecutions
(ExecutionQueryDto query, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getExecution
-
getExecutions
@GET @Produces("application/json") List<ExecutionDto> getExecutions(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
queryExecutions
@POST @Produces("application/json") @Consumes("application/json") List<ExecutionDto> queryExecutions(ExecutionQueryDto query, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getExecutionsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getExecutionsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
queryExecutionsCount
@POST @Path("/count") @Produces("application/json") @Consumes("application/json") CountResultDto queryExecutionsCount(ExecutionQueryDto query)
-