View Javadoc

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  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  		return this.permissionTemplateId;
40  	}
41  	public void setPermissionTemplateId(String permissionTemplateId) {
42  		this.permissionTemplateId = permissionTemplateId;
43  	}
44  	public String getNamespaceCode() {
45  		return this.namespaceCode;
46  	}
47  	public void setNamespaceCode(String namespaceCode) {
48  		this.namespaceCode = namespaceCode;
49  	}
50  	public String getName() {
51  		return this.name;
52  	}
53  	public void setName(String name) {
54  		this.name = name;
55  	}
56  	public String getDescription() {
57  		return this.description;
58  	}
59  	public void setDescription(String description) {
60  		this.description = description;
61  	}
62  	public String getKimTypeId() {
63  		return this.kimTypeId;
64  	}
65  	public void setKimTypeId(String kimTypeId) {
66  		this.kimTypeId = kimTypeId;
67  	}
68  	public boolean isActive() {
69  		return this.active;
70  	}
71  	public void setActive(boolean active) {
72  		this.active = active;
73  	}
74  	
75  	
76  
77  }