]> git.argeo.org Git - gpl/argeo-slc.git/blob - 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
1 package org.argeo.slc.core.execution;
2
3 public class RefValue extends AbstractExecutionValue {
4 private String ref;
5 private String type;
6
7 public RefValue() {
8 }
9
10 public RefValue(String ref) {
11 super();
12 this.ref = ref;
13 }
14
15 public String getRef() {
16 return ref;
17 }
18
19 public void setRef(String ref) {
20 this.ref = ref;
21 }
22
23 public String getType() {
24 return type;
25 }
26
27 public void setType(String type) {
28 this.type = type;
29 }
30
31 @Override
32 public String toString() {
33 return "Ref Value [" + type + "=" + ref + "]";
34 }
35
36 }