]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/RefValue.java
Implement ref spec
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / RefValue.java
index 516a15e3b301c4db9494ce39ba1346e6b9d07110..61abcb84940b9b374ad80e7053e7ea03a50e74ef 100644 (file)
@@ -1,22 +1,23 @@
 package org.argeo.slc.core.execution;
 
+
 public class RefValue extends AbstractExecutionValue {
-       private String label;
+       private String ref;
 
        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;
        }
 
 }