| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.lum.program.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.HasAttributes; |
| 32 |
|
import org.kuali.student.core.dto.HasTypeState; |
| 33 |
|
import org.kuali.student.core.dto.Idable; |
| 34 |
|
import org.kuali.student.core.dto.MetaInfo; |
| 35 |
|
import org.kuali.student.core.dto.RichTextInfo; |
| 36 |
|
import org.kuali.student.core.dto.TimeAmountInfo; |
| 37 |
|
import org.kuali.student.core.versionmanagement.dto.VersionInfo; |
| 38 |
|
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
| 39 |
|
import org.kuali.student.lum.course.dto.LoDisplayInfo; |
| 40 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramAtpAssembly; |
| 41 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramCodeAssembly; |
| 42 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramCommonAssembly; |
| 43 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramFullOrgAssembly; |
| 44 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramIdentifierAssembly; |
| 45 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramPublicationAssembly; |
| 46 |
|
import org.kuali.student.lum.program.dto.assembly.ProgramRequirementAssembly; |
| 47 |
|
|
| 48 |
|
|
| 49 |
|
|
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
| 57 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
|
| 97.7% |
Uncovered Elements: 4 (176) |
Complexity: 84 |
Complexity Density: 0.95 |
|
| 58 |
|
public class ProgramVariationInfo implements Serializable, Idable, HasTypeState, HasAttributes , ProgramCommonAssembly, |
| 59 |
|
ProgramIdentifierAssembly, ProgramFullOrgAssembly, ProgramAtpAssembly, |
| 60 |
|
ProgramCodeAssembly, ProgramPublicationAssembly, ProgramRequirementAssembly { |
| 61 |
|
|
| 62 |
|
private static final long serialVersionUID = 1L; |
| 63 |
|
|
| 64 |
|
@XmlElement |
| 65 |
|
private String intensity; |
| 66 |
|
|
| 67 |
|
@XmlElement |
| 68 |
|
private String referenceURL; |
| 69 |
|
|
| 70 |
|
@XmlElement |
| 71 |
|
private String code; |
| 72 |
|
|
| 73 |
|
@XmlElement |
| 74 |
|
private String cip2000Code; |
| 75 |
|
|
| 76 |
|
@XmlElement |
| 77 |
|
private String cip2010Code; |
| 78 |
|
|
| 79 |
|
@XmlElement |
| 80 |
|
private String hegisCode; |
| 81 |
|
|
| 82 |
|
@XmlElement |
| 83 |
|
private String universityClassification; |
| 84 |
|
|
| 85 |
|
@XmlElement |
| 86 |
|
private String selectiveEnrollmentCode; |
| 87 |
|
|
| 88 |
|
@XmlElement |
| 89 |
|
private List<String> resultOptions; |
| 90 |
|
|
| 91 |
|
@XmlElement |
| 92 |
|
private TimeAmountInfo stdDuration; |
| 93 |
|
|
| 94 |
|
@XmlElement |
| 95 |
|
private String startTerm; |
| 96 |
|
|
| 97 |
|
@XmlElement |
| 98 |
|
private String endTerm; |
| 99 |
|
|
| 100 |
|
@XmlElement |
| 101 |
|
private String endProgramEntryTerm; |
| 102 |
|
|
| 103 |
|
@XmlElement |
| 104 |
|
private Date effectiveDate; |
| 105 |
|
|
| 106 |
|
@XmlElement |
| 107 |
|
private String shortTitle; |
| 108 |
|
|
| 109 |
|
@XmlElement |
| 110 |
|
private String longTitle; |
| 111 |
|
|
| 112 |
|
@XmlElement |
| 113 |
|
private String transcriptTitle; |
| 114 |
|
|
| 115 |
|
@XmlElement |
| 116 |
|
private String diplomaTitle; |
| 117 |
|
|
| 118 |
|
@XmlElement |
| 119 |
|
private RichTextInfo descr; |
| 120 |
|
|
| 121 |
|
@XmlElement |
| 122 |
|
private RichTextInfo catalogDescr; |
| 123 |
|
|
| 124 |
|
@XmlElement |
| 125 |
|
private List<String> catalogPublicationTargets; |
| 126 |
|
|
| 127 |
|
@XmlElement |
| 128 |
|
private List<LoDisplayInfo> learningObjectives; |
| 129 |
|
|
| 130 |
|
@XmlElement |
| 131 |
|
private List<String> campusLocations; |
| 132 |
|
|
| 133 |
|
@XmlElement |
| 134 |
|
private List<String> programRequirements; |
| 135 |
|
|
| 136 |
|
@XmlElement |
| 137 |
|
private List<String> divisionsContentOwner; |
| 138 |
|
|
| 139 |
|
@XmlElement |
| 140 |
|
private List<String> divisionsStudentOversight; |
| 141 |
|
|
| 142 |
|
@XmlElement |
| 143 |
|
private List<String> divisionsDeployment; |
| 144 |
|
|
| 145 |
|
@XmlElement |
| 146 |
|
private List<String> divisionsFinancialResources; |
| 147 |
|
|
| 148 |
|
@XmlElement |
| 149 |
|
private List<String> divisionsFinancialControl; |
| 150 |
|
|
| 151 |
|
@XmlElement |
| 152 |
|
private List<String> unitsContentOwner; |
| 153 |
|
|
| 154 |
|
@XmlElement |
| 155 |
|
private List<String> unitsStudentOversight; |
| 156 |
|
|
| 157 |
|
@XmlElement |
| 158 |
|
private List<String> unitsDeployment; |
| 159 |
|
|
| 160 |
|
@XmlElement |
| 161 |
|
private List<String> unitsFinancialResources; |
| 162 |
|
|
| 163 |
|
@XmlElement |
| 164 |
|
private List<String> unitsFinancialControl; |
| 165 |
|
|
| 166 |
|
@XmlElement |
| 167 |
|
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
| 168 |
|
private Map<String, String> attributes; |
| 169 |
|
|
| 170 |
|
@XmlElement |
| 171 |
|
private MetaInfo metaInfo; |
| 172 |
|
|
| 173 |
|
@XmlElement |
| 174 |
|
private VersionInfo versionInfo; |
| 175 |
|
|
| 176 |
|
@XmlAttribute |
| 177 |
|
private String type; |
| 178 |
|
|
| 179 |
|
@XmlAttribute |
| 180 |
|
private String state; |
| 181 |
|
|
| 182 |
|
@XmlAttribute |
| 183 |
|
private String id; |
| 184 |
|
|
| 185 |
|
|
| 186 |
|
|
| 187 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 188 |
27
|
public String getIntensity() {... |
| 189 |
27
|
return intensity; |
| 190 |
|
} |
| 191 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 192 |
78
|
public void setIntensity(String intensity) {... |
| 193 |
78
|
this.intensity = intensity; |
| 194 |
|
} |
| 195 |
|
|
| 196 |
|
|
| 197 |
|
|
| 198 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 199 |
27
|
public String getReferenceURL() {... |
| 200 |
27
|
return referenceURL; |
| 201 |
|
} |
| 202 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 203 |
78
|
public void setReferenceURL(String referenceURL) {... |
| 204 |
78
|
this.referenceURL = referenceURL; |
| 205 |
|
} |
| 206 |
|
|
| 207 |
|
|
| 208 |
|
|
| 209 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 210 |
31
|
public String getCode() {... |
| 211 |
31
|
return code; |
| 212 |
|
} |
| 213 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 214 |
79
|
public void setCode(String code) {... |
| 215 |
79
|
this.code = code; |
| 216 |
|
} |
| 217 |
|
|
| 218 |
|
|
| 219 |
|
|
| 220 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 221 |
37
|
public String getCip2000Code() {... |
| 222 |
37
|
return cip2000Code; |
| 223 |
|
} |
| 224 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 225 |
80
|
public void setCip2000Code(String cip2000Code) {... |
| 226 |
80
|
this.cip2000Code = cip2000Code; |
| 227 |
|
} |
| 228 |
|
|
| 229 |
|
|
| 230 |
|
|
| 231 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 232 |
37
|
public String getCip2010Code() {... |
| 233 |
37
|
return cip2010Code; |
| 234 |
|
} |
| 235 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 236 |
80
|
public void setCip2010Code(String cip2010Code) {... |
| 237 |
80
|
this.cip2010Code = cip2010Code; |
| 238 |
|
} |
| 239 |
|
|
| 240 |
|
|
| 241 |
|
|
| 242 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 243 |
27
|
public String getHegisCode() {... |
| 244 |
27
|
return hegisCode; |
| 245 |
|
} |
| 246 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 247 |
78
|
public void setHegisCode(String hegisCode) {... |
| 248 |
78
|
this.hegisCode = hegisCode; |
| 249 |
|
} |
| 250 |
|
|
| 251 |
|
|
| 252 |
|
|
| 253 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 254 |
27
|
public String getUniversityClassification() {... |
| 255 |
27
|
return universityClassification; |
| 256 |
|
} |
| 257 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 258 |
78
|
public void setUniversityClassification(String universityClassification) {... |
| 259 |
78
|
this.universityClassification = universityClassification; |
| 260 |
|
} |
| 261 |
|
|
| 262 |
|
|
| 263 |
|
|
| 264 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 265 |
27
|
public String getSelectiveEnrollmentCode() {... |
| 266 |
27
|
return selectiveEnrollmentCode; |
| 267 |
|
} |
| 268 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 269 |
78
|
public void setSelectiveEnrollmentCode(String selectiveEnrollmentCode) {... |
| 270 |
78
|
this.selectiveEnrollmentCode = selectiveEnrollmentCode; |
| 271 |
|
} |
| 272 |
|
|
| 273 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 274 |
50
|
public List<String> getResultOptions() {... |
| 275 |
50
|
return resultOptions; |
| 276 |
|
} |
| 277 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 278 |
53
|
public void setResultOptions(List<String> resultOptions) {... |
| 279 |
53
|
this.resultOptions = resultOptions; |
| 280 |
|
} |
| 281 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 282 |
27
|
public TimeAmountInfo getStdDuration() {... |
| 283 |
27
|
return stdDuration; |
| 284 |
|
} |
| 285 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 286 |
78
|
public void setStdDuration(TimeAmountInfo stdDuration) {... |
| 287 |
78
|
this.stdDuration = stdDuration; |
| 288 |
|
} |
| 289 |
|
|
| 290 |
|
|
| 291 |
|
|
| 292 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 293 |
46
|
public String getStartTerm() {... |
| 294 |
46
|
return startTerm; |
| 295 |
|
} |
| 296 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 297 |
78
|
public void setStartTerm(String startTerm) {... |
| 298 |
78
|
this.startTerm = startTerm; |
| 299 |
|
} |
| 300 |
|
|
| 301 |
|
|
| 302 |
|
|
| 303 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 304 |
65
|
public String getEndTerm() {... |
| 305 |
65
|
return endTerm; |
| 306 |
|
} |
| 307 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 308 |
78
|
public void setEndTerm(String endTerm) {... |
| 309 |
78
|
this.endTerm = endTerm; |
| 310 |
|
} |
| 311 |
|
|
| 312 |
|
|
| 313 |
|
|
| 314 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 315 |
65
|
public String getEndProgramEntryTerm() {... |
| 316 |
65
|
return endProgramEntryTerm; |
| 317 |
|
} |
| 318 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 319 |
78
|
public void setEndProgramEntryTerm(String endProgramEntryTerm) {... |
| 320 |
78
|
this.endProgramEntryTerm = endProgramEntryTerm; |
| 321 |
|
} |
| 322 |
|
|
| 323 |
|
|
| 324 |
|
|
| 325 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 326 |
27
|
public Date getEffectiveDate() {... |
| 327 |
27
|
return effectiveDate; |
| 328 |
|
} |
| 329 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 330 |
78
|
public void setEffectiveDate(Date effectiveDate) {... |
| 331 |
78
|
this.effectiveDate = effectiveDate; |
| 332 |
|
} |
| 333 |
|
|
| 334 |
|
|
| 335 |
|
|
| 336 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 337 |
38
|
public String getShortTitle() {... |
| 338 |
38
|
return shortTitle; |
| 339 |
|
} |
| 340 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 341 |
80
|
public void setShortTitle(String shortTitle) {... |
| 342 |
80
|
this.shortTitle = shortTitle; |
| 343 |
|
} |
| 344 |
|
|
| 345 |
|
|
| 346 |
|
|
| 347 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 348 |
38
|
public String getLongTitle() {... |
| 349 |
38
|
return longTitle; |
| 350 |
|
} |
| 351 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 352 |
80
|
public void setLongTitle(String longTitle) {... |
| 353 |
80
|
this.longTitle = longTitle; |
| 354 |
|
} |
| 355 |
|
|
| 356 |
|
|
| 357 |
|
|
| 358 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 359 |
60
|
public String getTranscriptTitle() {... |
| 360 |
60
|
return transcriptTitle; |
| 361 |
|
} |
| 362 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 363 |
80
|
public void setTranscriptTitle(String transcriptTitle) {... |
| 364 |
80
|
this.transcriptTitle = transcriptTitle; |
| 365 |
|
} |
| 366 |
|
|
| 367 |
|
|
| 368 |
|
|
| 369 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 370 |
55
|
public String getDiplomaTitle() {... |
| 371 |
55
|
return diplomaTitle; |
| 372 |
|
} |
| 373 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 374 |
58
|
public void setDiplomaTitle(String diplomaTitle) {... |
| 375 |
58
|
this.diplomaTitle = diplomaTitle; |
| 376 |
|
} |
| 377 |
|
|
| 378 |
|
|
| 379 |
|
|
| 380 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 381 |
38
|
public RichTextInfo getDescr() {... |
| 382 |
38
|
return descr; |
| 383 |
|
} |
| 384 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 385 |
80
|
public void setDescr(RichTextInfo descr) {... |
| 386 |
80
|
this.descr = descr; |
| 387 |
|
} |
| 388 |
|
|
| 389 |
|
|
| 390 |
|
|
| 391 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 392 |
51
|
public RichTextInfo getCatalogDescr() {... |
| 393 |
51
|
return catalogDescr; |
| 394 |
|
} |
| 395 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 396 |
67
|
public void setCatalogDescr(RichTextInfo catalogDescr) {... |
| 397 |
67
|
this.catalogDescr = catalogDescr; |
| 398 |
|
} |
| 399 |
|
|
| 400 |
|
|
| 401 |
|
|
| 402 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 403 |
39
|
public List<String> getCatalogPublicationTargets() {... |
| 404 |
39
|
return catalogPublicationTargets; |
| 405 |
|
} |
| 406 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 407 |
11
|
public void setCatalogPublicationTargets(List<String> catalogPublicationTargets) {... |
| 408 |
11
|
this.catalogPublicationTargets = catalogPublicationTargets; |
| 409 |
|
} |
| 410 |
|
|
| 411 |
|
|
| 412 |
|
|
| 413 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 414 |
55
|
public List<LoDisplayInfo> getLearningObjectives() {... |
| 415 |
55
|
if (learningObjectives == null) { |
| 416 |
1
|
learningObjectives = new ArrayList<LoDisplayInfo>(0); |
| 417 |
|
} |
| 418 |
55
|
return learningObjectives; |
| 419 |
|
} |
| 420 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 421 |
53
|
public void setLearningObjectives(List<LoDisplayInfo> learningObjectives) {... |
| 422 |
53
|
this.learningObjectives = learningObjectives; |
| 423 |
|
} |
| 424 |
|
|
| 425 |
|
|
| 426 |
|
|
| 427 |
|
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 428 |
35
|
public List<String> getCampusLocations() {... |
| 429 |
35
|
if (campusLocations == null) { |
| 430 |
0
|
campusLocations = new ArrayList<String>(0); |
| 431 |
|
} |
| 432 |
35
|
return campusLocations; |
| 433 |
|
} |
| 434 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 435 |
79
|
public void setCampusLocations(List<String> campusLocations) {... |
| 436 |
79
|
this.campusLocations = campusLocations; |
| 437 |
|
} |
| 438 |
|
|
| 439 |
|
|
| 440 |
|
|
| 441 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 442 |
61
|
public List<String> getProgramRequirements() {... |
| 443 |
61
|
if (programRequirements == null) { |
| 444 |
17
|
programRequirements = new ArrayList<String>(0); |
| 445 |
|
} |
| 446 |
61
|
return programRequirements; |
| 447 |
|
} |
| 448 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 449 |
11
|
public void setProgramRequirements(List<String> programRequirements) {... |
| 450 |
11
|
this.programRequirements = programRequirements; |
| 451 |
|
} |
| 452 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 453 |
117
|
public List<String> getDivisionsContentOwner() {... |
| 454 |
117
|
return divisionsContentOwner; |
| 455 |
|
} |
| 456 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 457 |
78
|
public void setDivisionsContentOwner(List<String> divisionsContentOwner) {... |
| 458 |
78
|
this.divisionsContentOwner = divisionsContentOwner; |
| 459 |
|
} |
| 460 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 461 |
110
|
public List<String> getDivisionsStudentOversight() {... |
| 462 |
110
|
return divisionsStudentOversight; |
| 463 |
|
} |
| 464 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 465 |
78
|
public void setDivisionsStudentOversight(List<String> divisionsStudentOversight) {... |
| 466 |
78
|
this.divisionsStudentOversight = divisionsStudentOversight; |
| 467 |
|
} |
| 468 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 469 |
110
|
public List<String> getDivisionsDeployment() {... |
| 470 |
110
|
return divisionsDeployment; |
| 471 |
|
} |
| 472 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 473 |
78
|
public void setDivisionsDeployment(List<String> divisionsDeployment) {... |
| 474 |
78
|
this.divisionsDeployment = divisionsDeployment; |
| 475 |
|
} |
| 476 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 477 |
110
|
public List<String> getDivisionsFinancialResources() {... |
| 478 |
110
|
return divisionsFinancialResources; |
| 479 |
|
} |
| 480 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 481 |
78
|
public void setDivisionsFinancialResources(List<String> divisionsFinancialResources) {... |
| 482 |
78
|
this.divisionsFinancialResources = divisionsFinancialResources; |
| 483 |
|
} |
| 484 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 485 |
110
|
public List<String> getDivisionsFinancialControl() {... |
| 486 |
110
|
return divisionsFinancialControl; |
| 487 |
|
} |
| 488 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 489 |
78
|
public void setDivisionsFinancialControl(List<String> divisionsFinancialControl) {... |
| 490 |
78
|
this.divisionsFinancialControl = divisionsFinancialControl; |
| 491 |
|
} |
| 492 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 493 |
110
|
public List<String> getUnitsContentOwner() {... |
| 494 |
110
|
return unitsContentOwner; |
| 495 |
|
} |
| 496 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 497 |
78
|
public void setUnitsContentOwner(List<String> unitsContentOwner) {... |
| 498 |
78
|
this.unitsContentOwner = unitsContentOwner; |
| 499 |
|
} |
| 500 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 501 |
161
|
public List<String> getUnitsStudentOversight() {... |
| 502 |
161
|
return unitsStudentOversight; |
| 503 |
|
} |
| 504 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 505 |
78
|
public void setUnitsStudentOversight(List<String> unitsStudentOversight) {... |
| 506 |
78
|
this.unitsStudentOversight = unitsStudentOversight; |
| 507 |
|
} |
| 508 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 509 |
110
|
public List<String> getUnitsDeployment() {... |
| 510 |
110
|
return unitsDeployment; |
| 511 |
|
} |
| 512 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 513 |
78
|
public void setUnitsDeployment(List<String> unitsDeployment) {... |
| 514 |
78
|
this.unitsDeployment = unitsDeployment; |
| 515 |
|
} |
| 516 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 517 |
110
|
public List<String> getUnitsFinancialResources() {... |
| 518 |
110
|
return unitsFinancialResources; |
| 519 |
|
} |
| 520 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 521 |
78
|
public void setUnitsFinancialResources(List<String> unitsFinancialResources) {... |
| 522 |
78
|
this.unitsFinancialResources = unitsFinancialResources; |
| 523 |
|
} |
| 524 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 525 |
110
|
public List<String> getUnitsFinancialControl() {... |
| 526 |
110
|
return unitsFinancialControl; |
| 527 |
|
} |
| 528 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 529 |
78
|
public void setUnitsFinancialControl(List<String> unitsFinancialControl) {... |
| 530 |
78
|
this.unitsFinancialControl = unitsFinancialControl; |
| 531 |
|
} |
| 532 |
|
|
| 533 |
|
|
| 534 |
|
|
| 535 |
|
|
|
|
|
| 60% |
Uncovered Elements: 2 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 536 |
46
|
@Override... |
| 537 |
|
public Map<String, String> getAttributes() { |
| 538 |
46
|
if (attributes == null) { |
| 539 |
0
|
attributes = new HashMap<String, String>(); |
| 540 |
|
} |
| 541 |
46
|
return attributes; |
| 542 |
|
} |
| 543 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 544 |
78
|
@Override... |
| 545 |
|
public void setAttributes(Map<String, String> attributes) { |
| 546 |
78
|
this.attributes = attributes; |
| 547 |
|
} |
| 548 |
|
|
| 549 |
|
|
| 550 |
|
|
| 551 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 552 |
27
|
public MetaInfo getMetaInfo() {... |
| 553 |
27
|
return metaInfo; |
| 554 |
|
} |
| 555 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 556 |
72
|
public void setMetaInfo(MetaInfo metaInfo) {... |
| 557 |
72
|
this.metaInfo = metaInfo; |
| 558 |
|
} |
| 559 |
|
|
| 560 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 561 |
33
|
public VersionInfo getVersionInfo() {... |
| 562 |
33
|
return versionInfo; |
| 563 |
|
} |
| 564 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 565 |
78
|
public void setVersionInfo(VersionInfo versionInfo) {... |
| 566 |
78
|
this.versionInfo = versionInfo; |
| 567 |
|
} |
| 568 |
|
|
| 569 |
|
|
| 570 |
|
|
| 571 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 572 |
29
|
@Override... |
| 573 |
|
public String getType() { |
| 574 |
29
|
return type; |
| 575 |
|
} |
| 576 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 577 |
78
|
@Override... |
| 578 |
|
public void setType(String type) { |
| 579 |
78
|
this.type = type; |
| 580 |
|
} |
| 581 |
|
|
| 582 |
|
|
| 583 |
|
|
| 584 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 585 |
138
|
@Override... |
| 586 |
|
public String getState() { |
| 587 |
138
|
return state; |
| 588 |
|
} |
| 589 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 590 |
83
|
@Override... |
| 591 |
|
public void setState(String state) { |
| 592 |
83
|
this.state = state; |
| 593 |
|
} |
| 594 |
|
|
| 595 |
|
|
| 596 |
|
|
| 597 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 598 |
252
|
@Override... |
| 599 |
|
public String getId() { |
| 600 |
252
|
return id; |
| 601 |
|
} |
| 602 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 603 |
88
|
@Override... |
| 604 |
|
public void setId(String id) { |
| 605 |
88
|
this.id = id; |
| 606 |
|
} |
| 607 |
|
} |