Package org.camunda.bpm.engine.delegate
Interface BaseDelegateExecution
-
- All Superinterfaces:
VariableScope
- All Known Subinterfaces:
ActivityExecution,CmmnActivityExecution,CmmnCaseInstance,DelegateCaseExecution,DelegateExecution
- All Known Implementing Classes:
CaseExecutionEntity,CaseExecutionImpl,CmmnExecution,CoreExecution,ExecutionEntity,ExecutionImpl,PvmExecutionImpl
public interface BaseDelegateExecution extends VariableScope
- Author:
- Daniel Meyer, Roman Smirnov, Sebastian Menski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBusinessKey()The business key for the root execution (e.g.StringgetEventName()Theevent namein case this execution is passed in for anExecutionListenerStringgetId()Unique id of this path of execution that can be used as a handle to provide external signals back into the engine after wait states.-
Methods inherited from interface org.camunda.bpm.engine.delegate.VariableScope
getVariable, getVariableLocal, getVariableLocalTyped, getVariableLocalTyped, getVariableNames, getVariableNamesLocal, getVariables, getVariableScopeKey, getVariablesLocal, getVariablesLocalTyped, getVariablesLocalTyped, getVariablesTyped, getVariablesTyped, getVariableTyped, getVariableTyped, hasVariable, hasVariableLocal, hasVariables, hasVariablesLocal, removeVariable, removeVariableLocal, removeVariables, removeVariables, removeVariablesLocal, removeVariablesLocal, setVariable, setVariableLocal, setVariables, setVariablesLocal
-
-
-
-
Method Detail
-
getId
String getId()
Unique id of this path of execution that can be used as a handle to provide external signals back into the engine after wait states.
-
getEventName
String getEventName()
Theevent namein case this execution is passed in for anExecutionListener
-
getBusinessKey
String getBusinessKey()
The business key for the root execution (e.g. process instance).
-
-