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.*; |
20 |
|
import org.kuali.student.core.versionmanagement.dto.VersionInfo; |
21 |
|
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
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 javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
28 |
|
import java.io.Serializable; |
29 |
|
import java.util.*; |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 0% |
Uncovered Elements: 170 (170) |
Complexity: 77 |
Complexity Density: 0.91 |
|
36 |
|
public class CluInfo implements Serializable, Idable, HasTypeState, HasAttributes { |
37 |
|
|
38 |
|
private static final long serialVersionUID = 1L; |
39 |
|
|
40 |
|
@XmlElement |
41 |
|
private CluIdentifierInfo officialIdentifier; |
42 |
|
|
43 |
|
@XmlElement |
44 |
|
private List<CluIdentifierInfo> alternateIdentifiers; |
45 |
|
|
46 |
|
@XmlElement |
47 |
|
private String studySubjectArea; |
48 |
|
|
49 |
|
@XmlElement |
50 |
|
private RichTextInfo descr; |
51 |
|
|
52 |
|
@XmlElement |
53 |
|
private List<String> campusLocations; |
54 |
|
|
55 |
|
@XmlElement |
56 |
|
private List<AccreditationInfo> accreditations; |
57 |
|
|
58 |
|
@XmlElement |
59 |
|
private List<AdminOrgInfo> adminOrgs; |
60 |
|
|
61 |
|
@XmlElement |
62 |
|
private CluInstructorInfo primaryInstructor; |
63 |
|
|
64 |
|
@XmlElement |
65 |
|
private List<CluInstructorInfo> instructors; |
66 |
|
|
67 |
|
@XmlElement |
68 |
|
private String expectedFirstAtp; |
69 |
|
|
70 |
|
@XmlElement |
71 |
|
private String lastAtp; |
72 |
|
|
73 |
|
@XmlElement |
74 |
|
private String lastAdmitAtp; |
75 |
|
|
76 |
|
@XmlElement |
77 |
|
private Date effectiveDate; |
78 |
|
|
79 |
|
@XmlElement |
80 |
|
private Date expirationDate; |
81 |
|
|
82 |
|
@XmlElement |
83 |
|
private AmountInfo intensity; |
84 |
|
|
85 |
|
@XmlElement |
86 |
|
private TimeAmountInfo stdDuration; |
87 |
|
|
88 |
|
@XmlElement |
89 |
|
private boolean canCreateLui; |
90 |
|
|
91 |
|
@XmlElement |
92 |
|
private String referenceURL; |
93 |
|
|
94 |
|
@XmlElement |
95 |
|
private List<LuCodeInfo> luCodes; |
96 |
|
|
97 |
|
@XmlElement |
98 |
|
private String nextReviewPeriod; |
99 |
|
|
100 |
|
@XmlElement |
101 |
|
private boolean isEnrollable; |
102 |
|
|
103 |
|
@XmlElement |
104 |
|
private List<String> offeredAtpTypes; |
105 |
|
|
106 |
|
@XmlElement |
107 |
|
private boolean hasEarlyDropDeadline; |
108 |
|
|
109 |
|
@XmlElement |
110 |
|
private int defaultEnrollmentEstimate; |
111 |
|
|
112 |
|
@XmlElement |
113 |
|
private int defaultMaximumEnrollment; |
114 |
|
|
115 |
|
@XmlElement |
116 |
|
private boolean isHazardousForDisabledStudents; |
117 |
|
|
118 |
|
@XmlElement |
119 |
|
private CluFeeInfo feeInfo; |
120 |
|
|
121 |
|
@XmlElement |
122 |
|
private CluAccountingInfo accountingInfo; |
123 |
|
|
124 |
|
@XmlElement |
125 |
|
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
126 |
|
private Map<String, String> attributes; |
127 |
|
|
128 |
|
@XmlElement |
129 |
|
private MetaInfo metaInfo; |
130 |
|
|
131 |
|
@XmlElement |
132 |
|
private VersionInfo versionInfo; |
133 |
|
|
134 |
|
@XmlAttribute |
135 |
|
private String type; |
136 |
|
|
137 |
|
@XmlAttribute |
138 |
|
private String state; |
139 |
|
|
140 |
|
@XmlAttribute |
141 |
|
private String id; |
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
|
|
148 |
|
|
149 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
150 |
0
|
public CluIdentifierInfo getOfficialIdentifier() {... |
151 |
0
|
return officialIdentifier; |
152 |
|
} |
153 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
154 |
0
|
public void setOfficialIdentifier(CluIdentifierInfo officialIdentifier) {... |
155 |
0
|
this.officialIdentifier = officialIdentifier; |
156 |
|
} |
157 |
|
|
158 |
|
|
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
164 |
0
|
public List<CluIdentifierInfo> getAlternateIdentifiers() {... |
165 |
0
|
if (alternateIdentifiers == null) { |
166 |
0
|
alternateIdentifiers = new ArrayList<CluIdentifierInfo>(); |
167 |
|
} |
168 |
|
|
169 |
0
|
return alternateIdentifiers; |
170 |
|
} |
171 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
172 |
0
|
public void setAlternateIdentifiers(List<CluIdentifierInfo> alternateIdentifiers) {... |
173 |
0
|
this.alternateIdentifiers = alternateIdentifiers; |
174 |
|
} |
175 |
|
|
176 |
|
|
177 |
|
|
178 |
|
|
179 |
|
|
180 |
|
|
181 |
|
|
182 |
|
|
183 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
184 |
0
|
public String getStudySubjectArea() {... |
185 |
0
|
return studySubjectArea; |
186 |
|
} |
187 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
188 |
0
|
public void setStudySubjectArea(String studySubjectArea) {... |
189 |
0
|
this.studySubjectArea = studySubjectArea; |
190 |
|
} |
191 |
|
|
192 |
|
|
193 |
|
|
194 |
|
|
195 |
|
|
196 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
197 |
0
|
public RichTextInfo getDescr() {... |
198 |
0
|
return descr; |
199 |
|
} |
200 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
201 |
0
|
public void setDescr(RichTextInfo descr) {... |
202 |
0
|
this.descr = descr; |
203 |
|
} |
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
210 |
0
|
public List<AccreditationInfo> getAccreditations() {... |
211 |
0
|
if (accreditations == null) { |
212 |
0
|
accreditations = new ArrayList<AccreditationInfo>(); |
213 |
|
} |
214 |
|
|
215 |
0
|
return accreditations; |
216 |
|
} |
217 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
218 |
0
|
public void setAccreditations(List<AccreditationInfo> accreditations) {... |
219 |
0
|
this.accreditations = accreditations; |
220 |
|
} |
221 |
|
|
222 |
|
|
223 |
|
|
224 |
|
|
225 |
|
|
226 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
227 |
0
|
public List<String> getCampusLocations() {... |
228 |
0
|
if (campusLocations == null) { |
229 |
0
|
campusLocations = new ArrayList<String>(); |
230 |
|
} |
231 |
0
|
return campusLocations; |
232 |
|
} |
233 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
234 |
0
|
public void setCampusLocations(List<String> campusLocations) {... |
235 |
0
|
this.campusLocations = campusLocations; |
236 |
|
} |
237 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
238 |
0
|
public List<AdminOrgInfo> getAdminOrgs() {... |
239 |
0
|
if (adminOrgs == null) { |
240 |
0
|
adminOrgs = new ArrayList<AdminOrgInfo>(); |
241 |
|
} |
242 |
|
|
243 |
0
|
return adminOrgs; |
244 |
|
} |
245 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
246 |
0
|
public void setAdminOrgs(List<AdminOrgInfo> adminOrgs) {... |
247 |
0
|
this.adminOrgs = adminOrgs; |
248 |
|
} |
249 |
|
|
250 |
|
|
251 |
|
|
252 |
|
|
253 |
|
|
254 |
|
|
255 |
|
|
256 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
257 |
0
|
public CluInstructorInfo getPrimaryInstructor() {... |
258 |
0
|
return primaryInstructor; |
259 |
|
} |
260 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
261 |
0
|
public void setPrimaryInstructor(CluInstructorInfo primaryInstructor) {... |
262 |
0
|
this.primaryInstructor = primaryInstructor; |
263 |
|
} |
264 |
|
|
265 |
|
|
266 |
|
|
267 |
|
|
268 |
|
|
269 |
|
|
270 |
|
|
271 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
272 |
0
|
public List<CluInstructorInfo> getInstructors() {... |
273 |
0
|
if (instructors == null) { |
274 |
0
|
instructors = new ArrayList<CluInstructorInfo>(); |
275 |
|
} |
276 |
|
|
277 |
0
|
return instructors; |
278 |
|
} |
279 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
280 |
0
|
public void setInstructors(List<CluInstructorInfo> instructors) {... |
281 |
0
|
this.instructors = instructors; |
282 |
|
} |
283 |
|
|
284 |
|
|
285 |
|
|
286 |
|
|
287 |
|
|
288 |
|
|
289 |
|
|
290 |
|
|
291 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
292 |
0
|
public Date getEffectiveDate() {... |
293 |
0
|
return effectiveDate; |
294 |
|
} |
295 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
296 |
0
|
public void setEffectiveDate(Date effectiveDate) {... |
297 |
0
|
this.effectiveDate = effectiveDate; |
298 |
|
} |
299 |
|
|
300 |
|
|
301 |
|
|
302 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
|
309 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
310 |
0
|
public Date getExpirationDate() {... |
311 |
0
|
return expirationDate; |
312 |
|
} |
313 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
314 |
0
|
public void setExpirationDate(Date expirationDate) {... |
315 |
0
|
this.expirationDate = expirationDate; |
316 |
|
} |
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
324 |
0
|
public AmountInfo getIntensity() {... |
325 |
0
|
return intensity; |
326 |
|
} |
327 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
328 |
0
|
public void setIntensity(AmountInfo intensity) {... |
329 |
0
|
this.intensity = intensity; |
330 |
|
} |
331 |
|
|
332 |
|
|
333 |
|
|
334 |
|
|
335 |
|
|
336 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
337 |
0
|
public TimeAmountInfo getStdDuration() {... |
338 |
0
|
return stdDuration; |
339 |
|
} |
340 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
341 |
0
|
public void setStdDuration(TimeAmountInfo stdDuration) {... |
342 |
0
|
this.stdDuration = stdDuration; |
343 |
|
} |
344 |
|
|
345 |
|
|
346 |
|
|
347 |
|
|
348 |
|
|
349 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
350 |
0
|
public boolean isCanCreateLui() {... |
351 |
0
|
return canCreateLui; |
352 |
|
} |
353 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
354 |
0
|
public void setCanCreateLui(boolean canCreateLui) {... |
355 |
0
|
this.canCreateLui = canCreateLui; |
356 |
|
} |
357 |
|
|
358 |
|
|
359 |
|
|
360 |
|
|
361 |
|
|
362 |
|
|
363 |
|
|
364 |
|
|
365 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
366 |
0
|
public String getReferenceURL() {... |
367 |
0
|
return referenceURL; |
368 |
|
} |
369 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
370 |
0
|
public void setReferenceURL(String referenceURL) {... |
371 |
0
|
this.referenceURL = referenceURL; |
372 |
|
} |
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
381 |
0
|
public List<LuCodeInfo> getLuCodes() {... |
382 |
0
|
if (luCodes == null) { |
383 |
0
|
luCodes = new ArrayList<LuCodeInfo>(); |
384 |
|
} |
385 |
|
|
386 |
0
|
return luCodes; |
387 |
|
} |
388 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
389 |
0
|
public void setLuCodes(List<LuCodeInfo> luCodes) {... |
390 |
0
|
this.luCodes = luCodes; |
391 |
|
} |
392 |
|
|
393 |
|
|
394 |
|
|
395 |
|
|
396 |
|
|
397 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
398 |
0
|
public String getNextReviewPeriod() {... |
399 |
0
|
return nextReviewPeriod; |
400 |
|
} |
401 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
402 |
0
|
public void setNextReviewPeriod(String nextReviewPeriod) {... |
403 |
0
|
this.nextReviewPeriod = nextReviewPeriod; |
404 |
|
} |
405 |
|
|
406 |
|
|
407 |
|
|
408 |
|
|
409 |
|
|
410 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
411 |
0
|
public boolean isEnrollable() {... |
412 |
0
|
return isEnrollable; |
413 |
|
} |
414 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
415 |
0
|
public void setEnrollable(boolean isEnrollable) {... |
416 |
0
|
this.isEnrollable = isEnrollable; |
417 |
|
} |
418 |
|
|
419 |
|
|
420 |
|
|
421 |
|
|
422 |
|
|
423 |
|
|
424 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
425 |
0
|
public List<String> getOfferedAtpTypes() {... |
426 |
0
|
if (offeredAtpTypes == null) { |
427 |
0
|
offeredAtpTypes = new ArrayList<String>(); |
428 |
|
} |
429 |
|
|
430 |
0
|
return offeredAtpTypes; |
431 |
|
} |
432 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
433 |
0
|
public void setOfferedAtpTypes(List<String> offeredAtpTypes) {... |
434 |
0
|
this.offeredAtpTypes = offeredAtpTypes; |
435 |
|
} |
436 |
|
|
437 |
|
|
438 |
|
|
439 |
|
|
440 |
|
|
441 |
|
|
442 |
|
|
443 |
|
|
444 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
445 |
0
|
public boolean isHasEarlyDropDeadline() {... |
446 |
0
|
return hasEarlyDropDeadline; |
447 |
|
} |
448 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
449 |
0
|
public void setHasEarlyDropDeadline(boolean hasEarlyDropDeadline) {... |
450 |
0
|
this.hasEarlyDropDeadline = hasEarlyDropDeadline; |
451 |
|
} |
452 |
|
|
453 |
|
|
454 |
|
|
455 |
|
|
456 |
|
|
457 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
458 |
0
|
public int getDefaultEnrollmentEstimate() {... |
459 |
0
|
return defaultEnrollmentEstimate; |
460 |
|
} |
461 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
462 |
0
|
public void setDefaultEnrollmentEstimate(int defaultEnrollmentEstimate) {... |
463 |
0
|
this.defaultEnrollmentEstimate = defaultEnrollmentEstimate; |
464 |
|
} |
465 |
|
|
466 |
|
|
467 |
|
|
468 |
|
|
469 |
|
|
470 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
471 |
0
|
public int getDefaultMaximumEnrollment() {... |
472 |
0
|
return defaultMaximumEnrollment; |
473 |
|
} |
474 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
475 |
0
|
public void setDefaultMaximumEnrollment(int defaultMaximumEnrollment) {... |
476 |
0
|
this.defaultMaximumEnrollment = defaultMaximumEnrollment; |
477 |
|
} |
478 |
|
|
479 |
|
|
480 |
|
|
481 |
|
|
482 |
|
|
483 |
|
|
484 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
485 |
0
|
public boolean isHazardousForDisabledStudents() {... |
486 |
0
|
return isHazardousForDisabledStudents; |
487 |
|
} |
488 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
489 |
0
|
public void setHazardousForDisabledStudents(boolean isHazardousForDisabledStudents) {... |
490 |
0
|
this.isHazardousForDisabledStudents = isHazardousForDisabledStudents; |
491 |
|
} |
492 |
|
|
493 |
|
|
494 |
|
|
495 |
|
|
496 |
|
|
497 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
498 |
0
|
public CluFeeInfo getFeeInfo() {... |
499 |
0
|
return feeInfo; |
500 |
|
} |
501 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
502 |
0
|
public void setFeeInfo(CluFeeInfo feeInfo) {... |
503 |
0
|
this.feeInfo = feeInfo; |
504 |
|
} |
505 |
|
|
506 |
|
|
507 |
|
|
508 |
|
|
509 |
|
|
510 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
511 |
0
|
public CluAccountingInfo getAccountingInfo() {... |
512 |
0
|
return accountingInfo; |
513 |
|
} |
514 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
515 |
0
|
public void setAccountingInfo(CluAccountingInfo accountingInfo) {... |
516 |
0
|
this.accountingInfo = accountingInfo; |
517 |
|
} |
518 |
|
|
519 |
|
|
520 |
|
|
521 |
|
|
522 |
|
|
523 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
524 |
0
|
public Map<String, String> getAttributes() {... |
525 |
0
|
if (attributes == null) { |
526 |
0
|
attributes = new HashMap<String, String>(); |
527 |
|
} |
528 |
|
|
529 |
0
|
return attributes; |
530 |
|
} |
531 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
532 |
0
|
public void setAttributes(Map<String, String> attributes) {... |
533 |
0
|
this.attributes = attributes; |
534 |
|
} |
535 |
|
|
536 |
|
|
537 |
|
|
538 |
|
|
539 |
|
|
540 |
|
|
541 |
|
|
542 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
543 |
0
|
public MetaInfo getMetaInfo() {... |
544 |
0
|
return metaInfo; |
545 |
|
} |
546 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
547 |
0
|
public void setMetaInfo(MetaInfo metaInfo) {... |
548 |
0
|
this.metaInfo = metaInfo; |
549 |
|
} |
550 |
|
|
551 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
552 |
0
|
public VersionInfo getVersionInfo() {... |
553 |
0
|
return versionInfo; |
554 |
|
} |
555 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
556 |
0
|
public void setVersionInfo(VersionInfo versionInfo) {... |
557 |
0
|
this.versionInfo = versionInfo; |
558 |
|
} |
559 |
|
|
560 |
|
|
561 |
|
|
562 |
|
|
563 |
|
|
564 |
|
|
565 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
566 |
0
|
public String getType() {... |
567 |
0
|
return type; |
568 |
|
} |
569 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
570 |
0
|
public void setType(String type) {... |
571 |
0
|
this.type = type; |
572 |
|
} |
573 |
|
|
574 |
|
|
575 |
|
|
576 |
|
|
577 |
|
|
578 |
|
|
579 |
|
|
580 |
|
|
581 |
|
|
582 |
|
|
583 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
584 |
0
|
public String getState() {... |
585 |
0
|
return state; |
586 |
|
} |
587 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
588 |
0
|
public void setState(String state) {... |
589 |
0
|
this.state = state; |
590 |
|
} |
591 |
|
|
592 |
|
|
593 |
|
|
594 |
|
|
595 |
|
|
596 |
|
|
597 |
|
|
598 |
|
|
599 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
600 |
0
|
public String getId() {... |
601 |
0
|
return id; |
602 |
|
} |
603 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
604 |
0
|
public void setId(String id) {... |
605 |
0
|
this.id = id; |
606 |
|
} |
607 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
608 |
0
|
public String getExpectedFirstAtp() {... |
609 |
0
|
return expectedFirstAtp; |
610 |
|
} |
611 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
612 |
0
|
public void setExpectedFirstAtp(String expectedFirstAtp) {... |
613 |
0
|
this.expectedFirstAtp = expectedFirstAtp; |
614 |
|
} |
615 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
616 |
0
|
public String getLastAtp() {... |
617 |
0
|
return lastAtp; |
618 |
|
} |
619 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
620 |
0
|
public void setLastAtp(String lastAtp) {... |
621 |
0
|
this.lastAtp = lastAtp; |
622 |
|
} |
623 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
624 |
0
|
public String getLastAdmitAtp() {... |
625 |
0
|
return lastAdmitAtp; |
626 |
|
} |
627 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
628 |
0
|
public void setLastAdmitAtp(String lastAdmitAtp) {... |
629 |
0
|
this.lastAdmitAtp = lastAdmitAtp; |
630 |
|
} |
631 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
632 |
0
|
@Override... |
633 |
|
public String toString() { |
634 |
0
|
return "CluInfo[id=" + id + ", type=" + type + "]"; |
635 |
|
} |
636 |
|
} |