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 public class CluAdminOrg extends KsBusinessObjectBase { 8 9 private static final long serialVersionUID = -7668691777254348964L; 10 11 @Column(name = "ORG_ID") 12 private String orgId; 13 14 @Column(name = "TYPE") 15 private String type; 16 17 @Column(name = "IS_PR") 18 private boolean primary=false; 19 20 private String cluId; 21 22 23 public String getOrgId() { 24 return orgId; 25 } 26 27 public void setOrgId(String orgId) { 28 this.orgId = orgId; 29 } 30 31 public String getType() { 32 return type; 33 } 34 35 public void setType(String type) { 36 this.type = type; 37 } 38 39 public boolean isPrimary() { 40 return primary; 41 } 42 43 public void setPrimary(boolean primary) { 44 this.primary = primary; 45 } 46 47 public String getCluId() { 48 return cluId; 49 } 50 51 public void setCluId(String cluId) { 52 this.cluId = cluId; 53 } 54 55 }