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 CaseExecutionResource
getCaseExecution(String caseExecutionId)
List<CaseExecutionDto>
getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
Exposes theCaseExecutionQuery
interface as a REST service.CountResultDto
getCaseExecutionsCount(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.CountResultDto
queryCaseExecutionsCount(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:
getCaseExecution
in interfaceCaseExecutionRestService
-
getCaseExecutions
public List<CaseExecutionDto> getCaseExecutions(javax.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
public CountResultDto getCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo)
- Specified by:
getCaseExecutionsCount
in interfaceCaseExecutionRestService
-
queryCaseExecutionsCount
public CountResultDto queryCaseExecutionsCount(CaseExecutionQueryDto queryDto)
- Specified by:
queryCaseExecutionsCount
in interfaceCaseExecutionRestService
-
-