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) |
|
|
| 0% |
Uncovered Elements: 32 (32) |
Complexity: 16 |
Complexity Density: 1 |
|
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 |
|
|
|
|
| 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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
82 |
0
|
public String getResultUsageTypeKey() {... |
83 |
0
|
return resultUsageTypeKey; |
84 |
|
} |
85 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
86 |
0
|
public void setResultUsageTypeKey(String resultUsageTypeKey) {... |
87 |
0
|
this.resultUsageTypeKey = resultUsageTypeKey; |
88 |
|
} |
89 |
|
|
90 |
|
|
91 |
|
|
92 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
93 |
0
|
public String getResultComponentId() {... |
94 |
0
|
return resultComponentId; |
95 |
|
} |
96 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
97 |
0
|
public void setResultComponentId(String resultComponentId) {... |
98 |
0
|
this.resultComponentId = resultComponentId; |
99 |
|
} |
100 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
104 |
0
|
public Date getEffectiveDate() {... |
105 |
0
|
return effectiveDate; |
106 |
|
} |
107 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
108 |
0
|
public void setEffectiveDate(Date effectiveDate) {... |
109 |
0
|
this.effectiveDate = effectiveDate; |
110 |
|
} |
111 |
|
|
112 |
|
|
113 |
|
|
114 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
115 |
0
|
public Date getExpirationDate() {... |
116 |
0
|
return expirationDate; |
117 |
|
} |
118 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
119 |
0
|
public void setExpirationDate(Date expirationDate) {... |
120 |
0
|
this.expirationDate = expirationDate; |
121 |
|
} |
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
126 |
0
|
public MetaInfo getMetaInfo() {... |
127 |
0
|
return metaInfo; |
128 |
|
} |
129 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
130 |
0
|
public void setMetaInfo(MetaInfo metaInfo) {... |
131 |
0
|
this.metaInfo = metaInfo; |
132 |
|
} |
133 |
|
|
134 |
|
|
135 |
|
|
136 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
137 |
0
|
public String getState() {... |
138 |
0
|
return state; |
139 |
|
} |
140 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
141 |
0
|
public void setState(String state) {... |
142 |
0
|
this.state = state; |
143 |
|
} |
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
148 |
0
|
public String getId() {... |
149 |
0
|
return id; |
150 |
|
} |
151 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
152 |
0
|
public void setId(String id) {... |
153 |
0
|
this.id = id; |
154 |
|
} |
155 |
|
} |