]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModuleDescriptor.java
Implement ref spec
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionModuleDescriptor.java
index e87a14e4ac3198ffd342d599713475fec2716252..3aa28e690a561731f838e7499a7e8c46fdf6c1a8 100644 (file)
@@ -3,9 +3,11 @@ package org.argeo.slc.execution;
 import java.util.ArrayList;
 import java.util.List;
 
-public class ExecutionModuleDescriptor {
-       private String name;
-       private String version;
+import org.argeo.slc.deploy.ModuleDescriptor;
+
+public class ExecutionModuleDescriptor extends ModuleDescriptor {
+       private static final long serialVersionUID = 1L;
+
        private List<ExecutionSpec> executionSpecs = new ArrayList<ExecutionSpec>();
        private List<ExecutionFlowDescriptor> executionFlows = new ArrayList<ExecutionFlowDescriptor>();
 
@@ -24,21 +26,4 @@ public class ExecutionModuleDescriptor {
        public void setExecutionFlows(List<ExecutionFlowDescriptor> executionFlows) {
                this.executionFlows = executionFlows;
        }
-
-       public String getName() {
-               return name;
-       }
-
-       public void setName(String name) {
-               this.name = name;
-       }
-
-       public String getVersion() {
-               return version;
-       }
-
-       public void setVersion(String version) {
-               this.version = version;
-       }
-
 }