Package org.camunda.bpm.engine.rest
Interface CaseExecutionRestService
- All Known Implementing Classes:
CaseExecutionRestServiceImpl
public interface CaseExecutionRestService
- Author:
- Roman Smirnov
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongetCaseExecution(String caseExecutionId) getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theCaseExecutionQueryinterface as a REST service.getCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo) queryCaseExecutions(CaseExecutionQueryDto query, Integer firstResult, Integer maxResults) Expects the same parameters asgetCaseExecutions(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getCaseExecution
-
getCaseExecutions
List<CaseExecutionDto> getCaseExecutions(@Context javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theCaseExecutionQueryinterface as a REST service.- Parameters:
uriInfo-firstResult-maxResults-- Returns:
-
queryCaseExecutions
List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto query, Integer firstResult, Integer maxResults) Expects the same parameters asgetCaseExecutions(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.- Parameters:
query-firstResult-maxResults-- Returns:
-
getCaseExecutionsCount
-
queryCaseExecutionsCount
-