]> 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
Add license headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / generator / ExecutionFlowGenerator.java
index db1d276d7975fe705daeddae28920648bb893ca7..5f491951a03e47dc269e036b6564800691847830 100644 (file)
@@ -1,3 +1,19 @@
+/*\r
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
 package org.argeo.slc.core.execution.generator;\r
 \r
 import java.util.HashMap;\r
@@ -15,7 +31,6 @@ import org.springframework.beans.factory.config.RuntimeBeanReference;
 import org.springframework.beans.factory.support.BeanDefinitionRegistry;\r
 import org.springframework.beans.factory.support.GenericBeanDefinition;\r
 import org.springframework.core.Ordered;\r
-import org.springframework.core.PriorityOrdered;\r
 \r
 /**\r
  * Generates <code>ExecutionFlows</code> and <code>Runnables</code> as\r
@@ -27,7 +42,7 @@ import org.springframework.core.PriorityOrdered;
  * and outputs of a <code>RunnableFactory</code>.\r
  */\r
 public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,\r
-               PriorityOrdered {\r
+               Ordered {\r
        \r
        private final Log log = LogFactory.getLog(getClass());\r
 \r
@@ -65,6 +80,8 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
         * <code>RunnableCallFlowDescriptor</code>\r
         */\r
        private String flowBeanNamesPrefix = "";\r
+       \r
+       private int order = Ordered.HIGHEST_PRECEDENCE;\r
                \r
        public void postProcessBeanFactory(\r
                        ConfigurableListableBeanFactory beanFactory) throws BeansException {\r
@@ -136,7 +153,11 @@ public class ExecutionFlowGenerator implements BeanFactoryPostProcessor,
        }\r
        \r
        public int getOrder() {\r
-               return Ordered.HIGHEST_PRECEDENCE;\r
+               return order;\r
+       }\r
+\r
+       public void setOrder(int order) {\r
+               this.order = order;\r
        }\r
 \r
        public void setSource(ExecutionFlowGeneratorSource source) {\r