Interface CaseStageInstance
-
public interface CaseStageInstanceRepresents stage within case on runtime, provides information about active tasks, subprocesses etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<org.jbpm.services.api.model.NodeInstanceDesc>getActiveNodes()Returns currently active nodes within this stageCollection<AdHocFragment>getAdHocFragments()Returns names of the adhoc fragments within this stage that can be triggered.StringgetId()Returns id of this stage.StringgetName()Returns name of this stage.StageStatusgetStatus()Returns status of this stage
-
-
-
Method Detail
-
getId
String getId()
Returns id of this stage.
-
getName
String getName()
Returns name of this stage.
-
getAdHocFragments
Collection<AdHocFragment> getAdHocFragments()
Returns names of the adhoc fragments within this stage that can be triggered.
-
getActiveNodes
Collection<org.jbpm.services.api.model.NodeInstanceDesc> getActiveNodes()
Returns currently active nodes within this stage
-
getStatus
StageStatus getStatus()
Returns status of this stage
-
-