A factory bean that produces a populated flow registry using a configured
list of FlowRegistrar objects.
This class is also BeanFactoryAware and when used with Spring
will automatically create a configured
DefaultFlowServiceLocator for loading Flow artifacts like
Actions from the Spring bean factory during the Flow registration process.
This class is also
BeanFactoryAwareand when used with Spring will automatically create a configured DefaultFlowServiceLocator for loading Flow artifacts like Actions from the Spring bean factory during the Flow registration process.Usage example:
<bean id="flowLocator" class="org.springframework.webflow.registry.FlowRegistryFactoryBean"> <property name="flowRegistrars"> <list> <bean class="example.MyFlowRegistrar"/> </list> </property> </bean>