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

Packages that use FlowExecutionListener
org.springframework.webflow.config High-level flow system configuration support within a Spring environment. 
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.execution.factory Supporting types often used by flow execution factory implementations. 
org.springframework.webflow.test.execution Support for testing the execution of a flow definition. 
 

Uses of FlowExecutionListener in org.springframework.webflow.config
 

Methods in org.springframework.webflow.config with parameters of type FlowExecutionListener
 void FlowExecutorFactoryBean.setExecutionListener(FlowExecutionListener executionListener)
          Convenience setter that sets a single listener that always applies to flow executions launched by the executor created by this factory.
 void FlowExecutorFactoryBean.setExecutionListeners(FlowExecutionListener[] executionListeners)
          Convenience setter that sets a list of listeners that always apply to flow executions launched by the executor created by this factory.
 

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

Constructors in org.springframework.webflow.engine.impl with parameters of type FlowExecutionListener
FlowExecutionImpl(Flow flow, FlowExecutionListener[] listeners, AttributeMap attributes)
          Create a new flow execution executing the provided flow.
 

Uses of FlowExecutionListener in org.springframework.webflow.execution
 

Classes in org.springframework.webflow.execution that implement FlowExecutionListener
 class FlowExecutionListenerAdapter
          An abstract adapter class for listeners (observers) of flow execution lifecycle events.
 

Uses of FlowExecutionListener in org.springframework.webflow.execution.factory
 

Methods in org.springframework.webflow.execution.factory that return FlowExecutionListener
 FlowExecutionListener[] FlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
          Get the flow execution listeners that apply to the given flow definition.
 FlowExecutionListener[] StaticFlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
           
 FlowExecutionListener[] ConditionalFlowExecutionListenerLoader.getListeners(FlowDefinition flowDefinition)
          Returns the array of flow execution listeners for specified flow.
 

Methods in org.springframework.webflow.execution.factory with parameters of type FlowExecutionListener
 void ConditionalFlowExecutionListenerLoader.addListener(FlowExecutionListener listener)
          Add a listener that will listen to executions for all flows.
 void ConditionalFlowExecutionListenerLoader.addListener(FlowExecutionListener listener, FlowExecutionListenerCriteria criteria)
          Add a listener that will listen to executions to flows matching the specified criteria.
 void ConditionalFlowExecutionListenerLoader.addListeners(FlowExecutionListener[] listeners, FlowExecutionListenerCriteria criteria)
          Adds a collection of listeners that share a matching criteria.
 boolean ConditionalFlowExecutionListenerLoader.containsListener(FlowExecutionListener listener)
          Is the given listener contained by this Flow execution manager?
 void ConditionalFlowExecutionListenerLoader.removeListener(FlowExecutionListener listener)
          Remove the flow execution listener from the listener list.
 void ConditionalFlowExecutionListenerLoader.removeListenerCriteria(FlowExecutionListener listener, FlowExecutionListenerCriteria criteria)
          Remove the criteria for the specified listener.
 

Constructors in org.springframework.webflow.execution.factory with parameters of type FlowExecutionListener
StaticFlowExecutionListenerLoader(FlowExecutionListener listener)
          Creates a new flow execution listener loader that returns the provided listener on each invocation.
StaticFlowExecutionListenerLoader(FlowExecutionListener[] listeners)
          Creates a new flow execution listener loader that returns the provided listener array on each invocation.
 

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

Methods in org.springframework.webflow.test.execution with parameters of type FlowExecutionListener
protected  void AbstractExternalizedFlowExecutionTests.setFlowExecutionListener(FlowExecutionListener executionListener)
          Set a single listener to be attached to the flow execution the next time one is started by this test.
protected  void AbstractExternalizedFlowExecutionTests.setFlowExecutionListeners(FlowExecutionListener[] executionListeners)
          Set the listeners to be attached to the flow execution the next time one is started by this test.
 



Copyright © 2009 Spring Framework. All Rights Reserved.