]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionFlowDescriptor.java
Provisioning
[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 String path;
8 private Map<String, Object> values;
9 private ExecutionSpec executionSpec;
10
11 public ExecutionFlowDescriptor() {
12 }
13
14 public ExecutionFlowDescriptor(String name, Map<String, Object> values,
15 ExecutionSpec executionSpec) {
16 this.name = name;
17 this.values = values;
18 this.executionSpec = executionSpec;
19 }
20
21 public String getName() {
22 return name;
23 }
24
25 public String getPath() {
26 return path;
27 }
28
29 public void setPath(String path) {
30 this.path = path;
31 }
32
33 public Map<String, Object> getValues() {
34 return values;
35 }
36
37 public ExecutionSpec getExecutionSpec() {
38 return executionSpec;
39 }
40
41 public void setName(String name) {
42 this.name = name;
43 }
44
45 public void setValues(Map<String, Object> values) {
46 this.values = values;
47 }
48
49 public void setExecutionSpec(ExecutionSpec executionSpec) {
50 this.executionSpec = executionSpec;
51 }
52
53 }