|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.camunda.bpm.engine.impl.ServiceImpl
org.camunda.bpm.engine.impl.RuntimeServiceImpl
public class RuntimeServiceImpl
| Field Summary |
|---|
| Fields inherited from class org.camunda.bpm.engine.impl.ServiceImpl |
|---|
commandExecutor |
| Constructor Summary | |
|---|---|
RuntimeServiceImpl()
|
|
| Method Summary | ||
|---|---|---|
void |
activateProcessInstanceById(String processInstanceId)
Activates the process instance with the given id. |
|
void |
activateProcessInstanceByProcessDefinitionId(String processDefinitionId)
Activates the process instance with the given process definition id. |
|
void |
activateProcessInstanceByProcessDefinitionKey(String processDefinitionKey)
Activates the process instance with the given process definition key. |
|
void |
correlateMessage(String messageName)
Correlates a message to either an execution that is waiting for this message or a process definition that can be started by this message. |
|
void |
correlateMessage(String messageName,
Map<String,Object> correlationKeys)
Correlates a message to an execution that is waiting for a matching message and can be correlated according to the given correlation keys. |
|
void |
correlateMessage(String messageName,
Map<String,Object> correlationKeys,
Map<String,Object> processVariables)
Correlates a message to an execution that is waiting for a matching message and can be correlated according to the given correlation keys. |
|
void |
correlateMessage(String messageName,
String businessKey)
Correlates a message to an execution that is waiting for a matching message and belongs to a process instance with the given business key a process definition that can be started by a matching message. |
|
void |
correlateMessage(String messageName,
String businessKey,
Map<String,Object> processVariables)
Correlates a message to an execution that is waiting for a matching message and belongs to a process instance with the given business key a process definition that can be started by this message. |
|
void |
correlateMessage(String messageName,
String businessKey,
Map<String,Object> correlationKeys,
Map<String,Object> processVariables)
Correlates a message to an execution that is waiting for a matching message and can be correlated according to the given correlation keys. |
|
EventSubscriptionQuery |
createEventSubscriptionQuery()
Creates a new EventSubscriptionQuery instance, that can be used to query
event subscriptions. |
|
ExecutionQuery |
createExecutionQuery()
Creates a new ExecutionQuery instance,
that can be used to query the executions and process instances. |
|
Incident |
createIncident(String incidentType,
String executionId,
String configuration)
Creates an incident |
|
Incident |
createIncident(String incidentType,
String executionId,
String configuration,
String message)
Creates an incident |
|
IncidentQuery |
createIncidentQuery()
Creates a new IncidentQuery instance, that can be used
to query incidents. |
|
MessageCorrelationBuilder |
createMessageCorrelation(String messageName)
Define a complex message correlation using a fluent builder. |
|
MigrationPlanBuilder |
createMigrationPlan(String sourceProcessDefinitionId,
String targetProcessDefinitionId)
Creates a migration plan to migrate process instance between different process definitions. |
|
ModificationBuilder |
createModification(String processDefinitionId)
Creates a modification of multiple process instances in terms of activity cancellations and instantiations via a fluent builder. |
|
NativeExecutionQuery |
createNativeExecutionQuery()
creates a new NativeExecutionQuery to query Executions
by SQL directly |
|
NativeProcessInstanceQuery |
createNativeProcessInstanceQuery()
creates a new NativeProcessInstanceQuery to query ProcessInstances
by SQL directly |
|
ProcessInstantiationBuilder |
createProcessInstanceById(String processDefinitionId)
Returns a fluent builder to start a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstantiationBuilder |
createProcessInstanceByKey(String processDefinitionKey)
Returns a fluent builder to start a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstanceModificationBuilder |
createProcessInstanceModification(String processInstanceId)
Define a modification of a process instance in terms of activity cancellations and instantiations via a fluent builder. |
|
ProcessInstanceQuery |
createProcessInstanceQuery()
Creates a new ProcessInstanceQuery instance, that can be used
to query process instances. |
|
SignalEventReceivedBuilder |
createSignalEvent(String signalName)
Notifies the process engine that a signal event has been received using a fluent builder. |
|
VariableInstanceQuery |
createVariableInstanceQuery()
Creates a new VariableInstanceQuery instance, that can be used to query
variable instances. |
|
void |
deleteProcessInstance(String processInstanceId,
String deleteReason)
Delete an existing runtime process instance. |
|
void |
deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners)
Delete an existing runtime process instance. |
|
void |
deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated)
Delete an existing runtime process instance. |
|
void |
deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated,
boolean skipIoMappings)
Delete an existing runtime process instance. |
|
void |
deleteProcessInstances(List<String> processInstanceIds,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated)
Delete existing runtime process instances. |
|
Batch |
deleteProcessInstancesAsync(List<String> processInstanceIds,
ProcessInstanceQuery processInstanceQuery,
String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation. |
|
Batch |
deleteProcessInstancesAsync(List<String> processInstanceIds,
ProcessInstanceQuery processInstanceQuery,
String deleteReason,
boolean skipCustomListeners)
Delete an existing runtime process instances asynchronously using Batch operation. |
|
Batch |
deleteProcessInstancesAsync(List<String> processInstanceIds,
String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation. |
|
Batch |
deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery,
String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation. |
|
List<String> |
getActiveActivityIds(String executionId)
Finds the activity ids for all executions that are waiting in activities. |
|
ActivityInstance |
getActivityInstance(String processInstanceId)
Allows retrieving the activity instance tree for a given process instance. |
|
FormData |
getFormInstanceById(String processDefinitionId)
|
|
Object |
getVariable(String executionId,
String variableName)
The variable value. |
|
Object |
getVariableLocal(String executionId,
String variableName)
The variable value for an execution. |
|
|
getVariableLocalTyped(String executionId,
String variableName)
Returns a TypedValue for the variable. |
|
|
getVariableLocalTyped(String executionId,
String variableName,
boolean deserializeObjectValue)
Returns a TypedValue for the variable. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariables(String executionId)
All variables visible from the given execution scope (including parent scopes). |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariables(String executionId,
Collection<String> variableNames)
The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes). |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesLocal(String executionId)
All variable values that are defined in the execution scope, without taking outer scopes into account. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesLocal(String executionId,
Collection<String> variableNames)
The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesLocalTyped(String executionId)
All variable values that are defined in the execution scope, without taking outer scopes into account. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesLocalTyped(String executionId,
boolean deserializeObjectValues)
All variable values that are defined in the execution scope, without taking outer scopes into account. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesLocalTyped(String executionId,
Collection<String> variableNames,
boolean deserializeObjectValues)
The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes. |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesTyped(String executionId)
All variables visible from the given execution scope (including parent scopes). |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesTyped(String executionId,
boolean deserializeObjectValues)
All variables visible from the given execution scope (including parent scopes). |
|
org.camunda.bpm.engine.variable.VariableMap |
getVariablesTyped(String executionId,
Collection<String> variableNames,
boolean deserializeObjectValues)
The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes). |
|
|
getVariableTyped(String executionId,
String variableName)
Returns a TypedValue for the variable. |
|
|
getVariableTyped(String executionId,
String variableName,
boolean deserializeObjectValue)
Returns a TypedValue for the variable. |
|
void |
messageEventReceived(String messageName,
String executionId)
Notifies the process engine that a message event with name 'messageName' has been received and has been correlated to an execution with id 'executionId'. |
|
void |
messageEventReceived(String messageName,
String executionId,
Map<String,Object> processVariables)
Notifies the process engine that a message event with the name 'messageName' has been received and has been correlated to an execution with id 'executionId'. |
|
MigrationPlanExecutionBuilder |
newMigration(MigrationPlan migrationPlan)
Executes a migration plan for a given list of process instances. |
|
void |
removeVariable(String executionId,
String variableName)
Removes a variable for an execution. |
|
void |
removeVariableLocal(String executionId,
String variableName)
Removes a variable for an execution (not considering parent scopes). |
|
void |
removeVariables(String executionId,
Collection<String> variableNames)
Removes variables for an execution. |
|
void |
removeVariablesLocal(String executionId,
Collection<String> variableNames)
Remove variables for an execution (not considering parent scopes). |
|
void |
resolveIncident(String incidentId)
Resolves and remove an incident |
|
RestartProcessInstanceBuilder |
restartProcessInstances(String processDefinitionId)
Restarts process instances that are completed or deleted with the initial or last set of variables. |
|
void |
setVariable(String executionId,
String variableName,
Object value)
Update or create a variable for an execution. |
|
void |
setVariableLocal(String executionId,
String variableName,
Object value)
Update or create a variable for an execution (not considering parent scopes). |
|
void |
setVariables(String executionId,
Map<String,? extends Object> variables)
Update or create given variables for an execution (including parent scopes). |
|
protected void |
setVariables(String executionId,
Map<String,? extends Object> variables,
boolean local)
|
|
void |
setVariablesLocal(String executionId,
Map<String,? extends Object> variables)
Update or create given variables for an execution (not considering parent scopes). |
|
void |
signal(String executionId)
Sends an external trigger to an activity instance that is waiting inside the given execution. |
|
void |
signal(String executionId,
Map<String,Object> processVariables)
Sends an external trigger to an activity instance that is waiting inside the given execution. |
|
void |
signal(String executionId,
String signalName,
Object signalData,
Map<String,Object> processVariables)
Sends an external trigger to an activity instance that is waiting inside the given execution. |
|
void |
signalEventReceived(String signalName)
Notifies the process engine that a signal event of name 'signalName' has been received. |
|
void |
signalEventReceived(String signalName,
Map<String,Object> processVariables)
Notifies the process engine that a signal event of name 'signalName' has been received. |
|
void |
signalEventReceived(String signalName,
String executionId)
Notifies the process engine that a signal event of name 'signalName' has been received. |
|
void |
signalEventReceived(String signalName,
String executionId,
Map<String,Object> processVariables)
Notifies the process engine that a signal event of name 'signalName' has been received. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId,
Map<String,Object> variables)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId,
String businessKey)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId,
String businessKey,
Map<String,Object> variables)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId,
String businessKey,
String caseInstanceId)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceById(String processDefinitionId,
String businessKey,
String caseInstanceId,
Map<String,Object> variables)
Starts a new process instance in the exactly specified version of the process definition with the given id. |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey)
Starts a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey,
Map<String,Object> variables)
Starts a new process instance in the latest version of the process definition with the given key |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey,
String businessKey)
Starts a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
Map<String,Object> variables)
Starts a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
String caseInstanceId)
Starts a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstance |
startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
String caseInstanceId,
Map<String,Object> variables)
Starts a new process instance in the latest version of the process definition with the given key. |
|
ProcessInstance |
startProcessInstanceByMessage(String messageName)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessage(String messageName,
Map<String,Object> processVariables)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessage(String messageName,
String businessKey)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessage(String messageName,
String businessKey,
Map<String,Object> processVariables)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
Map<String,Object> processVariables)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
String businessKey)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
ProcessInstance |
startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
String businessKey,
Map<String,Object> processVariables)
Signals the process engine that a message is received and starts a new ProcessInstance. |
|
void |
suspendProcessInstanceById(String processInstanceId)
Suspends the process instance with the given id. |
|
void |
suspendProcessInstanceByProcessDefinitionId(String processDefinitionId)
Suspends the process instances with the given process definition id. |
|
void |
suspendProcessInstanceByProcessDefinitionKey(String processDefinitionKey)
Suspends the process instances with the given process definition key. |
|
UpdateProcessInstanceSuspensionStateSelectBuilder |
updateProcessInstanceSuspensionState()
Activate or suspend process instances using a fluent builder. |
|
void |
updateVariables(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions)
|
|
protected void |
updateVariables(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions,
boolean local)
|
|
void |
updateVariablesLocal(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions)
|
|
| Methods inherited from class org.camunda.bpm.engine.impl.ServiceImpl |
|---|
getCommandExecutor, setCommandExecutor |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RuntimeServiceImpl()
| Method Detail |
|---|
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey)
RuntimeService
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey,
String businessKey)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context
of the given process definition.
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
String caseInstanceId)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context
of the given process definition.caseInstanceId - an id of a case instance to associate the process instance with
a case instance.
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey,
Map<String,Object> variables)
RuntimeService
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.variables - the variables to pass, can be null.
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
Map<String,Object> variables)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added a
database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
The combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.variables - the variables to pass, can be null.
public ProcessInstance startProcessInstanceByKey(String processDefinitionKey,
String businessKey,
String caseInstanceId,
Map<String,Object> variables)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added a
database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
The combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - key of process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.caseInstanceId - an id of a case instance to associate the process instance with
a case instance.variables - the variables to pass, can be null.public ProcessInstance startProcessInstanceById(String processDefinitionId)
RuntimeService
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.
public ProcessInstance startProcessInstanceById(String processDefinitionId,
String businessKey)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.
public ProcessInstance startProcessInstanceById(String processDefinitionId,
String businessKey,
String caseInstanceId)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.caseInstanceId - an id of a case instance to associate the process instance with
a case instance.
public ProcessInstance startProcessInstanceById(String processDefinitionId,
Map<String,Object> variables)
RuntimeService
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.variables - variables to be passed, can be null
public ProcessInstance startProcessInstanceById(String processDefinitionId,
String businessKey,
Map<String,Object> variables)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.variables - variables to be passed, can be null
public ProcessInstance startProcessInstanceById(String processDefinitionId,
String businessKey,
String caseInstanceId,
Map<String,Object> variables)
RuntimeServiceProcessInstanceQuery.processInstanceBusinessKey(String). Providing such a business
key is definitely a best practice.
Note that a business key MUST be unique for the given process definition WHEN you have added
a database constraint for it.
In this case, only Process instance from different process definition are allowed to have the
same business key and the combination of processdefinitionKey-businessKey must be unique.
startProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.businessKey - a key that uniquely identifies the process instance in the context of the
given process definition.caseInstanceId - an id of a case instance to associate the process instance with
a case instance.variables - variables to be passed, can be null
public void deleteProcessInstance(String processInstanceId,
String deleteReason)
RuntimeService
deleteProcessInstance in interface RuntimeServiceprocessInstanceId - id of process instance to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.
public Batch deleteProcessInstancesAsync(List<String> processInstanceIds,
ProcessInstanceQuery processInstanceQuery,
String deleteReason)
RuntimeService
deleteProcessInstancesAsync in interface RuntimeServiceprocessInstanceIds - id's of process instances to delete, cannot be null if processInstanceQuery is null.processInstanceQuery - query that will be used to fetch affected process instances.
Cannot be null if processInstanceIds are null.deleteReason - reason for deleting, which will be stored in the history. Can be null.
public Batch deleteProcessInstancesAsync(List<String> processInstanceIds,
String deleteReason)
RuntimeService
deleteProcessInstancesAsync in interface RuntimeServiceprocessInstanceIds - id's of process instances to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.
public Batch deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery,
String deleteReason)
RuntimeService
deleteProcessInstancesAsync in interface RuntimeServiceprocessInstanceQuery - query that will be used to fetch affected process instances.
Cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.
public Batch deleteProcessInstancesAsync(List<String> processInstanceIds,
ProcessInstanceQuery processInstanceQuery,
String deleteReason,
boolean skipCustomListeners)
RuntimeService
deleteProcessInstancesAsync in interface RuntimeServiceprocessInstanceIds - id's of process instances to delete, cannot be null if processInstanceQuery is null.processInstanceQuery - query that will be used to fetch affected process instances.
Cannot be null if processInstanceIds are null.deleteReason - reason for deleting, which will be stored in the history. Can be null.skipCustomListeners - skips custom execution listeners when removing instances
public void deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners)
RuntimeService
deleteProcessInstance in interface RuntimeServiceprocessInstanceId - id of process instance to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.skipCustomListeners - if true, only the built-in ExecutionListeners
are notified with the ExecutionListener.EVENTNAME_END event.
public void deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated)
RuntimeService
deleteProcessInstance in interface RuntimeServiceprocessInstanceId - id of process instance to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.skipCustomListeners - if true, only the built-in ExecutionListeners
are notified with the ExecutionListener.EVENTNAME_END event.externallyTerminated - indicator if deletion triggered from external context, for instance
REST API call
public void deleteProcessInstance(String processInstanceId,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated,
boolean skipIoMappings)
RuntimeService
deleteProcessInstance in interface RuntimeServiceprocessInstanceId - id of process instance to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.skipCustomListeners - if true, only the built-in ExecutionListeners
are notified with the ExecutionListener.EVENTNAME_END event.externallyTerminated - indicator if deletion triggered from external context, for instance
REST API callskipIoMappings - specifies whether input/output mappings for tasks should be invoked
public void deleteProcessInstances(List<String> processInstanceIds,
String deleteReason,
boolean skipCustomListeners,
boolean externallyTerminated)
RuntimeService
deleteProcessInstances in interface RuntimeServiceprocessInstanceIds - ids of process instance to delete, cannot be null.deleteReason - reason for deleting, which will be stored in the history. Can be null.skipCustomListeners - if true, only the built-in ExecutionListeners
are notified with the ExecutionListener.EVENTNAME_END event.externallyTerminated - indicator if deletion triggered from external context, for instance
REST API callpublic ExecutionQuery createExecutionQuery()
RuntimeServiceExecutionQuery instance,
that can be used to query the executions and process instances.
createExecutionQuery in interface RuntimeServicepublic NativeExecutionQuery createNativeExecutionQuery()
RuntimeServiceNativeExecutionQuery to query Executions
by SQL directly
createNativeExecutionQuery in interface RuntimeServicepublic NativeProcessInstanceQuery createNativeProcessInstanceQuery()
RuntimeServiceNativeProcessInstanceQuery to query ProcessInstances
by SQL directly
createNativeProcessInstanceQuery in interface RuntimeServicepublic IncidentQuery createIncidentQuery()
RuntimeServiceIncidentQuery instance, that can be used
to query incidents.
createIncidentQuery in interface RuntimeServicepublic EventSubscriptionQuery createEventSubscriptionQuery()
RuntimeServiceEventSubscriptionQuery instance, that can be used to query
event subscriptions.
createEventSubscriptionQuery in interface RuntimeServicepublic VariableInstanceQuery createVariableInstanceQuery()
RuntimeServiceVariableInstanceQuery instance, that can be used to query
variable instances.
createVariableInstanceQuery in interface RuntimeServicepublic org.camunda.bpm.engine.variable.VariableMap getVariables(String executionId)
RuntimeService
getVariables in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.
public org.camunda.bpm.engine.variable.VariableMap getVariablesTyped(String executionId)
RuntimeService
getVariablesTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.
public org.camunda.bpm.engine.variable.VariableMap getVariablesTyped(String executionId,
boolean deserializeObjectValues)
RuntimeService
getVariablesTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.deserializeObjectValues - if false, SerializableValues will not be deserialized
public org.camunda.bpm.engine.variable.VariableMap getVariablesLocal(String executionId)
RuntimeServiceRuntimeService.getVariablesLocal(String, Collection)
for better performance.
getVariablesLocal in interface RuntimeServiceexecutionId - id of execution, cannot be null.
public org.camunda.bpm.engine.variable.VariableMap getVariablesLocalTyped(String executionId)
RuntimeServiceRuntimeService.getVariablesLocal(String, Collection)
for better performance.
getVariablesLocalTyped in interface RuntimeServiceexecutionId - id of execution, cannot be null.
public org.camunda.bpm.engine.variable.VariableMap getVariablesLocalTyped(String executionId,
boolean deserializeObjectValues)
RuntimeServiceRuntimeService.getVariablesLocal(String, Collection)
for better performance.
getVariablesLocalTyped in interface RuntimeServiceexecutionId - id of execution, cannot be null.
public org.camunda.bpm.engine.variable.VariableMap getVariables(String executionId,
Collection<String> variableNames)
RuntimeService
getVariables in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableNames - the collection of variable names that should be retrieved.
public org.camunda.bpm.engine.variable.VariableMap getVariablesTyped(String executionId,
Collection<String> variableNames,
boolean deserializeObjectValues)
RuntimeService
getVariablesTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableNames - the collection of variable names that should be retrieved.
public org.camunda.bpm.engine.variable.VariableMap getVariablesLocal(String executionId,
Collection<String> variableNames)
RuntimeService
getVariablesLocal in interface RuntimeServiceexecutionId - id of execution, cannot be null.variableNames - the collection of variable names that should be retrieved.
public org.camunda.bpm.engine.variable.VariableMap getVariablesLocalTyped(String executionId,
Collection<String> variableNames,
boolean deserializeObjectValues)
RuntimeService
getVariablesLocalTyped in interface RuntimeServiceexecutionId - id of execution, cannot be null.variableNames - the collection of variable names that should be retrieved.
public Object getVariable(String executionId,
String variableName)
RuntimeService
getVariable in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariableTyped(String executionId,
String variableName)
RuntimeServiceTypedValue for the variable. Searching for the variable is done in all scopes that are visible
to the given execution (including parent scopes). Returns null when no variable value is found with the given name.
getVariableTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariableTyped(String executionId,
String variableName,
boolean deserializeObjectValue)
RuntimeServiceTypedValue for the variable. Searching for the variable is done in all scopes that are visible
to the given execution (including parent scopes). Returns null when no variable value is found with the given name.
getVariableTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.deserializeObjectValue - if false, a SerializableValue will not be deserialized
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariableLocalTyped(String executionId,
String variableName)
RuntimeServiceTypedValue for the variable. Returns the value when the variable is set
for the execution (and not searching parent scopes). Returns null when no variable value is found with the given name.
getVariableLocalTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariableLocalTyped(String executionId,
String variableName,
boolean deserializeObjectValue)
RuntimeServiceTypedValue for the variable. Searching for the variable is done in all scopes that are visible
to the given execution (and not searching parent scopes). Returns null when no variable value is found with the given name.
getVariableLocalTyped in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.deserializeObjectValue - if false, a SerializableValue will not be deserialized
public Object getVariableLocal(String executionId,
String variableName)
RuntimeService
getVariableLocal in interface RuntimeServiceexecutionId - id of process instance or execution, cannot be null.variableName - name of variable, cannot be null.
public void setVariable(String executionId,
String variableName,
Object value)
RuntimeService
setVariable in interface RuntimeServiceexecutionId - id of process instance or execution to set variable in, cannot be null.variableName - name of variable to set, cannot be null.value - value to set. When null is passed, the variable is not removed,
only it's value will be set to null.
public void setVariableLocal(String executionId,
String variableName,
Object value)
RuntimeService
setVariableLocal in interface RuntimeServiceexecutionId - id of execution to set variable in, cannot be null.variableName - name of variable to set, cannot be null.value - value to set. When null is passed, the variable is not removed,
only it's value will be set to null.
public void setVariables(String executionId,
Map<String,? extends Object> variables)
RuntimeService
setVariables in interface RuntimeServiceexecutionId - id of the process instance or the execution, cannot be null.variables - map containing name (key) and value of variables, can be null.
public void setVariablesLocal(String executionId,
Map<String,? extends Object> variables)
RuntimeService
setVariablesLocal in interface RuntimeServiceexecutionId - id of the execution, cannot be null.variables - map containing name (key) and value of variables, can be null.
protected void setVariables(String executionId,
Map<String,? extends Object> variables,
boolean local)
public void removeVariable(String executionId,
String variableName)
RuntimeService
removeVariable in interface RuntimeServiceexecutionId - id of process instance or execution to remove variable in.variableName - name of variable to remove.
public void removeVariableLocal(String executionId,
String variableName)
RuntimeService
removeVariableLocal in interface RuntimeServiceexecutionId - id of execution to remove variable in.variableName - name of variable to remove.
public void removeVariables(String executionId,
Collection<String> variableNames)
RuntimeService
removeVariables in interface RuntimeServiceexecutionId - id of process instance or execution to remove variable in.variableNames - collection containing name of variables to remove.
public void removeVariablesLocal(String executionId,
Collection<String> variableNames)
RuntimeService
removeVariablesLocal in interface RuntimeServiceexecutionId - id of execution to remove variable in.variableNames - collection containing name of variables to remove.
public void updateVariables(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions)
public void updateVariablesLocal(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions)
protected void updateVariables(String executionId,
Map<String,? extends Object> modifications,
Collection<String> deletions,
boolean local)
public void signal(String executionId)
RuntimeService
signal in interface RuntimeServiceexecutionId - id of process instance or execution to signal, cannot be null.
public void signal(String executionId,
String signalName,
Object signalData,
Map<String,Object> processVariables)
RuntimeService
signal in interface RuntimeServiceexecutionId - id of process instance or execution to signal, cannot be null.signalName - name of the signal (can be null)signalData - additional data of the signal (can be null)processVariables - a map of process variables (can be null)
public void signal(String executionId,
Map<String,Object> processVariables)
RuntimeService
signal in interface RuntimeServiceexecutionId - id of process instance or execution to signal, cannot be null.processVariables - a map of process variablespublic ProcessInstanceQuery createProcessInstanceQuery()
RuntimeServiceProcessInstanceQuery instance, that can be used
to query process instances.
createProcessInstanceQuery in interface RuntimeServicepublic List<String> getActiveActivityIds(String executionId)
RuntimeService
getActiveActivityIds in interface RuntimeServiceexecutionId - id of the process instance or the execution, cannot be null.public ActivityInstance getActivityInstance(String processInstanceId)
RuntimeServiceAllows retrieving the activity instance tree for a given process instance. The activity instance tree is aligned with the concept of scope in the BPMN specification. Activities that are "on the same level of subprocess" (ie. part of the same scope, contained in the same subprocess) will have their activity instances at the same level in the tree.
Each activity instance is assigned a unique Id. The id is persistent, if you invoke this method multiple times, the same activity instance ids will be returned for the same activity instances. (However, there might be different executions assigned, see below)
The Execution concept in the process engine is not completely aligned with the activity
instance concept because the execution tree is in general not aligned with the activity / scope concept in
BPMN. In general, there is a n-1 relationship between Executions and ActivityInstances, ie. at a given
point in time, an activity instance can be linked to multiple executions. In addition, it is not guaranteed
that the same execution that started a given activity instance will also end it. The process engine performs
several internal optimizations concerning the compacting of the execution tree which might lead to executions
being reordered and pruned. This can lead to situations where a given execution starts an activity instance
but another execution ends it. Another special case is the process instance: if the process instance is executing
a non-scope activity (for example a user task) below the process definition scope, it will be referenced
by both the root activity instance and the user task activity instance.
If you need to interpret the state of a process instance in terms of a BPMN process model, it is usually easier to use the activity instance tree as opposed to the execution tree.
getActivityInstance in interface RuntimeServiceprocessInstanceId - the id of the process instance for which the activity instance tree should be constructed.
public FormData getFormInstanceById(String processDefinitionId)
public void suspendProcessInstanceById(String processInstanceId)
RuntimeServiceSuspends the process instance with the given id. This means that the execution is stopped, so the token state will not change. However, actions that do not change token state, like setting/removing variables, etc. will succeed.
Tasks belonging to this process instance will also be suspended. This means that any actions influencing the tasks' lifecycles will fail, such as
If a process instance is in state suspended, the engine will also not execute jobs (timers, messages) associated with this instance.
If you have a process instance hierarchy, suspending one process instance from the hierarchy will not suspend other process instances from that hierarchy.
Note: for more complex suspend commands use RuntimeService.updateProcessInstanceSuspensionState().
suspendProcessInstanceById in interface RuntimeServicepublic void suspendProcessInstanceByProcessDefinitionId(String processDefinitionId)
RuntimeServiceSuspends the process instances with the given process definition id. This means that the execution is stopped, so the token state will not change. However, actions that do not change token state, like setting/removing variables, etc. will succeed.
Tasks belonging to the suspended process instance will also be suspended. This means that any actions influencing the tasks' lifecycles will fail, such as
If a process instance is in state suspended, the engine will also not execute jobs (timers, messages) associated with this instance.
If you have a process instance hierarchy, suspending one process instance from the hierarchy will not suspend other process instances from that hierarchy.
Note: for more complex suspend commands use RuntimeService.updateProcessInstanceSuspensionState().
suspendProcessInstanceByProcessDefinitionId in interface RuntimeServicepublic void suspendProcessInstanceByProcessDefinitionKey(String processDefinitionKey)
RuntimeServiceSuspends the process instances with the given process definition key. This means that the execution is stopped, so the token state will not change. However, actions that do not change token state, like setting/removing variables, etc. will succeed.
Tasks belonging to the suspended process instance will also be suspended. This means that any actions influencing the tasks' lifecycles will fail, such as
If a process instance is in state suspended, the engine will also not execute jobs (timers, messages) associated with this instance.
If you have a process instance hierarchy, suspending one process instance from the hierarchy will not suspend other process instances from that hierarchy.
Note: for more complex suspend commands use RuntimeService.updateProcessInstanceSuspensionState().
suspendProcessInstanceByProcessDefinitionKey in interface RuntimeServicepublic void activateProcessInstanceById(String processInstanceId)
RuntimeServiceActivates the process instance with the given id.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
Note: for more complex activate commands use RuntimeService.updateProcessInstanceSuspensionState().
activateProcessInstanceById in interface RuntimeServicepublic void activateProcessInstanceByProcessDefinitionId(String processDefinitionId)
RuntimeServiceActivates the process instance with the given process definition id.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
Note: for more complex activate commands use RuntimeService.updateProcessInstanceSuspensionState().
activateProcessInstanceByProcessDefinitionId in interface RuntimeServicepublic void activateProcessInstanceByProcessDefinitionKey(String processDefinitionKey)
RuntimeServiceActivates the process instance with the given process definition key.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
Note: for more complex activate commands use RuntimeService.updateProcessInstanceSuspensionState().
activateProcessInstanceByProcessDefinitionKey in interface RuntimeServicepublic UpdateProcessInstanceSuspensionStateSelectBuilder updateProcessInstanceSuspensionState()
RuntimeServiceUpdateProcessInstanceSuspensionStateBuilder.activate() or
UpdateProcessInstanceSuspensionStateBuilder.suspend().
updateProcessInstanceSuspensionState in interface RuntimeServicepublic ProcessInstance startProcessInstanceByMessage(String messageName)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
Calling this method can have two different outcomes:
ProcessEngineException
is thrown
startProcessInstanceByMessage in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element.
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessage(String messageName,
String businessKey)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String, Map). This method allows
specifying a business key.
startProcessInstanceByMessage in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element.businessKey - the business key which is added to the started process instance
public ProcessInstance startProcessInstanceByMessage(String messageName,
Map<String,Object> processVariables)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String). In addition, this method allows
specifying a the payload of the message as a map of process variables.
startProcessInstanceByMessage in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element.processVariables - the 'payload' of the message. The variables are added as processes
variables to the started process instance.
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessage(String messageName,
String businessKey,
Map<String,Object> processVariables)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String, Map). In addition, this method allows
specifying a business key.
startProcessInstanceByMessage in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element.businessKey - the business key which is added to the started process instanceprocessVariables - the 'payload' of the message. The variables are added as processes
variables to the started process instance.
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String). In addition, this method allows
specifying the exactly version of the process definition with the given id.
startProcessInstanceByMessageAndProcessDefinitionId in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element, cannot be null.processDefinitionId - the id of the process definition, cannot be null.
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
String businessKey)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String, String). In addition, this method allows
specifying the exactly version of the process definition with the given id.
startProcessInstanceByMessageAndProcessDefinitionId in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element, cannot be null.processDefinitionId - the id of the process definition, cannot be null.businessKey - the business key which is added to the started process instance
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
Map<String,Object> processVariables)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String, Map). In addition, this method allows
specifying the exactly version of the process definition with the given id.
startProcessInstanceByMessageAndProcessDefinitionId in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element, cannot be null.processDefinitionId - the id of the process definition, cannot be null.processVariables - the 'payload' of the message. The variables are added as processes
variables to the started process instance.
ProcessInstance object representing the started process instance
public ProcessInstance startProcessInstanceByMessageAndProcessDefinitionId(String messageName,
String processDefinitionId,
String businessKey,
Map<String,Object> processVariables)
RuntimeServiceSignals the process engine that a message is received and starts a new
ProcessInstance.
RuntimeService.startProcessInstanceByMessage(String, String, Map). In addition, this method allows
specifying the exactly version of the process definition with the given id.
startProcessInstanceByMessageAndProcessDefinitionId in interface RuntimeServicemessageName - the 'name' of the message as specified as an attribute on the
bpmn20 <message name="messageName" /> element, cannot be null.processDefinitionId - the id of the process definition, cannot be null.businessKey - the business key which is added to the started process instanceprocessVariables - the 'payload' of the message. The variables are added as processes
variables to the started process instance.
ProcessInstance object representing the started process instancepublic void signalEventReceived(String signalName)
RuntimeService
signalEventReceived in interface RuntimeServicesignalName - the name of the signal event
public void signalEventReceived(String signalName,
Map<String,Object> processVariables)
RuntimeService
signalEventReceived in interface RuntimeServicesignalName - the name of the signal eventprocessVariables - a map of variables added to the execution(s)
public void signalEventReceived(String signalName,
String executionId)
RuntimeService
signalEventReceived in interface RuntimeServicesignalName - the name of the signal eventexecutionId - id of the process instance or the execution to deliver the signal to
public void signalEventReceived(String signalName,
String executionId,
Map<String,Object> processVariables)
RuntimeService
signalEventReceived in interface RuntimeServicesignalName - the name of the signal eventexecutionId - the id of the process instance or the execution to deliver the signal toprocessVariables - a map of variables added to the execution(s)public SignalEventReceivedBuilder createSignalEvent(String signalName)
RuntimeService
createSignalEvent in interface RuntimeServicesignalName - the name of the signal event
public void messageEventReceived(String messageName,
String executionId)
RuntimeService
messageEventReceived in interface RuntimeServicemessageName - the name of the message eventexecutionId - the id of the process instance or the execution to deliver the message to
public void messageEventReceived(String messageName,
String executionId,
Map<String,Object> processVariables)
RuntimeService
messageEventReceived in interface RuntimeServicemessageName - the name of the message eventexecutionId - the id of the process instance or the execution to deliver the message toprocessVariables - a map of variables added to the executionpublic MessageCorrelationBuilder createMessageCorrelation(String messageName)
RuntimeService
createMessageCorrelation in interface RuntimeServicemessageName - the name of the message. Corresponds to the 'name' element
of the message defined in BPMN 2.0 Xml.
Can be null to correlate by other criteria (businessKey, processInstanceId, correlationKeys) only.
public void correlateMessage(String messageName,
Map<String,Object> correlationKeys,
Map<String,Object> processVariables)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any eventcorrelationKeys - a map of key value pairs that are used to correlate the message to an executionprocessVariables - a map of variables added to the execution or newly created process instance
public void correlateMessage(String messageName,
String businessKey,
Map<String,Object> correlationKeys,
Map<String,Object> processVariables)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any eventbusinessKey - the business key of process instances to correlate againstcorrelationKeys - a map of key value pairs that are used to correlate the message to an executionprocessVariables - a map of variables added to the execution or newly created process instancepublic void correlateMessage(String messageName)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any event
public void correlateMessage(String messageName,
String businessKey)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any eventbusinessKey - the business key of process instances to correlate against
public void correlateMessage(String messageName,
Map<String,Object> correlationKeys)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any eventcorrelationKeys - a map of key value pairs that are used to correlate the message to an execution
public void correlateMessage(String messageName,
String businessKey,
Map<String,Object> processVariables)
RuntimeService
correlateMessage in interface RuntimeServicemessageName - the name of the message event; if null, matches any eventbusinessKey - the business key of process instances to correlate againstprocessVariables - a map of variables added to the execution or newly created process instancepublic ProcessInstanceModificationBuilder createProcessInstanceModification(String processInstanceId)
RuntimeService
createProcessInstanceModification in interface RuntimeServiceprocessInstanceId - the process instance to modifypublic ProcessInstantiationBuilder createProcessInstanceById(String processDefinitionId)
RuntimeService
createProcessInstanceById in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.
public ProcessInstantiationBuilder createProcessInstanceByKey(String processDefinitionKey)
RuntimeService
createProcessInstanceByKey in interface RuntimeServiceprocessDefinitionKey - the key of the process definition, cannot be null.
public MigrationPlanBuilder createMigrationPlan(String sourceProcessDefinitionId,
String targetProcessDefinitionId)
RuntimeService
createMigrationPlan in interface RuntimeServicesourceProcessDefinitionId - the process definition that instances are migrated fromtargetProcessDefinitionId - the process definition that instances are migrated to
public MigrationPlanExecutionBuilder newMigration(MigrationPlan migrationPlan)
RuntimeServiceBatch is immediately returned.
The migration is then executed as jobs from the process engine and the batch can
be used to track the progress of the migration. The Batch splits the migration
in smaller chunks which will be executed independently.
newMigration in interface RuntimeServicemigrationPlan - the migration plan to executed
public ModificationBuilder createModification(String processDefinitionId)
RuntimeServiceBatch is immediately returned.
The modification is then executed as jobs from the process engine and the batch can
be used to track the progress of the modification. The Batch splits the modification
in smaller chunks which will be executed independently.
createModification in interface RuntimeServiceprocessDefinitionId - the process definition that instances are modified of
public RestartProcessInstanceBuilder restartProcessInstances(String processDefinitionId)
RuntimeService
restartProcessInstances in interface RuntimeServiceprocessDefinitionId - the id of the process definition, cannot be null.
public Incident createIncident(String incidentType,
String executionId,
String configuration)
RuntimeService
createIncident in interface RuntimeServiceincidentType - the type of incident, cannot be nullexecutionId - execution id, cannot be null
public Incident createIncident(String incidentType,
String executionId,
String configuration,
String message)
RuntimeService
createIncident in interface RuntimeServiceincidentType - the type of incident, cannot be nullexecutionId - execution id, cannot be null
public void resolveIncident(String incidentId)
RuntimeService
resolveIncident in interface RuntimeServiceincidentId - the id of an incident to resolve
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||