]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/RefValue.java
Modular distributions
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / RefValue.java
index 61abcb84940b9b374ad80e7053e7ea03a50e74ef..e44b0d7ad2b6617b83210dbfe95cb05036f5226c 100644 (file)
@@ -1,8 +1,8 @@
 package org.argeo.slc.core.execution;
 
-
 public class RefValue extends AbstractExecutionValue {
        private String ref;
+       private String type;
 
        public RefValue() {
        }
@@ -20,4 +20,17 @@ public class RefValue extends AbstractExecutionValue {
                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 + "]";
+       }
+
 }