X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=cms%2Forg.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValueChoice.java;fp=cms%2Forg.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValueChoice.java;h=c4c403e6e3a47dbce6dd31aa469a0b3fa4bdc9b2;hb=ecc22e604e47533c79de9cecdcdeacbc752cbff1;hp=0000000000000000000000000000000000000000;hpb=e07ded4632e53f8b8869763bc1f1f4091361e76e;p=gpl%2Fargeo-slc.git diff --git a/cms/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java b/cms/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java new file mode 100644 index 000000000..c4c403e6e --- /dev/null +++ b/cms/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java @@ -0,0 +1,35 @@ +package org.argeo.slc.execution; + +import java.io.Serializable; + +/** A choice of ref value to be shown to the end user. */ +public class RefValueChoice implements Serializable { + private static final long serialVersionUID = -1133645722307507774L; + private String name; + private String description; + + public RefValueChoice() { + } + + public RefValueChoice(String name, String description) { + this.name = name; + this.description = description; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + +}