Uses of Interface
org.springframework.webflow.execution.FlowSession

Packages that use FlowSession
org.springframework.webflow.engine The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. 
org.springframework.webflow.engine.impl The implementation of Spring Web Flow's flow execution machine. 
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 FlowSession in org.springframework.webflow.engine
 

Methods in org.springframework.webflow.engine that return FlowSession
 FlowSession RequestControlContext.endActiveFlowSession(MutableAttributeMap output)
          End the active flow session of the current flow execution.
 

Uses of FlowSession in org.springframework.webflow.engine.impl
 

Methods in org.springframework.webflow.engine.impl that return FlowSession
protected  FlowSession FlowExecutionImpl.activateSession(Flow flow)
          Activate a new FlowSession for the flow definition.
 FlowSession FlowExecutionImpl.endActiveFlowSession()
          End the active flow session, popping it of the stack.
 FlowSession FlowExecutionImpl.getActiveSession()
           
 

Uses of FlowSession in org.springframework.webflow.execution
 

Methods in org.springframework.webflow.execution that return FlowSession
 FlowSession FlowExecutionContext.getActiveSession()
          Returns the active flow session of this flow execution.
 FlowSession FlowSession.getParent()
          Returns the parent flow session in the current flow execution, or null if there is no parent flow session.
 

Methods in org.springframework.webflow.execution with parameters of type FlowSession
 void FlowExecutionListener.sessionCreated(RequestContext context, FlowSession session)
          Called after a new flow session has been created but before it starts.
 void FlowExecutionListenerAdapter.sessionCreated(RequestContext context, FlowSession session)
           
 void FlowExecutionListener.sessionEnded(RequestContext context, FlowSession session, AttributeMap output)
          Called when a flow execution session ends.
 void FlowExecutionListenerAdapter.sessionEnded(RequestContext context, FlowSession session, AttributeMap output)
           
 void FlowExecutionListener.sessionEnding(RequestContext context, FlowSession session, MutableAttributeMap output)
          Called when the active flow execution session has been asked to end but before it has ended.
 void FlowExecutionListenerAdapter.sessionEnding(RequestContext context, FlowSession session, MutableAttributeMap output)
           
 void FlowExecutionListener.sessionStarted(RequestContext context, FlowSession session)
          Called after a new flow session has started.
 void FlowExecutionListenerAdapter.sessionStarted(RequestContext context, FlowSession session)
           
 

Uses of FlowSession in org.springframework.webflow.test
 

Classes in org.springframework.webflow.test that implement FlowSession
 class MockFlowSession
          Mock implementation of the FlowSession interface.
 

Methods in org.springframework.webflow.test that return FlowSession
 FlowSession MockRequestControlContext.endActiveFlowSession(MutableAttributeMap output)
           
 FlowSession MockFlowExecutionContext.getActiveSession()
           
 FlowSession MockFlowSession.getParent()
           
 

Methods in org.springframework.webflow.test with parameters of type FlowSession
 void MockFlowExecutionContext.setActiveSession(FlowSession activeSession)
          Sets the mock session to be the active session.
 void MockRequestContext.setActiveSession(FlowSession flowSession)
          Sets the active flow session of the executing flow associated with this request.
 void MockFlowSession.setParent(FlowSession parent)
          Set the parent flow session of this flow session in the ongoing flow execution.
 



Copyright © 2009 Spring Framework. All Rights Reserved.