]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java
Remove moved projects
[gpl/argeo-slc.git] / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedRequest.java
diff --git a/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java b/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java
deleted file mode 100644 (file)
index 99427bf..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-package org.argeo.slc.detached;
-
-import java.util.Properties;
-
-public class DetachedRequest implements DetachedCommunication {
-       static final long serialVersionUID = 1l;
-
-       private String uuid;
-       private Properties properties = new Properties();
-       private String ref;
-       private String path = "";
-
-       public DetachedRequest() {
-
-       }
-
-       public DetachedRequest(String uuid) {
-               this.uuid = uuid;
-       }
-
-       public Properties getProperties() {
-               return properties;
-       }
-
-       public void setProperties(Properties inputParameters) {
-               this.properties = inputParameters;
-       }
-
-       public String getRef() {
-               return ref;
-       }
-
-       public void setRef(String stepRef) {
-               this.ref = 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;
-       }
-}