Coverage Report - org.kuali.rice.kim.bo.types.impl.KimTypeAttributeImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KimTypeAttributeImpl
0%
0/19
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.bo.types.impl;
 17  
 
 18  
 import org.hibernate.annotations.Type;
 19  
 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
 20  
 
 21  
 import javax.persistence.*;
 22  
 
 23  
 /**
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  */
 26  
 @Entity
 27  
 @Table(name="KRIM_TYP_ATTR_T")
 28  0
 public class KimTypeAttributeImpl extends PersistableBusinessObjectBase {
 29  
 
 30  
         private static final long serialVersionUID = 1L;
 31  
 
 32  
         @Id
 33  
         @Column(name="KIM_TYP_ATTR_ID")
 34  
         protected String kimTypeAttributeId;
 35  
         @Column(name="KIM_TYP_ID")
 36  
         protected String kimTypeId;         
 37  
         @Column(name="KIM_ATTR_DEFN_ID")
 38  
         protected String kimAttributeId;
 39  
         @Column(name="SORT_CD")
 40  
         protected String sortCode;
 41  
         @Type(type="yes_no")
 42  
         @Column(name="ACTV_IND")
 43  
         protected boolean active;          
 44  
         
 45  
         @OneToOne(targetEntity=KimAttributeImpl.class, fetch = FetchType.EAGER, cascade = { })
 46  
         @JoinColumn(name = "KIM_ATTR_DEFN_ID", insertable = false, updatable = false)
 47  
         protected KimAttributeImpl kimAttribute;
 48  
         
 49  
         public KimAttributeImpl getKimAttribute() {
 50  0
                 return kimAttribute;
 51  
         }
 52  
 
 53  
         public String getKimAttributeId() {
 54  0
                 return kimAttributeId;
 55  
         }
 56  
 
 57  
         public String getKimTypeAttributeId() {
 58  0
                 return kimTypeAttributeId;
 59  
         }
 60  
 
 61  
         public String getKimTypeId() {
 62  0
                 return kimTypeId;
 63  
         }
 64  
         
 65  
         public void setKimTypeAttributeId(String kimTypeAttributeId) {
 66  0
                 this.kimTypeAttributeId = kimTypeAttributeId;
 67  0
         }
 68  
 
 69  
         public void setKimAttributeId(String kimAttributeId) {
 70  0
                 this.kimAttributeId = kimAttributeId;
 71  0
         }
 72  
 
 73  
         public void setKimTypeId(String kimTypeId) {
 74  0
                 this.kimTypeId = kimTypeId;
 75  0
         }
 76  
 
 77  
         /**
 78  
          * @see org.kuali.rice.kns.bo.Inactivateable#isActive()
 79  
          */
 80  
         public boolean isActive() {
 81  0
                 return active;
 82  
         }
 83  
 
 84  
         /**
 85  
          * @see org.kuali.rice.kns.bo.Inactivateable#setActive(boolean)
 86  
          */
 87  
         public void setActive(boolean active) {
 88  0
                 this.active = active;
 89  0
         }
 90  
 
 91  
         public String getSortCode() {
 92  0
                 return this.sortCode;
 93  
         }
 94  
 
 95  
         public void setSortCode(String sortCode) {
 96  0
                 this.sortCode = sortCode;
 97  0
         }
 98  
 
 99  
         public void setKimAttribute(KimAttributeImpl kimAttribute) {
 100  0
                 this.kimAttribute = kimAttribute;
 101  0
         }
 102  
 
 103  
 }