Uses of Class
org.springframework.webflow.execution.FlowSessionStatus

Packages that use FlowSessionStatus
org.springframework.webflow.execution Core, stable abstractions for representing runtime executions of flow definitions. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
 

Uses of FlowSessionStatus in org.springframework.webflow.execution
 

Fields in org.springframework.webflow.execution declared as FlowSessionStatus
static FlowSessionStatus FlowSessionStatus.ACTIVE
          A flow session with ACTIVE status is currently executing.
static FlowSessionStatus FlowSessionStatus.CREATED
          Initial status of a flow session; the session has been created but not yet activated.
static FlowSessionStatus FlowSessionStatus.ENDED
          A flow session that has ENDED is no longer actively executing a flow.
static FlowSessionStatus FlowSessionStatus.PAUSED
          A flow session with PAUSED status is currently waiting on the user to signal an event.
static FlowSessionStatus FlowSessionStatus.STARTING
          A flow session with STARTING status is about to enter its start state.
static FlowSessionStatus FlowSessionStatus.SUSPENDED
          A flow session that is SUSPENDED is not actively executing a flow.
 

Methods in org.springframework.webflow.execution that return FlowSessionStatus
 FlowSessionStatus FlowSession.getStatus()
          Returns the current status of this flow session.
 

Uses of FlowSessionStatus in org.springframework.webflow.test
 

Methods in org.springframework.webflow.test that return FlowSessionStatus
 FlowSessionStatus MockFlowSession.getStatus()
           
 

Methods in org.springframework.webflow.test with parameters of type FlowSessionStatus
 void MockFlowSession.setStatus(FlowSessionStatus status)
          Set the status of this flow session.
 



Copyright © 2009 Spring Framework. All Rights Reserved.