]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/generator/ExecutionFlowGenerator.java
Adds Unit Tests for ExcelGeneratorSource and AutouiRunnableFactory
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / generator / ExecutionFlowGenerator.java
index 5451402ff6255d13bdfee837a22c79cf73082a90..db1d276d7975fe705daeddae28920648bb893ca7 100644 (file)
@@ -26,10 +26,6 @@ import org.springframework.core.PriorityOrdered;
  * Application Context after configuring the <code>ExecutionContext</code>, \r
  * and outputs of a <code>RunnableFactory</code>.\r
  */\r
-/**\r
- * @author Olivier Capillon\r
- *\r
- */\r
 public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,\r
                PriorityOrdered {\r
        \r
@@ -63,6 +59,12 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
         * <code>RunnableCallFlow</code> beans.\r
         */\r
        private String contextValuesBeanName = "executionFlowGenerator.contextValues";\r
+       \r
+       /**\r
+        * Prefix added to the bean names defined in each \r
+        * <code>RunnableCallFlowDescriptor</code>\r
+        */\r
+       private String flowBeanNamesPrefix = "";\r
                \r
        public void postProcessBeanFactory(\r
                        ConfigurableListableBeanFactory beanFactory) throws BeansException {\r
@@ -100,11 +102,13 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
                GenericBeanDefinition flowBean = new GenericBeanDefinition();\r
                flowBean.setBeanClass(RunnableCallFlow.class);\r
                \r
+               String beanName = flowBeanNamesPrefix + flowDescriptor.getBeanName();\r
+               \r
                MutablePropertyValues mpv = new MutablePropertyValues();                \r
                mpv.addPropertyValue("runnableCalls", flowDescriptor.getRunnableCalls());\r
                mpv.addPropertyValue("sharedContextValuesMap", new RuntimeBeanReference(contextValuesBeanName));\r
                \r
-               mpv.addPropertyValue("name", flowDescriptor.getBeanName());\r
+               mpv.addPropertyValue("name", beanName);\r
                mpv.addPropertyValue("path", flowDescriptor.getPath());\r
 \r
                mpv.addPropertyValue("executionContext", new RuntimeBeanReference(executionContextBeanName));\r
@@ -113,9 +117,9 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
                \r
                // register it\r
                if(log.isDebugEnabled()) {\r
-                       log.debug("Registering bean definition for RunnableCallFlow " + flowDescriptor.getBeanName());\r
+                       log.debug("Registering bean definition for RunnableCallFlow " + beanName);\r
                }\r
-               registry.registerBeanDefinition(flowDescriptor.getBeanName(), flowBean);\r
+               registry.registerBeanDefinition(beanName, flowBean);\r
        }\r
        \r
        /**\r
@@ -151,5 +155,7 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
                this.contextValuesBeanName = contextValuesBeanName;\r
        }\r
 \r
-\r
+       public void setFlowBeanNamesPrefix(String flowBeanNamesPrefix) {\r
+               this.flowBeanNamesPrefix = flowBeanNamesPrefix;\r
+       }\r
 }\r