]> 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
Fix Maven build issues
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.ws.client / src / main / java / org / argeo / slc / ws / process / WebServiceSlcExecutionNotifier.java
index 58f9a10be86b157a34bbb59638571d2af9d53d6b..f6b9dee14d425c4cf488900a550c0b42cc94d7ff 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,7 @@ 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.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 +39,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 +76,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,8 +96,9 @@ public class WebServiceSlcExecutionNotifier implements SlcExecutionNotifier {
                }\r
        }\r
 \r
-       public void addSteps(SlcExecution slcExecution,\r
+       public void addSteps(ExecutionProcess process,\r
                        List<SlcExecutionStep> additionalSteps) {\r
+               SlcExecution slcExecution= (SlcExecution)process;\r
                if (cannotConnect)\r
                        return;\r
 \r