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.StringgetId()Returns id of this stage.StringgetName()Returns name of this stage.StageStatusgetStatus()Returns status of this stageStringtoString()
-
-
-
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:CaseStageInstanceReturns name of this stage.- Specified by:
getNamein interfaceCaseStageInstance
-
getAdHocFragments
public Collection<AdHocFragment> getAdHocFragments()
Description copied from interface:CaseStageInstanceReturns names of the adhoc fragments within this stage that can be triggered.- Specified by:
getAdHocFragmentsin interfaceCaseStageInstance
-
getActiveNodes
public Collection<NodeInstanceDesc> getActiveNodes()
Description copied from interface:CaseStageInstanceReturns currently active nodes within this stage- Specified by:
getActiveNodesin interfaceCaseStageInstance
-
getStatus
public StageStatus getStatus()
Description copied from interface:CaseStageInstanceReturns status of this stage- Specified by:
getStatusin interfaceCaseStageInstance
-
getId
public String getId()
Description copied from interface:CaseStageInstanceReturns id of this stage.- Specified by:
getIdin interfaceCaseStageInstance
-
-