Spring Web Flow

org.springframework.webflow.execution.factory
Interface FlowExecutionListenerLoader

All Known Implementing Classes:
ConditionalFlowExecutionListenerLoader, StaticFlowExecutionListenerLoader

public interface FlowExecutionListenerLoader

A strategy interface for loading the set of FlowExecutionListener's that should apply to executions of a given flow definition. Typically used by a FlowExecutionFactory as part of execution creation.

Author:
Keith Donald

Method Summary
 FlowExecutionListener[] getListeners(FlowDefinition flowDefinition)
          Get the flow execution listeners that apply to the given flow definition.
 

Method Detail

getListeners

FlowExecutionListener[] getListeners(FlowDefinition flowDefinition)
Get the flow execution listeners that apply to the given flow definition.

Parameters:
flowDefinition - the flow definition
Returns:
the listeners that apply

Spring Web Flow