Coverage Report - org.kuali.student.lum.lo.entity.AllowedLoLoRelationType
 
Classes in this File Line Coverage Branch Coverage Complexity
AllowedLoLoRelationType
0%
0/16
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 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.common.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  
          * @param effectiveDate the effectiveDate to set
 76  
          */
 77  
         public void setEffectiveDate(Date effectiveDate) {
 78  0
                 this.effectiveDate = effectiveDate;
 79  0
         }
 80  
 
 81  
         /**
 82  
          * @return the effectiveDate
 83  
          */
 84  
         public Date getEffectiveDate() {
 85  0
                 return effectiveDate;
 86  
         }
 87  
 
 88  
         /**
 89  
          * @param expirationDate the expirationDate to set
 90  
          */
 91  
         public void setExpirationDate(Date expirationDate) {
 92  0
                 this.expirationDate = expirationDate;
 93  0
         }
 94  
 
 95  
         /**
 96  
          * @return the expirationDate
 97  
          */
 98  
         public Date getExpirationDate() {
 99  0
                 return expirationDate;
 100  
         }
 101  
 }