Interface ActivitiProcessStartedEvent
-
- All Superinterfaces:
ActivitiEntityEvent,ActivitiEntityWithVariablesEvent,ActivitiEvent
- All Known Implementing Classes:
ActivitiProcessStartedEventImpl
public interface ActivitiProcessStartedEvent extends ActivitiEntityWithVariablesEvent
AnActivitiEventrelated to start event being sent when activiti process instance is started.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetNestedProcessDefinitionId()java.lang.StringgetNestedProcessInstanceId()-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEntityEvent
getEntity
-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEntityWithVariablesEvent
getVariables, isLocalScope
-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEvent
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getType
-
-
-
-
Method Detail
-
getNestedProcessInstanceId
java.lang.String getNestedProcessInstanceId()
- Returns:
- the id of the process instance of the nested process that starts the current process instance, or null if the current process instance is not started into a nested process.
-
getNestedProcessDefinitionId
java.lang.String getNestedProcessDefinitionId()
- Returns:
- the id of the process definition of the nested process that starts the current process instance, or null if the current process instance is not started into a nested process.
-
-