Coverage Report - org.kuali.student.r2.lum.program.dto.ProgramVariationInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
ProgramVariationInfo
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.infc.ProgramVariation;
 20  
 import org.w3c.dom.Element;
 21  
 
 22  
 /**
 23  
  * Detailed information about a variation to a major discipline
 24  
  * 
 25  
  * Also referred to as a Specialization or a Track
 26  
  * 
 27  
  * @author Kuali Student Team (sambitpa@kuali.org)
 28  
  */
 29  
 @XmlType(name = "ProgramVariationInfo", propOrder = {"id",
 30  
     "typeKey",
 31  
     "stateKey",
 32  
     "version",
 33  
     "descr",
 34  
     "code",
 35  
     "shortTitle",
 36  
     "longTitle",
 37  
     "transcriptTitle",
 38  
     "universityClassification",
 39  
     "startTerm",
 40  
     "endTerm",
 41  
     "endProgramEntryTerm",
 42  
     "divisionsContentOwner",
 43  
     "divisionsStudentOversight",
 44  
     "unitsContentOwner",
 45  
     "unitsStudentOversight",
 46  
     "learningObjectives",
 47  
     "programRequirements",
 48  
     "referenceURL",
 49  
     "catalogDescr",
 50  
     "catalogPublicationTargets",
 51  
     "intensity",
 52  
     "cip2000Code",
 53  
     "cip2010Code",
 54  
     "hegisCode",
 55  
     "selectiveEnrollmentCode",
 56  
     "effectiveDate",
 57  
     "diplomaTitle",
 58  
     "campusLocations",
 59  
     "resultOptions",
 60  
     "stdDuration",
 61  
     "divisionsDeployment",
 62  
     "divisionsFinancialResources",
 63  
     "divisionsFinancialControl",
 64  
     "unitsDeployment",
 65  
     "unitsFinancialResources",
 66  
     "unitsFinancialControl",
 67  
     "attributes",
 68  
     "meta",
 69  
     "_futureElements"})
 70  
 @XmlAccessorType(XmlAccessType.FIELD)
 71  
 public class ProgramVariationInfo extends CommonWithProgramVariationInfo implements ProgramVariation, Serializable {
 72  
 
 73  
     private static final long serialVersionUID = 1L;
 74  
     @XmlAnyElement
 75  
     private List<Element> _futureElements;
 76  
 
 77  
     public ProgramVariationInfo() {
 78  0
         super();
 79  0
     }
 80  
 
 81  
     public ProgramVariationInfo(ProgramVariation input) {
 82  0
         super(input);
 83  0
     }
 84  
 }