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

Packages that use FlowExecutionContext
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.executor High-level executors for driving the execution of flow definitions. 
org.springframework.webflow.executor.support Flow executor implementation support; includes helpers for driving the execution of flows. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
 

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

Classes in org.springframework.webflow.engine.impl that implement FlowExecutionContext
 class FlowExecutionImpl
          Default implementation of FlowExecution that uses a stack-based data structure to manage spawned flow sessions.
 

Uses of FlowExecutionContext in org.springframework.webflow.execution
 

Subinterfaces of FlowExecutionContext in org.springframework.webflow.execution
 interface FlowExecution
          A top-level instance of a flow definition that carries out definition execution on behalf of a single client.
 

Methods in org.springframework.webflow.execution that return FlowExecutionContext
 FlowExecutionContext RequestContext.getFlowExecutionContext()
          Returns contextual information about the flow execution itself.
 

Uses of FlowExecutionContext in org.springframework.webflow.executor
 

Methods in org.springframework.webflow.executor that return FlowExecutionContext
 FlowExecutionContext ResponseInstruction.getFlowExecutionContext()
          Returns the flow execution context representing the current state of the execution.
 

Constructors in org.springframework.webflow.executor with parameters of type FlowExecutionContext
ResponseInstruction(FlowExecutionContext flowExecutionContext, ViewSelection viewSelection)
          Create a new response instruction for an ended flow execution.
ResponseInstruction(java.lang.String flowExecutionKey, FlowExecutionContext flowExecutionContext, ViewSelection viewSelection)
          Create a new response instruction for a paused flow execution.
 

Uses of FlowExecutionContext in org.springframework.webflow.executor.support
 

Methods in org.springframework.webflow.executor.support with parameters of type FlowExecutionContext
 java.lang.String RequestParameterFlowExecutorArgumentHandler.createFlowExecutionUrl(java.lang.String flowExecutionKey, FlowExecutionContext flowExecution, ExternalContext context)
           
abstract  java.lang.String FlowExecutorArgumentHandler.createFlowExecutionUrl(java.lang.String flowExecutionKey, FlowExecutionContext flowExecution, ExternalContext context)
           
 java.lang.String FlowExecutorArgumentExposer.createFlowExecutionUrl(java.lang.String flowExecutionKey, FlowExecutionContext flowExecution, ExternalContext context)
          Create a URL path that when redirected to renders the current (or last) view selection made by the flow execution identified by the flow execution key.
 java.lang.String RequestPathFlowExecutorArgumentHandler.createFlowExecutionUrl(java.lang.String flowExecutionKey, FlowExecutionContext flowExecution, ExternalContext context)
           
 java.lang.String FlowIdMappingArgumentHandlerWrapper.createFlowExecutionUrl(java.lang.String flowExecutionKey, FlowExecutionContext flowExecution, ExternalContext context)
           
 void FlowExecutorArgumentHandler.exposeFlowExecutionContext(java.lang.String flowExecutionKey, FlowExecutionContext context, java.util.Map model)
           
 void FlowExecutorArgumentExposer.exposeFlowExecutionContext(java.lang.String flowExecutionKey, FlowExecutionContext context, java.util.Map model)
          Expose the flow execution context and it's key in given model map.
 

Uses of FlowExecutionContext in org.springframework.webflow.test
 

Classes in org.springframework.webflow.test that implement FlowExecutionContext
 class MockFlowExecutionContext
          A stub implementation of the flow execution context interface.
 

Methods in org.springframework.webflow.test that return FlowExecutionContext
 FlowExecutionContext MockRequestContext.getFlowExecutionContext()
           
 

Methods in org.springframework.webflow.test with parameters of type FlowExecutionContext
 void MockRequestContext.setFlowExecutionContext(FlowExecutionContext flowExecutionContext)
          Sets the flow execution context.
 



Copyright © 2009 Spring Framework. All Rights Reserved.