Coverage Report - org.kuali.student.lum.lu.entity.CluIdentifier
 
Classes in this File Line Coverage Branch Coverage Complexity
CluIdentifier
100%
31/31
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.lum.lu.entity;
 17  
 
 18  
 import javax.persistence.Column;
 19  
 import javax.persistence.Entity;
 20  
 import javax.persistence.Table;
 21  
 
 22  
 import org.kuali.student.core.entity.BaseEntity;
 23  
 
 24  
 @Entity
 25  
 @Table(name = "KSLU_CLU_IDENT")
 26  795
 public class CluIdentifier extends BaseEntity{
 27  
 
 28  
     @Column(name = "CD")
 29  
     private String code;
 30  
 
 31  
     @Column(name = "SHRT_NAME")
 32  
     private String shortName;
 33  
 
 34  
     @Column(name = "LNG_NAME")
 35  
     private String longName;
 36  
 
 37  
     @Column(name = "LVL")
 38  
     private String level;
 39  
 
 40  
     @Column(name = "DIV")
 41  
     private String division;
 42  
 
 43  
     @Column(name = "VARTN")
 44  
     private String variation;
 45  
 
 46  
     @Column(name = "SUFX_CD")
 47  
     private String suffixCode;
 48  
 
 49  
     @Column(name = "ORG_ID")
 50  
     private String orgId;
 51  
 
 52  
     @Column(name = "TYPE")
 53  
     private String type;
 54  
 
 55  
     @Column(name = "ST")
 56  
     private String state;
 57  
     
 58  
     public String getCode() {
 59  994
         return code;
 60  
     }
 61  
 
 62  
     public void setCode(String code) {
 63  272
         this.code = code;
 64  272
     }
 65  
 
 66  
     public String getShortName() {
 67  994
         return shortName;
 68  
     }
 69  
 
 70  
     public void setShortName(String shortName) {
 71  272
         this.shortName = shortName;
 72  272
     }
 73  
 
 74  
     public String getLongName() {
 75  994
         return longName;
 76  
     }
 77  
 
 78  
     public void setLongName(String longName) {
 79  272
         this.longName = longName;
 80  272
     }
 81  
 
 82  
     public String getLevel() {
 83  994
         return level;
 84  
     }
 85  
 
 86  
     public void setLevel(String level) {
 87  272
         this.level = level;
 88  272
     }
 89  
 
 90  
     public String getDivision() {
 91  994
         return division;
 92  
     }
 93  
 
 94  
     public void setDivision(String division) {
 95  272
         this.division = division;
 96  272
     }
 97  
 
 98  
     public String getVariation() {
 99  994
         return variation;
 100  
     }
 101  
 
 102  
     public void setVariation(String variation) {
 103  272
         this.variation = variation;
 104  272
     }
 105  
 
 106  
     public String getType() {
 107  994
         return type;
 108  
     }
 109  
 
 110  
     public void setType(String type) {
 111  272
         this.type = type;
 112  272
     }
 113  
 
 114  
     public String getState() {
 115  994
         return state;
 116  
     }
 117  
 
 118  
     public void setState(String state) {
 119  272
         this.state = state;
 120  272
     }
 121  
 
 122  
     public String getSuffixCode() {
 123  994
         return suffixCode;
 124  
     }
 125  
 
 126  
     public void setSuffixCode(String suffixCode) {
 127  272
         this.suffixCode = suffixCode;
 128  272
     }
 129  
 
 130  
     public String getOrgId() {
 131  994
         return orgId;
 132  
     }
 133  
 
 134  
     public void setOrgId(String orgId) {
 135  272
         this.orgId = orgId;
 136  272
     }
 137  
 }