Coverage Report - org.kuali.student.lum.lu.bo.CluIdentifier
 
Classes in this File Line Coverage Branch Coverage Complexity
CluIdentifier
0%
0/31
N/A
1
 
 1  
 package org.kuali.student.lum.lu.bo;
 2  
 
 3  
 import javax.persistence.Column;
 4  
 
 5  
 import org.kuali.student.core.bo.KsBusinessObjectBase;
 6  
 
 7  0
 public class CluIdentifier extends KsBusinessObjectBase {
 8  
 
 9  
         private static final long serialVersionUID = -3231108861178451995L;
 10  
 
 11  
         @Column(name = "CD")
 12  
     private String code;
 13  
 
 14  
     @Column(name = "SHRT_NAME")
 15  
     private String shortName;
 16  
 
 17  
     @Column(name = "LNG_NAME")
 18  
     private String longName;
 19  
 
 20  
     @Column(name = "LVL")
 21  
     private String level;
 22  
 
 23  
     @Column(name = "DIV")
 24  
     private String division;
 25  
 
 26  
     @Column(name = "VARTN")
 27  
     private String variation;
 28  
 
 29  
     @Column(name = "SUFX_CD")
 30  
     private String suffixCode;
 31  
 
 32  
     @Column(name = "ORG_ID")
 33  
     private String orgId;
 34  
 
 35  
     @Column(name = "TYPE")
 36  
     private String type;
 37  
 
 38  
     @Column(name = "ST")
 39  
     private String state;
 40  
 
 41  
     
 42  
         public String getCode() {
 43  0
                 return code;
 44  
         }
 45  
 
 46  
         public void setCode(String code) {
 47  0
                 this.code = code;
 48  0
         }
 49  
 
 50  
         public String getShortName() {
 51  0
                 return shortName;
 52  
         }
 53  
 
 54  
         public void setShortName(String shortName) {
 55  0
                 this.shortName = shortName;
 56  0
         }
 57  
 
 58  
         public String getLongName() {
 59  0
                 return longName;
 60  
         }
 61  
 
 62  
         public void setLongName(String longName) {
 63  0
                 this.longName = longName;
 64  0
         }
 65  
 
 66  
         public String getLevel() {
 67  0
                 return level;
 68  
         }
 69  
 
 70  
         public void setLevel(String level) {
 71  0
                 this.level = level;
 72  0
         }
 73  
 
 74  
         public String getDivision() {
 75  0
                 return division;
 76  
         }
 77  
 
 78  
         public void setDivision(String division) {
 79  0
                 this.division = division;
 80  0
         }
 81  
 
 82  
         public String getVariation() {
 83  0
                 return variation;
 84  
         }
 85  
 
 86  
         public void setVariation(String variation) {
 87  0
                 this.variation = variation;
 88  0
         }
 89  
 
 90  
         public String getSuffixCode() {
 91  0
                 return suffixCode;
 92  
         }
 93  
 
 94  
         public void setSuffixCode(String suffixCode) {
 95  0
                 this.suffixCode = suffixCode;
 96  0
         }
 97  
 
 98  
         public String getOrgId() {
 99  0
                 return orgId;
 100  
         }
 101  
 
 102  
         public void setOrgId(String orgId) {
 103  0
                 this.orgId = orgId;
 104  0
         }
 105  
 
 106  
         public String getType() {
 107  0
                 return type;
 108  
         }
 109  
 
 110  
         public void setType(String type) {
 111  0
                 this.type = type;
 112  0
         }
 113  
 
 114  
         public String getState() {
 115  0
                 return state;
 116  
         }
 117  
 
 118  
         public void setState(String state) {
 119  0
                 this.state = state;
 120  0
         }
 121  
 
 122  
 }