Package org.camunda.bpm.engine.runtime
Interface UpdateProcessInstanceSuspensionStateSelectBuilder
- 
- All Superinterfaces:
- UpdateProcessInstancesRequest
 - All Known Implementing Classes:
- UpdateProcessInstanceSuspensionStateBuilderImpl
 
 public interface UpdateProcessInstanceSuspensionStateSelectBuilder extends UpdateProcessInstancesRequest Fluent builder to update the suspension state of process instances.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateProcessInstanceSuspensionStateBuilderbyProcessDefinitionId(java.lang.String processDefinitionId)Selects the instances of the process definition with the given id.UpdateProcessInstanceSuspensionStateTenantBuilderbyProcessDefinitionKey(java.lang.String processDefinitionKey)Selects the instances of the process definitions with the given key.UpdateProcessInstanceSuspensionStateBuilderbyProcessInstanceId(java.lang.String processInstanceId)Selects the process instance with the given id.- 
Methods inherited from interface org.camunda.bpm.engine.runtime.UpdateProcessInstancesRequestbyHistoricProcessInstanceQuery, byProcessInstanceIds, byProcessInstanceIds, byProcessInstanceQuery
 
- 
 
- 
- 
- 
Method Detail- 
byProcessInstanceIdUpdateProcessInstanceSuspensionStateBuilder byProcessInstanceId(java.lang.String processInstanceId) Selects the process instance with the given id.- Parameters:
- processInstanceId- id of the process instance
- Returns:
- the builder
 
 - 
byProcessDefinitionIdUpdateProcessInstanceSuspensionStateBuilder byProcessDefinitionId(java.lang.String processDefinitionId) Selects the instances of the process definition with the given id.- Parameters:
- processDefinitionId- id of the process definition
- Returns:
- the builder
 
 - 
byProcessDefinitionKeyUpdateProcessInstanceSuspensionStateTenantBuilder byProcessDefinitionKey(java.lang.String processDefinitionKey) Selects the instances of the process definitions with the given key.- Parameters:
- processDefinitionKey- key of the process definition
- Returns:
- the builder
 
 
- 
 
-