]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionFlowDescriptorConverter.java
Improve JCR integration
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionFlowDescriptorConverter.java
index ba3c7fb70c901c96aab45d70887e2150b636b33c..68ac646e04b1cc0dec3567bbe413bf770c3242e1 100644 (file)
@@ -18,10 +18,17 @@ package org.argeo.slc.execution;
 
 import java.util.Map;
 
+/**
+ * Maps back and forth between {@link ExecutionFlowDescriptor} and
+ * {@link ExecutionFlow}
+ */
 public interface ExecutionFlowDescriptorConverter {
        public Map<String, Object> convertValues(
                        ExecutionFlowDescriptor executionFlowDescriptor);
 
        public void addFlowsToDescriptor(ExecutionModuleDescriptor md,
                        Map<String, ExecutionFlow> executionFlows);
+
+       public ExecutionFlowDescriptor getExecutionFlowDescriptor(
+                       ExecutionFlow executionFlow);
 }