Class CaseStageInstanceImpl
- java.lang.Object
-
- org.jbpm.casemgmt.impl.model.instance.CaseStageInstanceImpl
-
- All Implemented Interfaces:
Serializable
,CaseStageInstance
public class CaseStageInstanceImpl extends Object implements CaseStageInstance, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CaseStageInstanceImpl(String id, String name)
CaseStageInstanceImpl(String id, String name, Collection<AdHocFragment> adHocFragments, Collection<NodeInstanceDesc> activeNodes)
CaseStageInstanceImpl(String id, String name, Collection<AdHocFragment> adHocFragments, Collection<NodeInstanceDesc> activeNodes, StageStatus status)
-
Method Summary
All Methods Instance Methods Concrete 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 stageString
toString()
-
-
-
Constructor Detail
-
CaseStageInstanceImpl
public CaseStageInstanceImpl(String id, String name, Collection<AdHocFragment> adHocFragments, Collection<NodeInstanceDesc> activeNodes)
-
CaseStageInstanceImpl
public CaseStageInstanceImpl(String id, String name, Collection<AdHocFragment> adHocFragments, Collection<NodeInstanceDesc> activeNodes, StageStatus status)
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:CaseStageInstance
Returns name of this stage.- Specified by:
getName
in interfaceCaseStageInstance
-
getAdHocFragments
public Collection<AdHocFragment> getAdHocFragments()
Description copied from interface:CaseStageInstance
Returns names of the adhoc fragments within this stage that can be triggered.- Specified by:
getAdHocFragments
in interfaceCaseStageInstance
-
getActiveNodes
public Collection<NodeInstanceDesc> getActiveNodes()
Description copied from interface:CaseStageInstance
Returns currently active nodes within this stage- Specified by:
getActiveNodes
in interfaceCaseStageInstance
-
getStatus
public StageStatus getStatus()
Description copied from interface:CaseStageInstance
Returns status of this stage- Specified by:
getStatus
in interfaceCaseStageInstance
-
getId
public String getId()
Description copied from interface:CaseStageInstance
Returns id of this stage.- Specified by:
getId
in interfaceCaseStageInstance
-
-