]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionFlow.java
Improve execution specs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionFlow.java
index ede2bf15343a4e4a1f2fdf247221571f010fddcc..ce6a805831352f316d6b8cb8aaaa52a684241412 100644 (file)
@@ -2,8 +2,12 @@ package org.argeo.slc.execution;
 
 import org.argeo.slc.process.Executable;
 
-public interface ExecutionFlow extends Executable{
-       public Object getParameter(String name);
+public interface ExecutionFlow extends Executable {
+       public Object getParameter(String key);
+
+       public Boolean isSetAsParameter(String key);
+
        public ExecutionSpec getExecutionSpec();
+
        public String getName();
 }