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