Uses of Interface
org.springframework.webflow.engine.builder.FlowServiceLocator

Packages that use FlowServiceLocator
org.springframework.webflow.engine.builder The flow builder subsystem for building and assembling executable flow definitions. 
org.springframework.webflow.engine.builder.xml The XML-based flow builder implementation. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
org.springframework.webflow.test.execution Support for testing the execution of a flow definition. 
 

Uses of FlowServiceLocator in org.springframework.webflow.engine.builder
 

Classes in org.springframework.webflow.engine.builder that implement FlowServiceLocator
 class BaseFlowServiceLocator
          Base implementation that implements a minimal set of the FlowServiceLocator interface, throwing unsupported operation exceptions for some operations.
 class DefaultFlowServiceLocator
          The default flow service locator implementation that obtains subflow definitions from a dedicated FlowDefinitionRegistry and obtains the remaining services from a generic Spring BeanFactory.
 

Methods in org.springframework.webflow.engine.builder that return FlowServiceLocator
protected  FlowServiceLocator AbstractFlowBuildingFlowRegistryFactoryBean.createFlowServiceLocator()
          Factory method for creating the service locator used to locate webflow services during flow assembly.
 FlowServiceLocator BaseFlowBuilder.getFlowServiceLocator()
          Returns the configured flow service locator.
protected  FlowServiceLocator AbstractFlowBuildingFlowRegistryFactoryBean.getFlowServiceLocator()
          Returns the strategy for locating dependent artifacts when a flow is being built.
 

Methods in org.springframework.webflow.engine.builder with parameters of type FlowServiceLocator
protected  void AbstractFlowBuildingFlowRegistryFactoryBean.init(FlowServiceLocator flowServiceLocator)
          Called after properties have been set on the service locator, but before registry population.
 void BaseFlowBuilder.setFlowServiceLocator(FlowServiceLocator flowServiceLocator)
          Sets the flow service locator to use.
 

Constructors in org.springframework.webflow.engine.builder with parameters of type FlowServiceLocator
AbstractFlowBuilder(FlowServiceLocator flowServiceLocator)
          Create an instance of an abstract flow builder, using the specified locator to obtain needed flow services at build time.
BaseFlowBuilder(FlowServiceLocator flowServiceLocator)
          Creates a flow builder using the given locator to link in artifacts.
TextToTargetStateResolver(FlowServiceLocator flowServiceLocator)
          Create a new converter that converts strings to transition target state resolver objects.
TextToTransitionCriteria(FlowServiceLocator flowServiceLocator)
          Create a new converter that converts strings to transition criteria objects.
TextToViewSelector(FlowServiceLocator flowServiceLocator)
          Create a new text to ViewSelector converter.
 

Uses of FlowServiceLocator in org.springframework.webflow.engine.builder.xml
 

Methods in org.springframework.webflow.engine.builder.xml that return FlowServiceLocator
protected  FlowServiceLocator XmlFlowRegistrar.getFlowServiceLocator()
          Returns the flow service locator.
protected  FlowServiceLocator XmlFlowBuilder.getLocalFlowServiceLocator()
          Returns the flow service locator local to this builder.
 

Methods in org.springframework.webflow.engine.builder.xml with parameters of type FlowServiceLocator
protected  void XmlFlowRegistryFactoryBean.init(FlowServiceLocator flowServiceLocator)
           
protected  void XmlFlowRegistrar.setFlowServiceLocator(FlowServiceLocator flowServiceLocator)
          Sets the flow service locator.
 

Constructors in org.springframework.webflow.engine.builder.xml with parameters of type FlowServiceLocator
XmlFlowBuilder(org.springframework.core.io.Resource location, FlowServiceLocator flowServiceLocator)
          Create a new XML flow builder parsing the document at the specified location, using the provided service locator to access externally managed flow artifacts.
XmlFlowRegistrar(FlowServiceLocator flowServiceLocator)
          Creates a new XML flow registrar.
 

Uses of FlowServiceLocator in org.springframework.webflow.test
 

Classes in org.springframework.webflow.test that implement FlowServiceLocator
 class MockFlowServiceLocator
          A stub flow service locator implementation suitable for a test environment.
 

Uses of FlowServiceLocator in org.springframework.webflow.test.execution
 

Methods in org.springframework.webflow.test.execution that return FlowServiceLocator
protected  FlowServiceLocator AbstractExternalizedFlowExecutionTests.createFlowServiceLocator()
          Returns the flow service locator to use during flow definition construction time for accessing externally managed flow artifacts such as actions and flows to be used as subflows.
 

Methods in org.springframework.webflow.test.execution with parameters of type FlowServiceLocator
protected  Flow AbstractExternalizedFlowExecutionTests.createFlow(FlowDefinitionResource resource, FlowServiceLocator serviceLocator)
          Factory method to assemble a flow definition from a resource.
protected abstract  FlowBuilder AbstractExternalizedFlowExecutionTests.createFlowBuilder(org.springframework.core.io.Resource resource, FlowServiceLocator serviceLocator)
          Factory method to create the builder that will build the flow definition whose execution will be tested.
protected  FlowBuilder AbstractXmlFlowExecutionTests.createFlowBuilder(org.springframework.core.io.Resource resource, FlowServiceLocator flowServiceLocator)
           
 



Copyright © 2009 Spring Framework. All Rights Reserved.