package org.argeo.slc.execution; import java.util.ArrayList; import java.util.List; import org.argeo.slc.deploy.ModuleDescriptor; public class ExecutionModuleDescriptor extends ModuleDescriptor { private static final long serialVersionUID = 1L; private List executionSpecs = new ArrayList(); private List executionFlows = new ArrayList(); public List getExecutionSpecs() { return executionSpecs; } public List getExecutionFlows() { return executionFlows; } public void setExecutionSpecs(List executionSpecs) { this.executionSpecs = executionSpecs; } public void setExecutionFlows(List executionFlows) { this.executionFlows = executionFlows; } }