Package org.camunda.bpm.engine.rest
Interface CaseInstanceRestService
- All Known Implementing Classes:
CaseInstanceRestServiceImpl
public interface CaseInstanceRestService
- Author:
- Roman Smirnov
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongetCaseInstance(String caseInstanceId) getCaseInstances(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theCaseInstanceQueryinterface as a REST service.getCaseInstancesCount(javax.ws.rs.core.UriInfo uriInfo) queryCaseInstances(CaseInstanceQueryDto query, Integer firstResult, Integer maxResults) Expects the same parameters asgetCaseInstances(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getCaseInstance
-
getCaseInstances
List<CaseInstanceDto> getCaseInstances(@Context javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theCaseInstanceQueryinterface as a REST service.- Parameters:
uriInfo-firstResult-maxResults-- Returns:
-
queryCaseInstances
List<CaseInstanceDto> queryCaseInstances(CaseInstanceQueryDto query, Integer firstResult, Integer maxResults) Expects the same parameters asgetCaseInstances(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.- Parameters:
query-firstResult-maxResults-- Returns:
-
getCaseInstancesCount
-
queryCaseInstancesCount
-