1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.core.statement.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.XmlAttribute;
23 import javax.xml.bind.annotation.XmlElement;
24
25 import org.kuali.student.common.dto.Idable;
26
27
28
29
30 @XmlAccessorType(XmlAccessType.FIELD)
31 public class ReqCompFieldInfo implements Serializable, Idable {
32
33 private static final long serialVersionUID = 1L;
34
35 @XmlAttribute
36 private String id;
37
38 @XmlAttribute
39 private String type;
40
41 @XmlElement
42 private String value;
43
44
45
46
47 public String getId() {
48 return id;
49 }
50
51 public void setId(String id) {
52 this.id = id;
53 }
54
55 public String getType() {
56 return type;
57 }
58
59 public void setType(String type) {
60 this.type = type;
61 }
62
63
64
65
66 public String getValue() {
67 return value;
68 }
69
70 public void setValue(String value) {
71 this.value = value;
72 }
73
74 @Override
75 public String toString() {
76 return "ReqCompFieldInfo[id=" + id + ", value=" + value + "]";
77 }
78 }