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 java.lang.String
getBusinessKey()
The business key for the root execution (e.g.java.lang.String
getEventName()
Theevent name
in case this execution is passed in for anExecutionListener
java.lang.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.-
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
java.lang.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
java.lang.String getEventName()
Theevent name
in case this execution is passed in for anExecutionListener
-
getBusinessKey
java.lang.String getBusinessKey()
The business key for the root execution (e.g. process instance).
-
-