]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedStepRequest.java
Integrate detached with standard SLC
[gpl/argeo-slc.git] / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedStepRequest.java
1 package org.argeo.slc.detached;
2
3 import java.io.Serializable;
4 import java.util.Properties;
5
6 public class DetachedStepRequest implements Serializable {
7 private String uuid;
8 private Properties inputParameters;
9 private String stepRef;
10 private String path;
11
12 public Properties getInputParameters() {
13 return inputParameters;
14 }
15
16 public void setInputParameters(Properties inputParameters) {
17 this.inputParameters = inputParameters;
18 }
19
20 public String getStepRef() {
21 return stepRef;
22 }
23
24 public void setStepRef(String stepRef) {
25 this.stepRef = stepRef;
26 }
27
28 public String getPath() {
29 return path;
30 }
31
32 public void setPath(String path) {
33 this.path = path;
34 }
35
36 public String getUuid() {
37 return uuid;
38 }
39
40 public void setUuid(String uuid) {
41 this.uuid = uuid;
42 }
43 }