]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/process/SlcExecution.java
Merge web service sandbox
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / process / SlcExecution.java
1 package org.argeo.slc.core.process;
2
3 import java.util.List;
4 import java.util.Vector;
5
6 public class SlcExecution {
7 private String uuid;
8 private String host;
9 private String path;
10 private String type;
11 private String status;
12
13 private List<SlcExecutionStep> steps = new Vector<SlcExecutionStep>();
14
15
16
17 public List<SlcExecutionStep> getSteps() {
18 return steps;
19 }
20
21 public void setSteps(List<SlcExecutionStep> steps) {
22 this.steps = steps;
23 }
24
25 public String getUuid() {
26 return uuid;
27 }
28
29 public void setUuid(String uuid) {
30 this.uuid = uuid;
31 }
32
33 public String getHost() {
34 return host;
35 }
36
37 public void setHost(String host) {
38 this.host = host;
39 }
40
41 public String getPath() {
42 return path;
43 }
44
45 public void setPath(String path) {
46 this.path = path;
47 }
48
49 public String getType() {
50 return type;
51 }
52
53 public void setType(String type) {
54 this.type = type;
55 }
56
57 public String getStatus() {
58 return status;
59 }
60
61 public void setStatus(String status) {
62 this.status = status;
63 }
64
65 }