Added getFlowExecutor() method to FlowExecutorFactoryBean.
This commit is contained in:
@@ -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).
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user