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(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CaseExecutionResourcegetCaseExecution(String caseExecutionId)List<CaseExecutionDto>getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)Exposes theCaseExecutionQueryinterface as a REST service.CountResultDtogetCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo)List<CaseExecutionDto>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.CountResultDtoqueryCaseExecutionsCount(CaseExecutionQueryDto queryDto)- 
Methods inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
getObjectMapper, getProcessEngine, setRelativeRootResourceUri 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
CaseExecutionRestServiceImpl
public CaseExecutionRestServiceImpl(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
 
 - 
 
- 
Method Detail
- 
getCaseExecution
public CaseExecutionResource getCaseExecution(String caseExecutionId)
- Specified by:
 getCaseExecutionin interfaceCaseExecutionRestService
 
- 
getCaseExecutions
public List<CaseExecutionDto> getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
Description copied from interface:CaseExecutionRestServiceExposes theCaseExecutionQueryinterface as a REST service.- Specified by:
 getCaseExecutionsin interfaceCaseExecutionRestService- Returns:
 
 
- 
queryCaseExecutions
public List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto queryDto, Integer firstResult, 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
 
 - 
 
 -