]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java
Upgrade all classpaths to Java 11
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / execution / RefValueChoice.java
1 package org.argeo.slc.execution;
2
3 import java.io.Serializable;
4
5 /** A choice of ref value to be shown to the end user. */
6 public class RefValueChoice implements Serializable {
7 private static final long serialVersionUID = -1133645722307507774L;
8 private String name;
9 private String description;
10
11 public RefValueChoice() {
12 }
13
14 public RefValueChoice(String name, String description) {
15 this.name = name;
16 this.description = description;
17 }
18
19 public String getName() {
20 return name;
21 }
22
23 public void setName(String name) {
24 this.name = name;
25 }
26
27 public String getDescription() {
28 return description;
29 }
30
31 public void setDescription(String description) {
32 this.description = description;
33 }
34
35 }