Package org.camunda.bpm.engine.runtime
Interface ProcessElementInstance
-
- All Known Subinterfaces:
ActivityInstance
,TransitionInstance
- All Known Implementing Classes:
ActivityInstanceImpl
,ProcessElementInstanceImpl
,TransitionInstanceImpl
public interface ProcessElementInstance
A ProcessElementInstance is an instance of a process construct such as an Activity (see
ActivityInstance
) or a transition (seeTransitionInstance
).- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getId()
The id of the process element instancejava.lang.String
getParentActivityInstanceId()
The id of the parent activity instance.java.lang.String
getProcessDefinitionId()
the process definition idjava.lang.String
getProcessInstanceId()
the id of the process instance this process element is part of
-
-
-
Method Detail
-
getId
java.lang.String getId()
The id of the process element instance
-
getParentActivityInstanceId
java.lang.String getParentActivityInstanceId()
The id of the parent activity instance.
-
getProcessDefinitionId
java.lang.String getProcessDefinitionId()
the process definition id
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
the id of the process instance this process element is part of
-
-