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