]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/execution/RefValue.java
Upgrade all classpaths to Java 11
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / execution / RefValue.java
1 package org.argeo.slc.execution;
2
3 /** Reference value to be used by an execution */
4 public class RefValue extends AbstractExecutionValue {
5 private static final long serialVersionUID = -8951231456757181687L;
6 private String ref;
7 private String type;
8
9 public RefValue() {
10 }
11
12 public RefValue(String ref) {
13 super();
14 this.ref = ref;
15 }
16
17 public String getRef() {
18 return ref;
19 }
20
21 public void setRef(String ref) {
22 this.ref = ref;
23 }
24
25 public String getType() {
26 return type;
27 }
28
29 public void setType(String type) {
30 this.type = type;
31 }
32
33 @Override
34 public String toString() {
35 return "Ref Value [" + type + "=" + ref + "]";
36 }
37
38 }