Coverage Report - org.kuali.student.lum.lu.dto.AcademicSubjectOrgInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
AcademicSubjectOrgInfo
0%
0/4
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation 
 3  
  *
 4  
  * Licensed under the the Educational Community License, Version 1.0
 5  
  * (the "License"); you may not use this file except in compliance
 6  
  * with the License.  You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 13  
  * implied.  See the License for the specific language governing
 14  
  * permissions and limitations under the License.
 15  
  */
 16  
 
 17  
 package org.kuali.student.lum.lu.dto;
 18  
 
 19  
 import javax.xml.bind.annotation.XmlAccessType;
 20  
 import javax.xml.bind.annotation.XmlAccessorType;
 21  
 import javax.xml.bind.annotation.XmlElement;
 22  
 import java.io.Serializable;
 23  
 
 24  
 
 25  
 /**
 26  
  * Information about an organization that represents the Academic
 27  
  * Subject for a learning unit. This often would be the same as the
 28  
  * primaryAdminOrg.
 29  
  *
 30  
  * @Author Kamal
 31  
  * @Since Mon Jan 11 15:20:14 PST 2010
 32  
  */
 33  
 
 34  
 @XmlAccessorType(XmlAccessType.FIELD)
 35  0
 public class AcademicSubjectOrgInfo implements Serializable {
 36  
 
 37  
     private static final long serialVersionUID = 1L;
 38  
 
 39  
     @XmlElement
 40  
     private String orgId;
 41  
 
 42  
 
 43  
     /**
 44  
      * Unique identifier for an organization.
 45  
      */
 46  
 
 47  
     public String getOrgId() {
 48  0
         return orgId;
 49  
     }
 50  
 
 51  
     public void setOrgId(String orgId) {
 52  0
         this.orgId = orgId;
 53  0
     }
 54  
 }