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.sec.SecPropertyConstants;
21 import org.kuali.rice.krad.bo.TransientBusinessObjectBase;
22
23
24
25
26
27 public class AccessSecurityRestrictionInfo extends TransientBusinessObjectBase {
28 private String securityAttributeName;
29 private String propertyName;
30 private String propertyLabel;
31 private String retrictedValue;
32 private String documentNumber;
33
34 public AccessSecurityRestrictionInfo() {
35
36 }
37
38
39
40
41
42
43 public String getSecurityAttributeName() {
44 return securityAttributeName;
45 }
46
47
48
49
50
51
52
53 public void setSecurityAttributeName(String securityAttributeName) {
54 this.securityAttributeName = securityAttributeName;
55 }
56
57
58
59
60
61
62
63 public String getPropertyName() {
64 return propertyName;
65 }
66
67
68
69
70
71
72
73 public void setPropertyName(String propertyName) {
74 this.propertyName = propertyName;
75 }
76
77
78
79
80
81
82
83 public String getRetrictedValue() {
84 return retrictedValue;
85 }
86
87
88
89
90
91
92
93 public void setRetrictedValue(String retrictedValue) {
94 this.retrictedValue = retrictedValue;
95 }
96
97
98
99
100
101
102
103 public String getPropertyLabel() {
104 return propertyLabel;
105 }
106
107
108
109
110
111
112 public void setPropertyLabel(String propertyLabel) {
113 this.propertyLabel = propertyLabel;
114 }
115
116
117
118
119
120
121
122 public String getDocumentNumber() {
123 return documentNumber;
124 }
125
126
127
128
129
130
131 public void setDocumentNumber(String documentNumber) {
132 this.documentNumber = documentNumber;
133 }
134
135
136 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
137 LinkedHashMap m = new LinkedHashMap();
138
139 m.put(SecPropertyConstants.SECURITY_ATTRIBUTE_NAME, this.securityAttributeName);
140
141 return m;
142 }
143
144 }