Added getFlowExecutor() method to FlowExecutorFactoryBean.

This commit is contained in:
Erwin Vervaet
2007-03-31 11:43:33 +00:00
parent 8105acb66c
commit 3ea61b06eb
2 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,7 @@ Package org.springframework.webflow.config
not to be read properly and throw an exception (SWF-239).
* Added Spring tooling funtionality to the BeanDefinitionParser to allow tools such as SpringIDE
to properly interact with it (SWF-254).
* Added getFlowExecutor() method to FlowExecutorFactoryBean.
Package org.springframework.webflow.context
* The ThreadLocal in ExternalContextHolder is now final (SWF-262).

View File

@@ -406,6 +406,13 @@ public class FlowExecutorFactoryBean implements FactoryBean, InitializingBean {
}
public Object getObject() throws Exception {
return getFlowExecutor();
}
/**
* Returns the flow executor constructed by the factory bean.
*/
public FlowExecutor getFlowExecutor() {
return flowExecutor;
}
}