]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/generator/ExecutionFlowGeneratorSource.java
Add resource as stdin
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / generator / ExecutionFlowGeneratorSource.java
1 package org.argeo.slc.core.execution.generator;
2
3 import java.util.List;
4
5 /**
6 * Provides 2 types of information required by an <code>ExecutionFlowGenerator</code>:
7 * a list of <code>RunnableCallFlowDescriptor</code> used to create <code>RunnableCallFlow</code>
8 * and a list of <code>RunnableDataNode</code> used to create any kind of flow via a factory.
9 */
10 public interface ExecutionFlowGeneratorSource {
11
12 /**
13 * @return a list of <code>RunnableCallFlowDescriptor</code> used
14 * by a <code>ExecutionFlowGenerator</code> to create <code>RunnableCallFlow</code>
15 */
16 public List<RunnableCallFlowDescriptor> getRunnableCallFlowDescriptors();
17
18 /**
19 * @return a list of <code>RunnableDataNode</code> used
20 * by a <code>ExecutionFlowGenerator</code> to create any kind of flow via a factory
21 */
22 public List<RunnableDataNode> getRunnableDataNodes();
23
24 }