]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.autoui/src/main/java/org/argeo/slc/autoui/DetachedStepRequest.java
Move unit test.
[gpl/argeo-slc.git] / org.argeo.slc.autoui / src / main / java / org / argeo / slc / autoui / DetachedStepRequest.java
index 9c61afc83c34b6dc29d13789adea9cd11f3fe2e7..65fda8836011c043062ac2c3d3eeea4b53f87dc3 100644 (file)
@@ -1,9 +1,43 @@
 package org.argeo.slc.autoui;
 
+import java.io.Serializable;
 import java.util.Properties;
 
-public class DetachedStepRequest {
+public class DetachedStepRequest implements Serializable {
+       private String uuid;
        private Properties inputParameters;
        private String stepRef;
        private String path;
+
+       public Properties getInputParameters() {
+               return inputParameters;
+       }
+
+       public void setInputParameters(Properties inputParameters) {
+               this.inputParameters = inputParameters;
+       }
+
+       public String getStepRef() {
+               return stepRef;
+       }
+
+       public void setStepRef(String stepRef) {
+               this.stepRef = stepRef;
+       }
+
+       public String getPath() {
+               return path;
+       }
+
+       public void setPath(String path) {
+               this.path = path;
+       }
+
+       public String getUuid() {
+               return uuid;
+       }
+
+       public void setUuid(String uuid) {
+               this.uuid = uuid;
+       }
 }