Interface ActivitiEvent
-
- All Known Subinterfaces:
ActivitiActivityCancelledEvent,ActivitiActivityEvent,ActivitiCancelledEvent,ActivitiEntityEvent,ActivitiEntityWithVariablesEvent,ActivitiErrorEvent,ActivitiMembershipEvent,ActivitiMessageEvent,ActivitiProcessStartedEvent,ActivitiSequenceFlowTakenEvent,ActivitiSignalEvent,ActivitiVariableEvent
- All Known Implementing Classes:
ActivitiActivityCancelledEventImpl,ActivitiActivityEventImpl,ActivitiEntityEventImpl,ActivitiEntityExceptionEventImpl,ActivitiEntityWithVariablesEventImpl,ActivitiErrorEventImpl,ActivitiEventImpl,ActivitiMembershipEventImpl,ActivitiMessageEventImpl,ActivitiProcessCancelledEventImpl,ActivitiProcessStartedEventImpl,ActivitiSequenceFlowTakenEventImpl,ActivitiSignalEventImpl,ActivitiVariableEventImpl
public interface ActivitiEventDescribes an event that occurred in the Activiti Engine which is dispatched to external listeners, if any.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExecutionId()java.lang.StringgetProcessDefinitionId()java.lang.StringgetProcessInstanceId()ActivitiEventTypegetType()
-
-
-
Method Detail
-
getType
ActivitiEventType getType()
- Returns:
- type of event.
-
getExecutionId
java.lang.String getExecutionId()
- Returns:
- the id of the execution this event is associated with. Returns null, if the event was not dispatched from within an active execution.
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
- Returns:
- the id of the process instance this event is associated with. Returns null, if the event was not dispatched from within an active execution.
-
getProcessDefinitionId
java.lang.String getProcessDefinitionId()
- Returns:
- the id of the process definition this event is associated with. Returns null, if the event was not dispatched from within an active execution.
-
-