Uses of Interface
org.springframework.webflow.execution.repository.FlowExecutionRepository

Packages that use FlowExecutionRepository
org.springframework.webflow.config High-level flow system configuration support within a Spring environment. 
org.springframework.webflow.execution.repository.continuation Implementation of continuation-based flow execution repositories. 
org.springframework.webflow.execution.repository.support General purpose implementation assistance for flow execution repositories. 
org.springframework.webflow.executor High-level executors for driving the execution of flow definitions. 
org.springframework.webflow.executor.jsf The integration layer between Spring Web Flow and Java Server Faces (JSF). 
 

Uses of FlowExecutionRepository in org.springframework.webflow.config
 

Methods in org.springframework.webflow.config that return FlowExecutionRepository
protected  FlowExecutionRepository FlowExecutorFactoryBean.createExecutionRepository(RepositoryType repositoryType, FlowExecutionStateRestorer executionStateRestorer, ConversationManager conversationManager)
          Factory method for creating the flow execution repository for saving and loading executing flows.
 

Methods in org.springframework.webflow.config with parameters of type FlowExecutionRepository
protected  FlowExecutor FlowExecutorFactoryBean.createFlowExecutor(FlowDefinitionLocator definitionLocator, FlowExecutionFactory executionFactory, FlowExecutionRepository executionRepository)
          Create the flow executor instance created by this factory bean and configure it appropriately.
 

Uses of FlowExecutionRepository in org.springframework.webflow.execution.repository.continuation
 

Classes in org.springframework.webflow.execution.repository.continuation that implement FlowExecutionRepository
 class ClientContinuationFlowExecutionRepository
          Stores flow execution state client side, requiring no use of server-side state.
 class ContinuationFlowExecutionRepository
          Stores one to many flow execution continuations (snapshots) per conversation, where each continuation represents a paused, restorable view-state of a flow execution snapshotted at a point in time.
 

Uses of FlowExecutionRepository in org.springframework.webflow.execution.repository.support
 

Classes in org.springframework.webflow.execution.repository.support that implement FlowExecutionRepository
 class AbstractConversationFlowExecutionRepository
          A convenient base class for flow execution repository implementations that delegate to a conversation service for managing conversations that govern the persistent state of paused flow executions.
 class AbstractFlowExecutionRepository
          Abstract base class for flow execution repository implementations.
 class SimpleFlowExecutionRepository
          Conversation manager based flow execution repository that stores exactly one flow execution per conversation.
 

Uses of FlowExecutionRepository in org.springframework.webflow.executor
 

Methods in org.springframework.webflow.executor that return FlowExecutionRepository
 FlowExecutionRepository FlowExecutorImpl.getExecutionRepository()
          Exposes the execution repository to subclasses and privileged accessors.
 

Constructors in org.springframework.webflow.executor with parameters of type FlowExecutionRepository
FlowExecutorImpl(FlowDefinitionLocator definitionLocator, FlowExecutionFactory executionFactory, FlowExecutionRepository executionRepository)
          Create a new flow executor.
 

Uses of FlowExecutionRepository in org.springframework.webflow.executor.jsf
 

Methods in org.springframework.webflow.executor.jsf that return FlowExecutionRepository
static FlowExecutionRepository FlowFacesUtils.getExecutionRepository(javax.faces.context.FacesContext context)
          Returns the flow execution repository to use in a JSF environment.
 



Copyright © 2009 Spring Framework. All Rights Reserved.