]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.detached/src/main/java/org/argeo/slc/detached/DetachedRequest.java
Remove deprecated APIs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / src / main / java / org / argeo / slc / detached / DetachedRequest.java
index cb7f091316c75c60ae0652598dc07ea3b02ad80a..8b296d42662b58eef57b4d0ccc2faff3f4bb8f18 100644 (file)
@@ -24,7 +24,6 @@ public class DetachedRequest implements DetachedCommunication {
        private String uuid;
        private Properties properties = new Properties();
        private String ref;
-       private String path = "";
 
        private Object cachedObject = null;
 
@@ -57,15 +56,6 @@ public class DetachedRequest implements DetachedCommunication {
                this.ref = stepRef;
        }
 
-       /** A path identifying the request within its source context. */
-       public String getPath() {
-               return path;
-       }
-
-       public void setPath(String path) {
-               this.path = path;
-       }
-
        /** The unique identifier of this request. */
        public String getUuid() {
                return uuid;
@@ -80,7 +70,6 @@ public class DetachedRequest implements DetachedCommunication {
                buf.append(ref);
                buf.append(" #").append(uuid);
                buf.append(" cachedObject=").append((cachedObject != null));
-               buf.append(" path=").append(path);
                buf.append(" properties=").append(properties);
                return buf.toString();
        }