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