1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.sec.businessobject;
17
18 import java.util.LinkedHashMap;
19
20 import org.kuali.ole.sys.OLEPropertyConstants;
21 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
22 import org.kuali.rice.core.api.util.type.KualiInteger;
23 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
24
25
26
27
28 public class SecurityAttribute extends PersistableBusinessObjectBase implements MutableInactivatable {
29 private KualiInteger id;
30 private String name;
31 private boolean active;
32
33 public SecurityAttribute() {
34 super();
35 }
36
37
38
39
40
41
42 public KualiInteger getId() {
43 return id;
44 }
45
46
47
48
49
50
51 public void setId(KualiInteger id) {
52 this.id = id;
53 }
54
55
56
57
58
59
60 public String getName() {
61 return name;
62 }
63
64
65
66
67
68
69 public void setName(String name) {
70 this.name = name;
71 }
72
73
74
75
76
77
78 public boolean isActive() {
79 return active;
80 }
81
82
83
84
85
86
87 public void setActive(boolean active) {
88 this.active = active;
89 }
90
91
92
93
94
95 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
96 LinkedHashMap m = new LinkedHashMap();
97
98 m.put(OLEPropertyConstants.ID, this.id);
99
100 return m;
101 }
102 }