1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.lum.lu.dto;
17
18 import java.io.Serializable;
19 import java.util.Date;
20
21 import javax.xml.bind.annotation.XmlAccessType;
22 import javax.xml.bind.annotation.XmlAccessorType;
23 import javax.xml.bind.annotation.XmlAttribute;
24 import javax.xml.bind.annotation.XmlElement;
25
26 import org.kuali.student.core.dto.Idable;
27 import org.kuali.student.core.dto.MetaInfo;
28 import org.kuali.student.core.dto.RichTextInfo;
29
30
31
32
33
34
35
36
37
38
39 @XmlAccessorType(XmlAccessType.FIELD)
40 public class ResultOptionInfo implements Serializable, Idable {
41
42 private static final long serialVersionUID = 1L;
43
44 @XmlElement
45 private RichTextInfo desc;
46
47 @XmlElement
48 private String resultUsageTypeKey;
49
50 @XmlElement
51 private String resultComponentId;
52
53 @XmlElement
54 private Date effectiveDate;
55
56 @XmlElement
57 private Date expirationDate;
58
59 @XmlElement
60 private MetaInfo metaInfo;
61
62 @XmlAttribute
63 private String state;
64
65 @XmlAttribute
66 private String id;
67
68
69
70
71 public RichTextInfo getDesc() {
72 return desc;
73 }
74
75 public void setDesc(RichTextInfo desc) {
76 this.desc = desc;
77 }
78
79
80
81
82 public String getResultUsageTypeKey() {
83 return resultUsageTypeKey;
84 }
85
86 public void setResultUsageTypeKey(String resultUsageTypeKey) {
87 this.resultUsageTypeKey = resultUsageTypeKey;
88 }
89
90
91
92
93 public String getResultComponentId() {
94 return resultComponentId;
95 }
96
97 public void setResultComponentId(String resultComponentId) {
98 this.resultComponentId = resultComponentId;
99 }
100
101
102
103
104 public Date getEffectiveDate() {
105 return effectiveDate;
106 }
107
108 public void setEffectiveDate(Date effectiveDate) {
109 this.effectiveDate = effectiveDate;
110 }
111
112
113
114
115 public Date getExpirationDate() {
116 return expirationDate;
117 }
118
119 public void setExpirationDate(Date expirationDate) {
120 this.expirationDate = expirationDate;
121 }
122
123
124
125
126 public MetaInfo getMetaInfo() {
127 return metaInfo;
128 }
129
130 public void setMetaInfo(MetaInfo metaInfo) {
131 this.metaInfo = metaInfo;
132 }
133
134
135
136
137 public String getState() {
138 return state;
139 }
140
141 public void setState(String state) {
142 this.state = state;
143 }
144
145
146
147
148 public String getId() {
149 return id;
150 }
151
152 public void setId(String id) {
153 this.id = id;
154 }
155 }