Coverage Report - org.kuali.student.lum.lu.bo.CluCampusLocation
 
Classes in this File Line Coverage Branch Coverage Complexity
CluCampusLocation
0%
0/7
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 CluCampusLocation extends KsBusinessObjectBase {
 8  
 
 9  
         private static final long serialVersionUID = -3035956537786940766L;
 10  
         
 11  
         @Column(name = "CAMP_LOC")
 12  
     private String campusLocation; 
 13  
 
 14  
     private String cluId;
 15  
 
 16  
     
 17  
         public String getCampusLocation() {
 18  0
                 return campusLocation;
 19  
         }
 20  
 
 21  
         public void setCampusLocation(String campusLocation) {
 22  0
                 this.campusLocation = campusLocation;
 23  0
         }
 24  
 
 25  
         public String getCluId() {
 26  0
                 return cluId;
 27  
         }
 28  
 
 29  
         public void setCluId(String cluId) {
 30  0
                 this.cluId = cluId;
 31  0
         }
 32  
 
 33  
 }