]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.support.ws.client/src/main/java/org/argeo/slc/ws/process/WebServiceSlcExecutionNotifier.java
Update license header
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.ws.client / src / main / java / org / argeo / slc / ws / process / WebServiceSlcExecutionNotifier.java
index 58f9a10be86b157a34bbb59638571d2af9d53d6b..133033bd1bc6bc16fb86136bf937f4dad15b054a 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.ws.process;\r
 \r
 import java.util.List;\r
@@ -7,6 +23,8 @@ import org.apache.commons.logging.LogFactory;
 import org.argeo.slc.msg.process.SlcExecutionRequest;\r
 import org.argeo.slc.msg.process.SlcExecutionStatusRequest;\r
 import org.argeo.slc.msg.process.SlcExecutionStepsRequest;\r
+import org.argeo.slc.execution.ExecutionStep;\r
+import org.argeo.slc.execution.ExecutionProcess;\r
 import org.argeo.slc.process.SlcExecution;\r
 import org.argeo.slc.process.SlcExecutionNotifier;\r
 import org.argeo.slc.process.SlcExecutionStep;\r
@@ -22,7 +40,8 @@ public class WebServiceSlcExecutionNotifier implements SlcExecutionNotifier {
 \r
        private Boolean cannotConnect = false;\r
 \r
-       public void newExecution(SlcExecution slcExecution) {\r
+       public void newExecution(ExecutionProcess process) {\r
+               SlcExecution slcExecution = (SlcExecution) process;\r
                if (cannotConnect)\r
                        return;\r
 \r
@@ -58,8 +77,9 @@ public class WebServiceSlcExecutionNotifier implements SlcExecutionNotifier {
                }\r
        }\r
 \r
-       public void updateStatus(SlcExecution slcExecution, String oldStatus,\r
+       public void updateStatus(ExecutionProcess process, String oldStatus,\r
                        String newStatus) {\r
+               SlcExecution slcExecution = (SlcExecution) process;\r
                if (cannotConnect)\r
                        return;\r
 \r
@@ -77,20 +97,14 @@ public class WebServiceSlcExecutionNotifier implements SlcExecutionNotifier {
                }\r
        }\r
 \r
-       public void addSteps(SlcExecution slcExecution,\r
-                       List<SlcExecutionStep> additionalSteps) {\r
+       public void addSteps(ExecutionProcess process,\r
+                       List<ExecutionStep> additionalSteps) {\r
+               SlcExecution slcExecution = (SlcExecution) process;\r
                if (cannotConnect)\r
                        return;\r
 \r
-               SlcExecutionStepsRequest req = new SlcExecutionStepsRequest();\r
-               req.setSlcExecutionUuid(slcExecution.getUuid());\r
-               req.setSteps(additionalSteps);\r
-               if (log.isTraceEnabled()) {\r
-                       for (SlcExecutionStep step : additionalSteps) {\r
-                               log.trace("Step " + step.getUuid() + ": " + step);\r
-                       }\r
-               }\r
-\r
+               SlcExecutionStepsRequest req = new SlcExecutionStepsRequest(\r
+                               slcExecution.getUuid(), additionalSteps);\r
                try {\r
                        WebServiceUtils.marshalSendAndReceive(template, req);\r
                        if (log.isTraceEnabled())\r