X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValueChoice.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Fexecution%2FRefValueChoice.java;h=0000000000000000000000000000000000000000;hb=09c9e5093fe1353aaac344ac8a8caf2e1dcc0778;hp=c4c403e6e3a47dbce6dd31aa469a0b3fa4bdc9b2;hpb=8ff996a3380166be2ae9cf0ef0fa22c58e11746a;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java b/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java deleted file mode 100644 index c4c403e6e..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/execution/RefValueChoice.java +++ /dev/null @@ -1,35 +0,0 @@ -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; - } - -}