Interface WorkflowNodeState
-
- All Known Implementing Classes:
WorkflowNodeStateImpl
public interface WorkflowNodeStateRepresents the execution state of a single node
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StepIdentifiergetLastIdentifier()java.lang.StringgetNodeName()StepStategetNodeState()java.util.Map<StepIdentifier,? extends StepState>getStepStateMap()
-
-
-
Method Detail
-
getNodeName
java.lang.String getNodeName()
- Returns:
- The node name
-
getLastIdentifier
StepIdentifier getLastIdentifier()
- Returns:
- The node's current step
-
getNodeState
StepState getNodeState()
- Returns:
- The node's current state
-
getStepStateMap
java.util.Map<StepIdentifier,? extends StepState> getStepStateMap()
- Returns:
- a map of step ident to step states for the node
-
-