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