Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / execution / RefValue.java
diff --git a/org.argeo.slc.api/src/org/argeo/slc/execution/RefValue.java b/org.argeo.slc.api/src/org/argeo/slc/execution/RefValue.java
deleted file mode 100644 (file)
index 02be2a6..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-package org.argeo.slc.execution;
-
-/** Reference value to be used by an execution */
-public class RefValue extends AbstractExecutionValue {
-       private static final long serialVersionUID = -8951231456757181687L;
-       private String ref;
-       private String type;
-
-       public RefValue() {
-       }
-
-       public RefValue(String ref) {
-               super();
-               this.ref = ref;
-       }
-
-       public String getRef() {
-               return ref;
-       }
-
-       public void setRef(String ref) {
-               this.ref = ref;
-       }
-
-       public String getType() {
-               return type;
-       }
-
-       public void setType(String type) {
-               this.type = type;
-       }
-
-       @Override
-       public String toString() {
-               return "Ref Value [" + type + "=" + ref + "]";
-       }
-
-}