Interface ActivitiActivityEvent
-
- All Superinterfaces:
ActivitiEvent
- All Known Subinterfaces:
ActivitiActivityCancelledEvent,ActivitiErrorEvent,ActivitiMessageEvent,ActivitiSignalEvent
- All Known Implementing Classes:
ActivitiActivityCancelledEventImpl,ActivitiActivityEventImpl,ActivitiErrorEventImpl,ActivitiMessageEventImpl,ActivitiSignalEventImpl
public interface ActivitiActivityEvent extends ActivitiEvent
AnActivitiEventrelated to an activity within an execution;
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetActivityId()java.lang.StringgetActivityName()java.lang.StringgetActivityType()java.lang.StringgetBehaviorClass()-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEvent
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getType
-
-
-
-
Method Detail
-
getActivityId
java.lang.String getActivityId()
- Returns:
- the id of the activity this event is related to. This corresponds to an id defined in the process definition.
-
getActivityName
java.lang.String getActivityName()
- Returns:
- the name of the activity this event is related to.
-
getActivityType
java.lang.String getActivityType()
- Returns:
- the type of the activity (if set during parsing).
-
getBehaviorClass
java.lang.String getBehaviorClass()
- Returns:
- the behaviourclass of the activity (if it could be determined)
-
-