<bean id="flowRegistry"
class="org.springframework.webflow.engine.builder. xml. \
XmlFlowRegistryFactoryBean">
<property name="flowDefinitions">
<value>
editPerson-flow=classpath:editPerson-flow.xml
editOrganization-flow=classpath:editOrganization-flow.xml
</value>
</property>
<property name="flowAttributes">
<map>
<entry key="editPerson-flow">
<map>
<entry key="entityType" value="foo.bar.Person"/>
</map>
</entry>
<entry key="editOrganization-flow">
<map>
<entry key="entityType" value="foo.bar.Organization"/>
</map>
</entry>
</map>
</property>
</bean>