X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.specs%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fexecution%2FExecutionProcess.java;h=447ef7f982c054fe3da0b3c348f875a2a8525ed7;hb=9b2422e7198df6f34282a805058dd5f497417318;hp=be70b0955d01738287db5967e649889e0cc1a7b9;hpb=94f8c90b4eb50398388b6ee2ebb4e19c8abdee01;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionProcess.java b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionProcess.java index be70b0955..447ef7f98 100644 --- a/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionProcess.java +++ b/runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionProcess.java @@ -1,12 +1,13 @@ package org.argeo.slc.execution; +import java.util.List; + /** * A process is the functional representation of a combination of executions. * While an execution is the actual java code running, a process exists before, * during and after the execution actually took place, providing an entry point * for the definition of executions, their monitoring (e.g. logging) and - * tracking. A process can be distributed or parallelized. - *
+ * tracking. A process can be distributed or parallelized.
* NEW => INITIALIZED => SCHEDULED => RUNNING
* RUNNING => {COMPLETED | ERROR | KILLED}
* {COMPLETED | ERROR | KILLED} => PURGED
@@ -44,4 +45,6 @@ public interface ExecutionProcess { /** Sets the current status of this process */ public void setStatus(String status); + + public void addSteps(List steps); }