]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java
Move org.argeo.slc.detached
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedRequest.java
1 package org.argeo.slc.detached;
2
3 import java.util.Properties;
4
5 public class DetachedRequest implements DetachedCommunication {
6 static final long serialVersionUID = 1l;
7
8 private String uuid;
9 private Properties properties = new Properties();
10 private String ref;
11 private String path = "";
12
13 public DetachedRequest() {
14
15 }
16
17 public DetachedRequest(String uuid) {
18 this.uuid = uuid;
19 }
20
21 public Properties getProperties() {
22 return properties;
23 }
24
25 public void setProperties(Properties inputParameters) {
26 this.properties = inputParameters;
27 }
28
29 public String getRef() {
30 return ref;
31 }
32
33 public void setRef(String stepRef) {
34 this.ref = stepRef;
35 }
36
37 public String getPath() {
38 return path;
39 }
40
41 public void setPath(String path) {
42 this.path = path;
43 }
44
45 public String getUuid() {
46 return uuid;
47 }
48
49 public void setUuid(String uuid) {
50 this.uuid = uuid;
51 }
52 }