Merge tag 'v2.3.15' into testing
[gpl/argeo-slc.git] / org.argeo.api.slc / src / org / argeo / api / slc / execution / RefValue.java
diff --git a/org.argeo.api.slc/src/org/argeo/api/slc/execution/RefValue.java b/org.argeo.api.slc/src/org/argeo/api/slc/execution/RefValue.java
new file mode 100644 (file)
index 0000000..69109ce
--- /dev/null
@@ -0,0 +1,38 @@
+package org.argeo.api.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 + "]";
+       }
+
+}