]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java
Integrate detached with standard SLC
[gpl/argeo-slc.git] / 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 Properties getProperties() {
14 return properties;
15 }
16
17 public void setProperties(Properties inputParameters) {
18 this.properties = inputParameters;
19 }
20
21 public String getRef() {
22 return ref;
23 }
24
25 public void setRef(String stepRef) {
26 this.ref = stepRef;
27 }
28
29 public String getPath() {
30 return path;
31 }
32
33 public void setPath(String path) {
34 this.path = path;
35 }
36
37 public String getUuid() {
38 return uuid;
39 }
40
41 public void setUuid(String uuid) {
42 this.uuid = uuid;
43 }
44 }