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