Interface CaseStageInstance
-
- All Known Implementing Classes:
CaseStageInstanceImpl
public interface CaseStageInstance
Represents 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<NodeInstanceDesc>
getActiveNodes()
Returns currently active nodes within this stageCollection<AdHocFragment>
getAdHocFragments()
Returns names of the adhoc fragments within this stage that can be triggered.String
getId()
Returns id of this stage.String
getName()
Returns name of this stage.StageStatus
getStatus()
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<NodeInstanceDesc> getActiveNodes()
Returns currently active nodes within this stage
-
getStatus
StageStatus getStatus()
Returns status of this stage
-
-