org.springframework.webflow.engine.impl
Class FlowExecutionStatus

java.lang.Object
  extended by org.springframework.core.enums.AbstractLabeledEnum
      extended by org.springframework.core.enums.StaticLabeledEnum
          extended by org.springframework.webflow.engine.impl.FlowExecutionStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.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

Field Summary
static FlowExecutionStatus ACTIVE
          The flow execution has started and a session is active.
static FlowExecutionStatus ENDED
          The flow execution has ended.
static FlowExecutionStatus NOT_STARTED
          The flow execution has not yet started.
 
Fields inherited from interface org.springframework.core.enums.LabeledEnum
CODE_ORDER, DEFAULT_ORDER, LABEL_ORDER
 
Method Summary
 
Methods inherited from class org.springframework.core.enums.StaticLabeledEnum
getCode, getLabel, readResolve, shortValue
 
Methods inherited from class org.springframework.core.enums.AbstractLabeledEnum
compareTo, equals, getType, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

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.