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