org.springframework.webflow.engine.impl
Class FlowExecutionStatus
java.lang.Object
org.springframework.core.enums.AbstractLabeledEnum
org.springframework.core.enums.StaticLabeledEnum
org.springframework.webflow.engine.impl.FlowExecutionStatus
- All Implemented Interfaces:
- Serializable, Comparable, org.springframework.core.enums.LabeledEnum
public class FlowExecutionStatus
- extends org.springframework.core.enums.StaticLabeledEnum
A enum used internally by FlowExecutionImpl
to track its status. Flow Executions initially start out in
NOT_STARTED. After start is called, they are ACTIVE. After ending, their status is updated to ENDED.
- See Also:
- Serialized Form
Fields inherited from interface org.springframework.core.enums.LabeledEnum |
CODE_ORDER, DEFAULT_ORDER, LABEL_ORDER |
Methods inherited from class org.springframework.core.enums.StaticLabeledEnum |
getCode, getLabel, shortValue |
Methods inherited from class org.springframework.core.enums.AbstractLabeledEnum |
compareTo, equals, getType, hashCode, toString |
NOT_STARTED
public static final FlowExecutionStatus NOT_STARTED
- The flow execution has not yet started.
ACTIVE
public static final FlowExecutionStatus ACTIVE
- The flow execution has started and a session is active.
ENDED
public static final FlowExecutionStatus ENDED
- The flow execution has ended.