1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.core.enumerationmanagement.dto;
17
18 import java.io.Serializable;
19
20 import javax.xml.bind.annotation.XmlAccessType;
21 import javax.xml.bind.annotation.XmlAccessorType;
22 import javax.xml.bind.annotation.XmlElement;
23
24
25
26
27
28 @XmlAccessorType(XmlAccessType.FIELD)
29 public class EnumContextValueInfo implements Serializable {
30
31 private static final long serialVersionUID = 1L;
32
33 @XmlElement
34 private String key;
35
36 @XmlElement
37 private String value;
38
39
40
41
42 public String getKey() {
43 return key;
44 }
45
46 public void setKey(String key) {
47 this.key = key;
48 }
49
50
51
52
53 public String getValue() {
54 return value;
55 }
56
57 public void setValue(String value) {
58 this.value = value;
59 }
60 }