]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.simple/src/main/java/org/argeo/slc/core/execution/RefValue.java
Adapt for agents
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.simple / src / main / java / org / argeo / slc / core / execution / RefValue.java
1 package org.argeo.slc.core.execution;
2
3 public class RefValue extends AbstractExecutionValue {
4 private String label;
5
6 public RefValue() {
7 }
8
9 public RefValue(String label) {
10 super();
11 this.label = label;
12 }
13
14 public String getLabel() {
15 return label;
16 }
17
18 public void setLabel(String label) {
19 this.label = label;
20 }
21
22 }