Interface FlowableEngineEvent
-
- All Superinterfaces:
FlowableEvent
- All Known Subinterfaces:
FlowableEngineEntityEvent
public interface FlowableEngineEvent extends FlowableEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExecutionId()StringgetProcessDefinitionId()StringgetProcessInstanceId()StringgetScopeDefinitionId()The scope definition id of the entity associated with this event.StringgetScopeId()The scope id of the entity associated with this event.StringgetScopeType()The scope type of the entity associated with this event.StringgetSubScopeId()The sub scope id of the entity associated with this event.-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEvent
getType
-
-
-
-
Method Detail
-
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.
-
getScopeType
String getScopeType()
The scope type of the entity associated with this event.
-
getScopeId
String getScopeId()
The scope id of the entity associated with this event.
-
getSubScopeId
String getSubScopeId()
The sub scope id of the entity associated with this event.
-
getScopeDefinitionId
String getScopeDefinitionId()
The scope definition id of the entity associated with this event.
-
-