Package org.camunda.bpm.engine.rest.impl
Class CaseExecutionRestServiceImpl
java.lang.Object
org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
org.camunda.bpm.engine.rest.impl.CaseExecutionRestServiceImpl
- All Implemented Interfaces:
CaseExecutionRestService
public class CaseExecutionRestServiceImpl
extends AbstractRestProcessEngineAware
implements CaseExecutionRestService
-
Field Summary
Fields inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
objectMapper, relativeRootResourcePath
Fields inherited from interface org.camunda.bpm.engine.rest.CaseExecutionRestService
PATH
-
Constructor Summary
ConstructorDescriptionCaseExecutionRestServiceImpl
(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper) -
Method Summary
Modifier and TypeMethodDescriptiongetCaseExecution
(String caseExecutionId) getCaseExecutions
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theCaseExecutionQuery
interface as a REST service.getCaseExecutionsCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryCaseExecutions
(CaseExecutionQueryDto queryDto, Integer firstResult, Integer maxResults) Expects the same parameters asCaseExecutionRestService.getCaseExecutions(UriInfo, Integer, Integer)
(as a JSON message body) and allows for any number of variable checks.Methods inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
getObjectMapper, getProcessEngine, setRelativeRootResourceUri
-
Constructor Details
-
CaseExecutionRestServiceImpl
public CaseExecutionRestServiceImpl(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
-
Method Details
-
getCaseExecution
- Specified by:
getCaseExecution
in interfaceCaseExecutionRestService
-
getCaseExecutions
public List<CaseExecutionDto> getCaseExecutions(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Description copied from interface:CaseExecutionRestService
Exposes theCaseExecutionQuery
interface as a REST service.- Specified by:
getCaseExecutions
in interfaceCaseExecutionRestService
- Returns:
-
queryCaseExecutions
public List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto queryDto, Integer firstResult, Integer maxResults) Description copied from interface:CaseExecutionRestService
Expects the same parameters asCaseExecutionRestService.getCaseExecutions(UriInfo, Integer, Integer)
(as a JSON message body) and allows for any number of variable checks.- Specified by:
queryCaseExecutions
in interfaceCaseExecutionRestService
- Returns:
-
getCaseExecutionsCount
- Specified by:
getCaseExecutionsCount
in interfaceCaseExecutionRestService
-
queryCaseExecutionsCount
- Specified by:
queryCaseExecutionsCount
in interfaceCaseExecutionRestService
-