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