package org.argeo.slc.execution; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.argeo.slc.process.Executable; public class ExecutionFlowFactory { private List executables = new ArrayList(); public ExecutionFlow createExecutionFlow(Map attributes){ SimpleExecutionFlow executionFlow = new SimpleExecutionFlow(); executionFlow.setExecutables(executables); return executionFlow; } public void setExecutables(List executables) { this.executables = executables; } }