]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.server/src/main/java/org/argeo/slc/services/impl/SlcExecutionServiceImpl.java
Move to SLC legacy
[gpl/argeo-slc.git] / runtime / org.argeo.slc.server / src / main / java / org / argeo / slc / services / impl / SlcExecutionServiceImpl.java
index 976f70c2d72c32416dbe4325f7d55ac1fdd70b56..d8f35620df1fc4d8d0fb902cb86d7790ce4699e3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ * Copyright (C) 2007-2012 Mathieu Baudier
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.argeo.slc.services.impl;
 
+import java.util.ArrayList;
+import java.util.List;
+
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.argeo.slc.SlcException;
@@ -65,10 +67,12 @@ public class SlcExecutionServiceImpl implements SlcExecutionService {
 
                slcExecution.setStatus(msg.getNewStatus());
 
-               if (msg.getNewStatus().equals(SlcExecution.STATUS_FINISHED))
-                       slcExecution.getSteps().add(
-                                       new SlcExecutionStep(SlcExecutionStep.TYPE_END,
-                                                       "Process finished."));
+               if (msg.getNewStatus().equals(SlcExecution.COMPLETED)) {
+                       List<SlcExecutionStep> steps = new ArrayList<SlcExecutionStep>();
+                       steps.add(new SlcExecutionStep(SlcExecutionStep.END,
+                                       "Process finished."));
+                       slcExecutionDao.addSteps(slcExecution.getUuid(), steps);
+               }
 
                if (log.isTraceEnabled())
                        log.trace("Updating status for SLC execution #"