Package org.camunda.bpm.engine.rest.impl
Class CaseExecutionRestServiceImpl
- java.lang.Object
-
- org.camunda.bpm.engine.rest.spi.impl.AbstractProcessEngineAware
-
- 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 class org.camunda.bpm.engine.rest.spi.impl.AbstractProcessEngineAware
processEngine
-
Fields inherited from interface org.camunda.bpm.engine.rest.CaseExecutionRestService
PATH
-
-
Constructor Summary
Constructors Constructor Description CaseExecutionRestServiceImpl(java.lang.String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CaseExecutionResourcegetCaseExecution(java.lang.String caseExecutionId)java.util.List<CaseExecutionDto>getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)Exposes theCaseExecutionQueryinterface as a REST service.CountResultDtogetCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo)java.util.List<CaseExecutionDto>queryCaseExecutions(CaseExecutionQueryDto queryDto, java.lang.Integer firstResult, java.lang.Integer maxResults)Expects the same parameters asCaseExecutionRestService.getCaseExecutions(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.CountResultDtoqueryCaseExecutionsCount(CaseExecutionQueryDto queryDto)-
Methods inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
getObjectMapper, getProcessEngine, setRelativeRootResourceUri
-
-
-
-
Method Detail
-
getCaseExecution
public CaseExecutionResource getCaseExecution(java.lang.String caseExecutionId)
- Specified by:
getCaseExecutionin interfaceCaseExecutionRestService
-
getCaseExecutions
public java.util.List<CaseExecutionDto> getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)
Description copied from interface:CaseExecutionRestServiceExposes theCaseExecutionQueryinterface as a REST service.- Specified by:
getCaseExecutionsin interfaceCaseExecutionRestService- Returns:
-
queryCaseExecutions
public java.util.List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto queryDto, java.lang.Integer firstResult, java.lang.Integer maxResults)
Description copied from interface:CaseExecutionRestServiceExpects the same parameters asCaseExecutionRestService.getCaseExecutions(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.- Specified by:
queryCaseExecutionsin interfaceCaseExecutionRestService- Returns:
-
getCaseExecutionsCount
public CountResultDto getCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo)
- Specified by:
getCaseExecutionsCountin interfaceCaseExecutionRestService
-
queryCaseExecutionsCount
public CountResultDto queryCaseExecutionsCount(CaseExecutionQueryDto queryDto)
- Specified by:
queryCaseExecutionsCountin interfaceCaseExecutionRestService
-
-