Remove old license headers
[gpl/argeo-slc.git] / org.argeo.slc.spring / src / org / argeo / slc / core / execution / generator / RunnableCallFlowDescriptor.java
index e0bbbdda974e07415d86aef5b9fdd3c9eb81934c..738b75f7645a2be22dafed588b9d6556dc4bcb7d 100644 (file)
@@ -1,70 +1,55 @@
-/*\r
- * Copyright (C) 2007-2012 Argeo GmbH\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
-package org.argeo.slc.core.execution.generator;\r
-\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-/**\r
- * Storage Class for information required to\r
- * instantiate a <code>RunnableCallFlow</code>:\r
- * bean name of the flow, \r
- * path of the flow \r
- * and list of <code>RunnableCall</code>. \r
- *\r
- */\r
-public class RunnableCallFlowDescriptor {\r
-       \r
-       /**\r
-        * Bean name of the flow to instantiate\r
-        */\r
-       private String beanName;\r
-       \r
-       /**\r
-        * Path of the flow to instantiate\r
-        */\r
-       private String path;\r
-       \r
-       /**\r
-        * List of <code>RunnableCall</code> \r
-        */\r
-       private List<RunnableCall> runnableCalls = new ArrayList<RunnableCall>();\r
-\r
-       public String getBeanName() {\r
-               return beanName;\r
-       }\r
-\r
-       public void setBeanName(String beanName) {\r
-               this.beanName = beanName;\r
-       }\r
-\r
-       public String getPath() {\r
-               return path;\r
-       }\r
-\r
-       public void setPath(String path) {\r
-               this.path = path;\r
-       }\r
-\r
-       public List<RunnableCall> getRunnableCalls() {\r
-               return runnableCalls;\r
-       }\r
-\r
-       public void setRunnableCalls(List<RunnableCall> runnableCalls) {\r
-               this.runnableCalls = runnableCalls;\r
-       }\r
-       \r
-}\r
+package org.argeo.slc.core.execution.generator;
+
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * Storage Class for information required to
+ * instantiate a <code>RunnableCallFlow</code>:
+ * bean name of the flow, 
+ * path of the flow 
+ * and list of <code>RunnableCall</code>. 
+ *
+ */
+public class RunnableCallFlowDescriptor {
+       
+       /**
+        * Bean name of the flow to instantiate
+        */
+       private String beanName;
+       
+       /**
+        * Path of the flow to instantiate
+        */
+       private String path;
+       
+       /**
+        * List of <code>RunnableCall</code> 
+        */
+       private List<RunnableCall> runnableCalls = new ArrayList<RunnableCall>();
+
+       public String getBeanName() {
+               return beanName;
+       }
+
+       public void setBeanName(String beanName) {
+               this.beanName = beanName;
+       }
+
+       public String getPath() {
+               return path;
+       }
+
+       public void setPath(String path) {
+               this.path = path;
+       }
+
+       public List<RunnableCall> getRunnableCalls() {
+               return runnableCalls;
+       }
+
+       public void setRunnableCalls(List<RunnableCall> runnableCalls) {
+               this.runnableCalls = runnableCalls;
+       }
+       
+}