| 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 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 | 0 |      @Column(name = "IS_PR") | 
  | 18 |  |      private boolean primary=false; | 
  | 19 |  |   | 
  | 20 |  |      private String cluId; | 
  | 21 |  |   | 
  | 22 |  |       | 
  | 23 |  |          public String getOrgId() { | 
  | 24 | 0 |                  return orgId; | 
  | 25 |  |          } | 
  | 26 |  |   | 
  | 27 |  |          public void setOrgId(String orgId) { | 
  | 28 | 0 |                  this.orgId = orgId; | 
  | 29 | 0 |          } | 
  | 30 |  |   | 
  | 31 |  |          public String getType() { | 
  | 32 | 0 |                  return type; | 
  | 33 |  |          } | 
  | 34 |  |   | 
  | 35 |  |          public void setType(String type) { | 
  | 36 | 0 |                  this.type = type; | 
  | 37 | 0 |          } | 
  | 38 |  |   | 
  | 39 |  |          public boolean isPrimary() { | 
  | 40 | 0 |                  return primary; | 
  | 41 |  |          } | 
  | 42 |  |   | 
  | 43 |  |          public void setPrimary(boolean primary) { | 
  | 44 | 0 |                  this.primary = primary; | 
  | 45 | 0 |          } | 
  | 46 |  |   | 
  | 47 |  |          public String getCluId() { | 
  | 48 | 0 |                  return cluId; | 
  | 49 |  |          } | 
  | 50 |  |   | 
  | 51 |  |          public void setCluId(String cluId) { | 
  | 52 | 0 |                  this.cluId = cluId; | 
  | 53 | 0 |          } | 
  | 54 |  |   | 
  | 55 |  |  } |