Coverage Report - org.kuali.student.r2.lum.program.dto.CoreProgramInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
CoreProgramInfo
0%
0/4
N/A
1
 
 1  
 /*
 2  
  * Copyright 2009 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 1.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 6  
  * or agreed to in writing, software distributed under the License is
 7  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 8  
  * KIND, either express or implied. See the License for the specific language
 9  
  * governing permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.student.r2.lum.program.dto;
 12  
 
 13  
 import java.io.Serializable;
 14  
 import java.util.List;
 15  
 
 16  
 import javax.xml.bind.annotation.*;
 17  
 
 18  
 
 19  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramAtpAssembly;
 20  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramBasicOrgAssembly;
 21  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramCommonAssembly;
 22  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramIdentifierAssembly;
 23  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramPublicationAssembly;
 24  
 import org.kuali.student.r2.lum.program.dto.assembly.ProgramRequirementAssembly;
 25  
 import org.kuali.student.r2.lum.program.infc.CoreProgram;
 26  
 import org.w3c.dom.Element;
 27  
 
 28  
 @XmlType(name = "CoreProgramInfo", propOrder = {"id",
 29  
     "typeKey",
 30  
     "stateKey",
 31  
     "version",
 32  
     "descr",
 33  
     "code",
 34  
     "shortTitle",
 35  
     "longTitle",
 36  
     "transcriptTitle",
 37  
     "universityClassification",
 38  
     "startTerm",
 39  
     "endTerm",
 40  
     "endProgramEntryTerm",
 41  
     "divisionsContentOwner",
 42  
     "divisionsStudentOversight",
 43  
     "unitsContentOwner",
 44  
     "unitsStudentOversight",
 45  
     "learningObjectives",
 46  
     "programRequirements",
 47  
     "referenceURL",
 48  
     "catalogDescr",
 49  
     "catalogPublicationTargets",
 50  
     "meta",
 51  
     "attributes",
 52  
     "_futureElements"})
 53  
 @XmlAccessorType(XmlAccessType.FIELD)
 54  
 public class CoreProgramInfo extends CommonWithCoreProgramInfo
 55  
         implements CoreProgram,
 56  
         ProgramCommonAssembly,
 57  
         ProgramBasicOrgAssembly,
 58  
         ProgramAtpAssembly,
 59  
         ProgramIdentifierAssembly,
 60  
         ProgramPublicationAssembly,
 61  
         ProgramRequirementAssembly,
 62  
         Serializable {
 63  
 
 64  
     private static final long serialVersionUID = 1L;
 65  
     @XmlAnyElement
 66  
     private List<Element> _futureElements;
 67  
 
 68  0
     public CoreProgramInfo() {
 69  0
     }
 70  
 
 71  
     public CoreProgramInfo(CoreProgram input) {
 72  0
         super(input);
 73  0
     }
 74  
 }