Interface ActivitiEvent
- All Known Subinterfaces:
ActivitiActivityCancelledEvent, ActivitiActivityEvent, ActivitiCancelledEvent, ActivitiEntityEvent, ActivitiEntityWithVariablesEvent, ActivitiErrorEvent, ActivitiMembershipEvent, ActivitiMessageEvent, ActivitiProcessCancelledEvent, ActivitiProcessStartedEvent, ActivitiSequenceFlowTakenEvent, ActivitiSignalEvent, ActivitiVariableEvent, ActivitiVariableUpdatedEvent
- All Known Implementing Classes:
ActivitiActivityCancelledEventImpl, ActivitiActivityEventImpl, ActivitiEntityEventImpl, ActivitiEntityExceptionEventImpl, ActivitiEntityWithVariablesEventImpl, ActivitiErrorEventImpl, ActivitiEventImpl, ActivitiMembershipEventImpl, ActivitiMessageEventImpl, ActivitiProcessCancelledEventImpl, ActivitiProcessStartedEventImpl, ActivitiSequenceFlowTakenEventImpl, ActivitiSignalEventImpl, ActivitiVariableEventImpl, ActivitiVariableUpdatedEventImpl
public interface ActivitiEvent
Describes an event that occurred in the Activiti Engine which is dispatched to external listeners, if any.
-
Method Summary
-
Method Details
-
getType
ActivitiEventType getType()- Returns:
- type of event.
-
getExecutionId
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
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
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.
-