1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.contract.model; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.Date; |
20 |
|
import java.util.LinkedHashMap; |
21 |
|
import java.util.Map; |
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
@author |
26 |
|
|
|
|
| 0% |
Uncovered Elements: 54 (54) |
Complexity: 26 |
Complexity Density: 0.96 |
|
27 |
|
public class State implements Serializable { |
28 |
|
|
29 |
|
public static final String DEFAULT = "(default)"; |
30 |
|
public static final String GROUPING = "Grouping"; |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public State() {... |
33 |
0
|
super(); |
34 |
|
} |
35 |
|
private String xmlTypeState; |
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
|
@return |
41 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
42 |
0
|
public String getXmlTypeState() {... |
43 |
0
|
return xmlTypeState; |
44 |
|
} |
45 |
|
|
46 |
|
|
47 |
|
|
48 |
|
|
49 |
|
@param |
50 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
51 |
0
|
public void setXmlTypeState(String xmlTypeState) {... |
52 |
0
|
this.xmlTypeState = xmlTypeState; |
53 |
|
} |
54 |
|
private String xmlObject; |
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
@return |
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public String getXmlObject() {... |
62 |
0
|
return xmlObject; |
63 |
|
} |
64 |
|
|
65 |
|
|
66 |
|
|
67 |
|
|
68 |
|
@param |
69 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
70 |
0
|
public void setXmlObject(String xmlObject) {... |
71 |
0
|
this.xmlObject = xmlObject; |
72 |
|
} |
73 |
|
private String xmlObjectDesc; |
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
@return |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
public String getXmlObjectDesc() {... |
81 |
0
|
return xmlObjectDesc; |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
@param |
88 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
89 |
0
|
public void setXmlObjectDesc(String xmlObjectDesc) {... |
90 |
0
|
this.xmlObjectDesc = xmlObjectDesc; |
91 |
|
} |
92 |
|
private boolean include; |
93 |
|
|
94 |
|
|
95 |
|
|
96 |
|
|
97 |
|
@return |
98 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
0
|
public boolean getInclude() {... |
100 |
0
|
return include; |
101 |
|
} |
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
|
106 |
|
@param |
107 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
108 |
0
|
public void setInclude(boolean include) {... |
109 |
0
|
this.include = include; |
110 |
|
} |
111 |
|
private String name; |
112 |
|
|
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
@return |
117 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
118 |
0
|
public String getName() {... |
119 |
0
|
return name; |
120 |
|
} |
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
@param |
126 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
127 |
0
|
public void setName(String name) {... |
128 |
0
|
this.name = name; |
129 |
|
} |
130 |
|
private String desc; |
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
135 |
|
@return |
136 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
137 |
0
|
public String getDesc() {... |
138 |
0
|
return desc; |
139 |
|
} |
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
|
144 |
|
@param |
145 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
146 |
0
|
public void setDesc(String desc) {... |
147 |
0
|
this.desc = desc; |
148 |
|
} |
149 |
|
private String status; |
150 |
|
|
151 |
|
|
152 |
|
|
153 |
|
|
154 |
|
@return |
155 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
156 |
0
|
public String getStatus() {... |
157 |
0
|
return status; |
158 |
|
} |
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
@param |
164 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
165 |
0
|
public void setStatus(String status) {... |
166 |
0
|
this.status = status; |
167 |
|
} |
168 |
|
private String comments; |
169 |
|
|
170 |
|
|
171 |
|
|
172 |
|
|
173 |
|
@return |
174 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
175 |
0
|
public String getComments() {... |
176 |
0
|
return comments; |
177 |
|
} |
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
|
182 |
|
@param |
183 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
184 |
0
|
public void setComments(String comments) {... |
185 |
0
|
this.comments = comments; |
186 |
|
} |
187 |
|
private Map<String, String> attributes; |
188 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
189 |
0
|
public Map<String, String> getAttributes() {... |
190 |
0
|
if (attributes == null) { |
191 |
0
|
attributes = new LinkedHashMap(); |
192 |
|
} |
193 |
0
|
return attributes; |
194 |
|
} |
195 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
196 |
0
|
public void setAttributes(Map<String, String> attributes) {... |
197 |
0
|
this.attributes = attributes; |
198 |
|
} |
199 |
|
private Date effectiveDate; |
200 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
201 |
0
|
public Date getEffectiveDate() {... |
202 |
0
|
return effectiveDate; |
203 |
|
} |
204 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
205 |
0
|
public void setEffectiveDate(Date effectiveDate) {... |
206 |
0
|
this.effectiveDate = effectiveDate; |
207 |
|
} |
208 |
|
private Date expirationDate; |
209 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
210 |
0
|
public Date getExpirationDate() {... |
211 |
0
|
return expirationDate; |
212 |
|
} |
213 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
214 |
0
|
public void setExpirationDate(Date expirationDate) {... |
215 |
0
|
this.expirationDate = expirationDate; |
216 |
|
} |
217 |
|
private String stateKey; |
218 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
219 |
0
|
public String getStateKey() {... |
220 |
0
|
return stateKey; |
221 |
|
} |
222 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
223 |
0
|
public void setStateKey(String stateKey) {... |
224 |
0
|
this.stateKey = stateKey; |
225 |
|
} |
226 |
|
} |