]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionFlowDescriptor.java
Adapt for agents
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionFlowDescriptor.java
1 package org.argeo.slc.execution;
2
3 import java.util.Map;
4
5 public class ExecutionFlowDescriptor {
6 private String name;
7 private Map<String, Object> values;
8 private ExecutionSpec executionSpec;
9
10 public ExecutionFlowDescriptor() {
11 }
12
13 public ExecutionFlowDescriptor(String name, Map<String, Object> values,
14 ExecutionSpec executionSpec) {
15 this.name = name;
16 this.values = values;
17 this.executionSpec = executionSpec;
18 }
19
20 public String getName() {
21 return name;
22 }
23
24 public Map<String, Object> getValues() {
25 return values;
26 }
27
28 public ExecutionSpec getExecutionSpec() {
29 return executionSpec;
30 }
31
32 public void setName(String name) {
33 this.name = name;
34 }
35
36 public void setValues(Map<String, Object> values) {
37 this.values = values;
38 }
39
40 public void setExecutionSpec(ExecutionSpec executionSpec) {
41 this.executionSpec = executionSpec;
42 }
43
44 }