Interface ActivitiVariableEvent
-
- All Superinterfaces:
ActivitiEvent
- All Known Subinterfaces:
ActivitiVariableUpdatedEvent
- All Known Implementing Classes:
ActivitiVariableEventImpl,ActivitiVariableUpdatedEventImpl
public interface ActivitiVariableEvent extends ActivitiEvent
AnActivitiEventrelated to a single variable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExecutionId()StringgetTaskId()StringgetVariableName()VariableTypegetVariableType()ObjectgetVariableValue()-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEvent
getProcessDefinitionId, getProcessInstanceId, getType
-
-
-
-
Method Detail
-
getVariableName
String getVariableName()
- Returns:
- the name of the variable involved.
-
getVariableValue
Object getVariableValue()
- Returns:
- the current value of the variable.
-
getVariableType
VariableType getVariableType()
- Returns:
- The
VariableTypeof the variable.
-
getExecutionId
String getExecutionId()
- Specified by:
getExecutionIdin interfaceActivitiEvent- Returns:
- the id of the execution the variable is set on.
-
getTaskId
String getTaskId()
- Returns:
- the id of the task the variable has been set on.
-
-