Coverage Report - org.kuali.rice.kim.bo.role.dto.KimResponsibilityTemplateInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
KimResponsibilityTemplateInfo
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 responsibilitys and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.bo.role.dto;
 17  
 
 18  
 import org.apache.commons.lang.builder.ToStringBuilder;
 19  
 import org.kuali.rice.kns.bo.Inactivateable;
 20  
 
 21  
 import java.io.Serializable;
 22  
 
 23  
 /**
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  */
 26  0
 public class KimResponsibilityTemplateInfo implements Inactivateable, Serializable {
 27  
 
 28  
         private static final long serialVersionUID = -282533234389371097L;
 29  
         
 30  
         protected String responsibilityTemplateId;
 31  
         protected String namespaceCode;
 32  
         protected String name;
 33  
         protected String kimTypeId;
 34  
         protected String description;
 35  
         protected boolean active;
 36  
         
 37  
         public String getKimTypeId() {
 38  0
                 return kimTypeId;
 39  
         }
 40  
 
 41  
         /**
 42  
          * @see org.kuali.rice.kns.bo.Inactivateable#isActive()
 43  
          */
 44  
         public boolean isActive() {
 45  0
                 return active;
 46  
         }
 47  
 
 48  
         /**
 49  
          * @see org.kuali.rice.kns.bo.Inactivateable#setActive(boolean)
 50  
          */
 51  
         public void setActive(boolean active) {
 52  0
                 this.active = active;
 53  0
         }
 54  
 
 55  
         public String getDescription() {
 56  0
                 return description;
 57  
         }
 58  
 
 59  
         public String getResponsibilityTemplateId() {
 60  0
                 return responsibilityTemplateId;
 61  
         }
 62  
 
 63  
         public String getName() {
 64  0
                 return name;
 65  
         }
 66  
 
 67  
         public void setKimTypeId(String kimTypeId) {
 68  0
                 this.kimTypeId = kimTypeId;
 69  0
         }
 70  
 
 71  
         public void setDescription(String description) {
 72  0
                 this.description = description;
 73  0
         }
 74  
 
 75  
         public void setName(String name) {
 76  0
                 this.name = name;
 77  0
         }
 78  
 
 79  
         @Override
 80  
         public String toString() {
 81  0
                 return new ToStringBuilder( this )
 82  
                 .append( "responsibilityTemplateId", this.responsibilityTemplateId )
 83  
                 .append( "name", this.name )
 84  
                 .append( "kimTypeId", this.kimTypeId )
 85  
                 .toString();
 86  
         }
 87  
 
 88  
         public String getNamespaceCode() {
 89  0
                 return this.namespaceCode;
 90  
         }
 91  
 
 92  
         public void setNamespaceCode(String namespaceCode) {
 93  0
                 this.namespaceCode = namespaceCode;
 94  0
         }
 95  
 
 96  
         public void setResponsibilityTemplateId(String responsibilityTemplateId) {
 97  0
                 this.responsibilityTemplateId = responsibilityTemplateId;
 98  0
         }
 99  
 }