package org.argeo.slc.execution; import java.util.ArrayList; import java.util.List; public class ExecutionModuleDescriptor { 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; } }