Coverage Report - org.kuali.rice.kim.bo.types.dto.KimTypeAttributeInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
KimTypeAttributeInfo
0%
0/20
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2009 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.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import org.apache.commons.lang.builder.ToStringBuilder;
 20  
 import org.apache.commons.lang.builder.ToStringStyle;
 21  
 
 22  
 /**
 23  
  * This is a description of what this class does - kellerj don't forget to fill this in. 
 24  
  * 
 25  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 26  
  *
 27  
  */
 28  0
 public class KimTypeAttributeInfo implements Serializable {
 29  
         private static final long serialVersionUID = 5069578471162433850L;
 30  
         protected String sortCode;
 31  
         protected String attributeName;
 32  
         protected String namespaceCode;
 33  
         protected String attributeLabel;
 34  
         protected String componentName;
 35  
         protected String kimAttributeId;
 36  
 
 37  
         public String getSortCode() {
 38  0
                 return this.sortCode;
 39  
         }
 40  
         public void setSortCode(String sortCode) {
 41  0
                 this.sortCode = sortCode;
 42  0
         }
 43  
         public String getAttributeName() {
 44  0
                 return this.attributeName;
 45  
         }
 46  
         public void setAttributeName(String attributeName) {
 47  0
                 this.attributeName = attributeName;
 48  0
         }
 49  
         public String getNamespaceCode() {
 50  0
                 return this.namespaceCode;
 51  
         }
 52  
         public void setNamespaceCode(String namespaceCode) {
 53  0
                 this.namespaceCode = namespaceCode;
 54  0
         }
 55  
         public String getAttributeLabel() {
 56  0
                 return this.attributeLabel;
 57  
         }
 58  
         public void setAttributeLabel(String attributeLabel) {
 59  0
                 this.attributeLabel = attributeLabel;
 60  0
         }
 61  
         public String getComponentName() {
 62  0
                 return this.componentName;
 63  
         }
 64  
         public void setComponentName(String componentName) {
 65  0
                 this.componentName = componentName;
 66  0
         }
 67  
         public String getKimAttributeId() {
 68  0
                 return this.kimAttributeId;
 69  
         }
 70  
         public void setKimAttributeId(String kimAttributeId) {
 71  0
                 this.kimAttributeId = kimAttributeId;
 72  0
         }
 73  
         /**
 74  
          * @see java.lang.Object#toString()
 75  
          */
 76  
         public String toString() {
 77  0
                 return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE)
 78  
                                 .append("attributeName", this.attributeName)
 79  
                                 .append("componentName",this.componentName)
 80  
                                 .append("kimAttributeId",this.kimAttributeId)
 81  
                                 .append("namespaceCode", this.namespaceCode)
 82  
                                 .append("sortCode",this.sortCode)
 83  
                                 .append("attributeLabel",this.attributeLabel)
 84  
                                 .toString();
 85  
         }
 86  
         
 87  
 }