]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/RefValue.java
Introduce JvmProcess task
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / RefValue.java
index 516a15e3b301c4db9494ce39ba1346e6b9d07110..e44b0d7ad2b6617b83210dbfe95cb05036f5226c 100644 (file)
@@ -1,22 +1,36 @@
 package org.argeo.slc.core.execution;
 
 public class RefValue extends AbstractExecutionValue {
-       private String label;
+       private String ref;
+       private String type;
 
        public RefValue() {
        }
 
-       public RefValue(String label) {
+       public RefValue(String ref) {
                super();
-               this.label = label;
+               this.ref = ref;
        }
 
-       public String getLabel() {
-               return label;
+       public String getRef() {
+               return ref;
        }
 
-       public void setLabel(String label) {
-               this.label = label;
+       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 + "]";
        }
 
 }