| 1 |  |   | 
  | 2 |  |   | 
  | 3 |  |   | 
  | 4 |  |   | 
  | 5 |  |   | 
  | 6 |  |   | 
  | 7 |  |   | 
  | 8 |  |   | 
  | 9 |  |   | 
  | 10 |  |   | 
  | 11 |  |   | 
  | 12 |  |   | 
  | 13 |  |   | 
  | 14 |  |   | 
  | 15 |  |   | 
  | 16 |  |  package org.kuali.student.lum.lo.entity; | 
  | 17 |  |   | 
  | 18 |  |  import java.util.Date; | 
  | 19 |  |   | 
  | 20 |  |  import javax.persistence.Column; | 
  | 21 |  |  import javax.persistence.Entity; | 
  | 22 |  |  import javax.persistence.Table; | 
  | 23 |  |  import javax.persistence.Temporal; | 
  | 24 |  |  import javax.persistence.TemporalType; | 
  | 25 |  |   | 
  | 26 |  |  import org.kuali.student.core.entity.MetaEntity; | 
  | 27 |  |   | 
  | 28 |  |  @Entity | 
  | 29 |  |  @Table(name = "KSLO_LO_ALLOWED_RELTN_TYPE") | 
  | 30 | 0 |  public class AllowedLoLoRelationType extends MetaEntity { | 
  | 31 |  |   | 
  | 32 |  |          @Column(name = "LOLO_RELTN_TYPE_ID") | 
  | 33 |  |          private String relationTypeId; | 
  | 34 |  |           | 
  | 35 |  |          @Column(name = "LO_TYPE_ID") | 
  | 36 |  |          private String loTypeId; | 
  | 37 |  |           | 
  | 38 |  |          @Column(name = "LO_REL_TYPE_ID") | 
  | 39 |  |          private String relatedLoTypeId; | 
  | 40 |  |           | 
  | 41 |  |          @Temporal(TemporalType.TIMESTAMP) | 
  | 42 |  |          @Column(name = "EFF_DT") | 
  | 43 |  |          private Date effectiveDate; | 
  | 44 |  |   | 
  | 45 |  |          @Temporal(TemporalType.TIMESTAMP) | 
  | 46 |  |          @Column(name = "EXPIR_DT") | 
  | 47 |  |          private Date expirationDate; | 
  | 48 |  |   | 
  | 49 |  |          public String getRelationTypeId() { | 
  | 50 | 0 |                  return relationTypeId; | 
  | 51 |  |          } | 
  | 52 |  |   | 
  | 53 |  |          public void setRelationTypeId(String relationTypeId) { | 
  | 54 | 0 |                  this.relationTypeId = relationTypeId; | 
  | 55 | 0 |          } | 
  | 56 |  |   | 
  | 57 |  |          public String getLoTypeId() { | 
  | 58 | 0 |                  return loTypeId; | 
  | 59 |  |          } | 
  | 60 |  |   | 
  | 61 |  |          public void setLoTypeId(String loTypeId) { | 
  | 62 | 0 |                  this.loTypeId = loTypeId; | 
  | 63 | 0 |          } | 
  | 64 |  |   | 
  | 65 |  |          public String getRelatedLoTypeId() { | 
  | 66 | 0 |                  return relatedLoTypeId; | 
  | 67 |  |          } | 
  | 68 |  |   | 
  | 69 |  |          public void setRelatedLoTypeId(String relatedLoTypeId) { | 
  | 70 | 0 |                  this.relatedLoTypeId = relatedLoTypeId; | 
  | 71 | 0 |          } | 
  | 72 |  |   | 
  | 73 |  |   | 
  | 74 |  |           | 
  | 75 |  |   | 
  | 76 |  |   | 
  | 77 |  |          public void setEffectiveDate(Date effectiveDate) { | 
  | 78 | 0 |                  this.effectiveDate = effectiveDate; | 
  | 79 | 0 |          } | 
  | 80 |  |   | 
  | 81 |  |           | 
  | 82 |  |   | 
  | 83 |  |   | 
  | 84 |  |          public Date getEffectiveDate() { | 
  | 85 | 0 |                  return effectiveDate; | 
  | 86 |  |          } | 
  | 87 |  |   | 
  | 88 |  |           | 
  | 89 |  |   | 
  | 90 |  |   | 
  | 91 |  |          public void setExpirationDate(Date expirationDate) { | 
  | 92 | 0 |                  this.expirationDate = expirationDate; | 
  | 93 | 0 |          } | 
  | 94 |  |   | 
  | 95 |  |           | 
  | 96 |  |   | 
  | 97 |  |   | 
  | 98 |  |          public Date getExpirationDate() { | 
  | 99 | 0 |                  return expirationDate; | 
  | 100 |  |          } | 
  | 101 |  |  } |