1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kim.bo.role.dto;
17
18 import org.apache.commons.lang.builder.ToStringBuilder;
19 import org.apache.commons.lang.builder.ToStringStyle;
20 import org.kuali.rice.kim.bo.Role;
21
22 import java.io.Serializable;
23
24
25
26
27
28
29
30
31 public class KimRoleInfo implements Role, Serializable {
32
33 protected String roleId;
34 protected String roleName;
35 protected String roleDescription;
36 protected boolean active;
37 protected String kimTypeId;
38 protected String namespaceCode;
39
40 public String getRoleId() {
41 return this.roleId;
42 }
43 public void setRoleId(String roleId) {
44 this.roleId = roleId;
45 }
46 public String getRoleName() {
47 return this.roleName;
48 }
49 public void setRoleName(String roleName) {
50 this.roleName = roleName;
51 }
52 public String getRoleDescription() {
53 return this.roleDescription;
54 }
55 public void setRoleDescription(String roleDescription) {
56 this.roleDescription = roleDescription;
57 }
58 public boolean isActive() {
59 return this.active;
60 }
61 public void setActive(boolean active) {
62 this.active = active;
63 }
64 public String getKimTypeId() {
65 return this.kimTypeId;
66 }
67 public void setKimTypeId(String kimTypeId) {
68 this.kimTypeId = kimTypeId;
69 }
70 public String getNamespaceCode() {
71 return this.namespaceCode;
72 }
73 public void setNamespaceCode(String namespaceCode) {
74 this.namespaceCode = namespaceCode;
75 }
76
77
78
79 public String toString() {
80 return new ToStringBuilder(this, ToStringStyle.DEFAULT_STYLE)
81 .append("roleId", this.roleId)
82 .append("namespaceCode", this.namespaceCode)
83 .append("roleName", this.roleName)
84 .append("active", this.active)
85 .append("kimTypeId", this.kimTypeId)
86 .toString();
87 }
88
89 public void refresh(){
90
91 }
92 }