X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValue.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValue.java;h=0000000000000000000000000000000000000000;hb=d07cf3c7dfdeafa2b1efafe547b54d56a8b52ced;hp=02be2a6ba7cf9c51620c9f59fe30ace8cce4fc75;hpb=8596685647867307b862b8a89742b6a62ba75fcd;p=gpl%2Fargeo-slc.git 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 index 02be2a6ba..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/execution/RefValue.java +++ /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 + "]"; - } - -}