org.camunda.bpm.engine.rest
Interface CaseExecutionRestService

All Known Implementing Classes:
CaseExecutionRestServiceImpl

public interface CaseExecutionRestService

Author:
Roman Smirnov

Field Summary
static String PATH
           
 
Method Summary
 CaseExecutionResource getCaseExecution(String caseExecutionId)
           
 List<CaseExecutionDto> getCaseExecutions(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
          Exposes the CaseExecutionQuery interface as a REST service.
 CountResultDto getCaseExecutionsCount(javax.ws.rs.core.UriInfo uriInfo)
           
 List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto query, Integer firstResult, Integer maxResults)
          Expects the same parameters as getCaseExecutions(UriInfo, Integer, Integer) (as a JSON message body) and allows for any number of variable checks.
 CountResultDto queryCaseExecutionsCount(CaseExecutionQueryDto query)
           
 

Field Detail

PATH

static final String PATH
See Also:
Constant Field Values
Method Detail

getCaseExecution

CaseExecutionResource getCaseExecution(String caseExecutionId)

getCaseExecutions

List<CaseExecutionDto> getCaseExecutions(@Context
                                         javax.ws.rs.core.UriInfo uriInfo,
                                         Integer firstResult,
                                         Integer maxResults)
Exposes the CaseExecutionQuery interface as a REST service.

Parameters:
uriInfo -
firstResult -
maxResults -
Returns:

queryCaseExecutions

List<CaseExecutionDto> queryCaseExecutions(CaseExecutionQueryDto query,
                                           Integer firstResult,
                                           Integer maxResults)
Expects the same parameters as getCaseExecutions(UriInfo, Integer, Integer) (as a JSON message body) and allows for any number of variable checks.

Parameters:
query -
firstResult -
maxResults -
Returns:

getCaseExecutionsCount

CountResultDto getCaseExecutionsCount(@Context
                                      javax.ws.rs.core.UriInfo uriInfo)

queryCaseExecutionsCount

CountResultDto queryCaseExecutionsCount(CaseExecutionQueryDto query)


Copyright © 2016 camunda services GmbH. All rights reserved.