Coverage Report - org.kuali.rice.kim.bo.types.impl.KimAttributeImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
KimAttributeImpl
0%
0/24
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 java.util.LinkedHashMap;
 19  
 
 20  
 import javax.persistence.Column;
 21  
 import javax.persistence.Entity;
 22  
 import javax.persistence.Id;
 23  
 import javax.persistence.Table;
 24  
 
 25  
 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
 26  
 
 27  
 /**
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  */
 30  
 @Entity
 31  
 @Table(name="KRIM_ATTR_DEFN_T")
 32  0
 public class KimAttributeImpl extends PersistableBusinessObjectBase {
 33  
 
 34  
         private static final long serialVersionUID = 1L;
 35  
 
 36  
         @Id
 37  
         @Column(name="KIM_ATTR_DEFN_ID")
 38  
         protected String kimAttributeId;
 39  
         @Column(name="NM")
 40  
         protected String attributeName;
 41  
         @Column(name="NMSPC_CD")
 42  
         protected String namespaceCode;
 43  
         @Column(name="LBL")
 44  
         protected String attributeLabel;
 45  
         @Column(name="ACTV_IND")
 46  
         protected boolean active;
 47  
         @Column(name="CMPNT_NM")
 48  
         protected String componentName;
 49  
         
 50  
         public String getKimAttributeId() {
 51  0
                 return kimAttributeId;
 52  
         }
 53  
 
 54  
         public String getAttributeName() {
 55  0
                 return attributeName;
 56  
         }
 57  
 
 58  
         public void setAttributeName(String attributeName) {
 59  0
                 this.attributeName = attributeName;
 60  0
         }
 61  
 
 62  
         public boolean isActive() {
 63  0
                 return active;
 64  
         }
 65  
 
 66  
         public void setActive(boolean active) {
 67  0
                 this.active = active;
 68  0
         }
 69  
 
 70  
         public String getAttributeLabel() {
 71  0
                 return this.attributeLabel;
 72  
         }
 73  
 
 74  
         public void setAttributeLabel(String attributeLabel) {
 75  0
                 this.attributeLabel = attributeLabel;
 76  0
         }
 77  
 
 78  
         public void setKimAttributeId(String kimAttributeId) {
 79  0
                 this.kimAttributeId = kimAttributeId;
 80  0
         }
 81  
 
 82  
         public String getNamespaceCode() {
 83  0
                 return this.namespaceCode;
 84  
         }
 85  
 
 86  
         public void setNamespaceCode(String namespaceCode) {
 87  0
                 this.namespaceCode = namespaceCode;
 88  0
         }
 89  
 
 90  
         public String getComponentName() {
 91  0
                 return this.componentName;
 92  
         }
 93  
 
 94  
         public void setComponentName(String componentName) {
 95  0
                 this.componentName = componentName;
 96  0
         }
 97  
 
 98  
         /**
 99  
          * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper()
 100  
          */
 101  
         @SuppressWarnings("unchecked")
 102  
         @Override
 103  
         protected LinkedHashMap toStringMapper() {
 104  0
                 LinkedHashMap m = new LinkedHashMap();
 105  0
                 m.put( "attributeId", kimAttributeId );
 106  0
                 m.put( "attributeName", attributeName );
 107  0
                 m.put( "componentName", componentName );
 108  0
                 return m;
 109  
         }
 110  
         
 111  
 }