]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/tasks/SlcManager.java
Add license headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / tasks / SlcManager.java
index 58397d3ca112bdccc91a64b3ab9bcd48aee3fe05..9fff5ba8062c67b049163cacd372c7ee760c0829 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.tasks;\r
 \r
 import java.lang.reflect.Method;\r
@@ -11,11 +27,13 @@ import org.argeo.slc.process.SlcExecutionRelated;
 import org.argeo.slc.process.SlcExecutionStep;\r
 import org.argeo.slc.structure.StructureRegistry;\r
 \r
+/** Use {@link MethodCall} instead. */\r
+@Deprecated\r
 public class SlcManager implements Runnable, SlcExecutionRelated {\r
        private String uuid;\r
        private String slcExecutionUuid;\r
        private String slcExecutionStepUuid;\r
-       \r
+\r
        private String action;\r
        private DeployedSystemManager<DeployedSystem> manager;\r
 \r
@@ -23,17 +41,19 @@ public class SlcManager implements Runnable, SlcExecutionRelated {
                uuid = UUID.randomUUID().toString();\r
                executeActions(StructureRegistry.ALL);\r
        }\r
-       \r
+\r
        protected void executeActions(String mode) {\r
                try {\r
-                       Method method = manager.getClass().getMethod(action, null);\r
-                       method.invoke(manager, null);\r
+                       Class<?>[] argClasses = null;\r
+                       Method method = manager.getClass().getMethod(action, argClasses);\r
+                       Object[] argObjects = null;\r
+                       method.invoke(manager, argObjects);\r
                } catch (Exception e) {\r
                        throw new SlcException("Cannot execute action " + action\r
                                        + " for manager " + manager, e);\r
                }\r
        }\r
-       \r
+\r
        public void setAction(String action) {\r
                this.action = action;\r
        }\r
@@ -65,7 +85,7 @@ public class SlcManager implements Runnable, SlcExecutionRelated {
        public void setSlcExecutionStepUuid(String slcExecutionStepUuid) {\r
                this.slcExecutionStepUuid = slcExecutionStepUuid;\r
        }\r
-       \r
+\r
        public void notifySlcExecution(SlcExecution slcExecution) {\r
                if (slcExecution != null) {\r
                        slcExecutionUuid = slcExecution.getUuid();\r