Package org.camunda.bpm.engine.rest
Interface ProcessInstanceRestService
-
- All Known Implementing Classes:
ProcessInstanceRestServiceImpl
public interface ProcessInstanceRestService
-
-
Method Summary
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getProcessInstance
ProcessInstanceResource getProcessInstance(String processInstanceId)
-
getProcessInstances
List<ProcessInstanceDto> getProcessInstances(@Context javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
Exposes theProcessInstanceQueryinterface as a REST service.- Parameters:
uriInfo-firstResult-maxResults-- Returns:
-
queryProcessInstances
List<ProcessInstanceDto> queryProcessInstances(ProcessInstanceQueryDto query, Integer firstResult, Integer maxResults)
Expects the same parameters asgetProcessInstances(UriInfo, Integer, Integer)(as a JSON message body) and allows for any number of variable checks.- Parameters:
query-firstResult-maxResults-- Returns:
-
getProcessInstancesCount
CountResultDto getProcessInstancesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
queryProcessInstancesCount
CountResultDto queryProcessInstancesCount(ProcessInstanceQueryDto query)
-
updateSuspensionState
void updateSuspensionState(ProcessInstanceSuspensionStateDto dto)
-
updateSuspensionStateAsync
BatchDto updateSuspensionStateAsync(ProcessInstanceSuspensionStateAsyncDto dto)
-
deleteAsync
BatchDto deleteAsync(DeleteProcessInstancesDto dto)
-
deleteAsyncHistoricQueryBased
BatchDto deleteAsyncHistoricQueryBased(DeleteProcessInstancesDto dto)
-
setRetriesByProcess
BatchDto setRetriesByProcess(SetJobRetriesByProcessDto setJobRetriesDto)
-
setRetriesByProcessHistoricQueryBased
BatchDto setRetriesByProcessHistoricQueryBased(SetJobRetriesByProcessDto setJobRetriesDto)
-
setVariablesAsync
BatchDto setVariablesAsync(SetVariablesAsyncDto setVariablesAsyncDto)
-
correlateMessageAsync
BatchDto correlateMessageAsync(CorrelationMessageAsyncDto correlationMessageAsyncDto)
-
-