Coverage Report - org.kuali.rice.kim.bo.role.dto.KimPermissionTemplateInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
KimPermissionTemplateInfo
0%
0/19
N/A
1
 
 1  
 /*
 2  
  * Copyright 2008-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.role.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 import org.kuali.rice.kim.bo.role.KimPermissionTemplate;
 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 KimPermissionTemplateInfo implements KimPermissionTemplate, Serializable {
 29  
 
 30  
         private static final long serialVersionUID = 1L;
 31  
         protected String permissionTemplateId;
 32  
         protected String namespaceCode;
 33  
         protected String name;
 34  
         protected String description;
 35  
         protected String kimTypeId;
 36  
         protected boolean active;
 37  
         
 38  
         public String getPermissionTemplateId() {
 39  0
                 return this.permissionTemplateId;
 40  
         }
 41  
         public void setPermissionTemplateId(String permissionTemplateId) {
 42  0
                 this.permissionTemplateId = permissionTemplateId;
 43  0
         }
 44  
         public String getNamespaceCode() {
 45  0
                 return this.namespaceCode;
 46  
         }
 47  
         public void setNamespaceCode(String namespaceCode) {
 48  0
                 this.namespaceCode = namespaceCode;
 49  0
         }
 50  
         public String getName() {
 51  0
                 return this.name;
 52  
         }
 53  
         public void setName(String name) {
 54  0
                 this.name = name;
 55  0
         }
 56  
         public String getDescription() {
 57  0
                 return this.description;
 58  
         }
 59  
         public void setDescription(String description) {
 60  0
                 this.description = description;
 61  0
         }
 62  
         public String getKimTypeId() {
 63  0
                 return this.kimTypeId;
 64  
         }
 65  
         public void setKimTypeId(String kimTypeId) {
 66  0
                 this.kimTypeId = kimTypeId;
 67  0
         }
 68  
         public boolean isActive() {
 69  0
                 return this.active;
 70  
         }
 71  
         public void setActive(boolean active) {
 72  0
                 this.active = active;
 73  0
         }
 74  
         
 75  
         
 76  
 
 77  
 }