1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.web.struts.form; |
17 | |
|
18 | |
import org.kuali.rice.kns.datadictionary.HelpDefinition; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | 0 | public class KualiHelpForm extends KualiForm { |
26 | |
private static final long serialVersionUID = 1L; |
27 | |
private String businessObjectClassName; |
28 | |
private String attributeName; |
29 | |
private String helpLabel; |
30 | |
private String helpSummary; |
31 | |
private String helpDescription; |
32 | |
private String resourceKey; |
33 | |
private String documentTypeName; |
34 | |
private String helpDataType; |
35 | |
private String helpRequired; |
36 | |
private String helpMaxLength; |
37 | |
private String helpVPatName; |
38 | |
private HelpDefinition helpDefinition; |
39 | |
private String helpParameterNamespace; |
40 | |
private String helpParameterDetailType; |
41 | |
private String helpParameterName; |
42 | |
private String pageName; |
43 | |
private String lookupBusinessObjectClassName; |
44 | |
private String searchDocumentTypeName; |
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
public String getAttributeName() { |
50 | 0 | return attributeName; |
51 | |
} |
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
public void setAttributeName(String attributeName) { |
57 | 0 | this.attributeName = attributeName; |
58 | 0 | } |
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
public String getBusinessObjectClassName() { |
64 | 0 | return businessObjectClassName; |
65 | |
} |
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
public void setBusinessObjectClassName(String businessObjectClassName) { |
71 | 0 | this.businessObjectClassName = businessObjectClassName; |
72 | 0 | } |
73 | |
|
74 | |
|
75 | |
|
76 | |
|
77 | |
public String getHelpDescription() { |
78 | 0 | return helpDescription; |
79 | |
} |
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
public void setHelpDescription(String helpDescription) { |
85 | 0 | this.helpDescription = helpDescription; |
86 | 0 | } |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
public String getHelpLabel() { |
92 | 0 | return helpLabel; |
93 | |
} |
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
public void setHelpLabel(String helpLabel) { |
99 | 0 | this.helpLabel = helpLabel; |
100 | 0 | } |
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public String getHelpSummary() { |
106 | 0 | return helpSummary; |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
public void setHelpSummary(String helpSummary) { |
113 | 0 | this.helpSummary = helpSummary; |
114 | 0 | } |
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
public String getResourceKey() { |
120 | 0 | return resourceKey; |
121 | |
} |
122 | |
|
123 | |
|
124 | |
|
125 | |
|
126 | |
public void setResourceKey(String resourceKey) { |
127 | 0 | this.resourceKey = resourceKey; |
128 | 0 | } |
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
public String getDocumentTypeName() { |
134 | 0 | return documentTypeName; |
135 | |
} |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
public void setDocumentTypeName(String documentTypeName) { |
141 | 0 | this.documentTypeName = documentTypeName; |
142 | 0 | } |
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
public void setHelpRequired(String r) { |
150 | 0 | helpRequired = r; |
151 | 0 | } |
152 | |
|
153 | |
|
154 | |
|
155 | |
|
156 | |
|
157 | |
|
158 | |
public String getHelpRequired() { |
159 | 0 | return helpRequired; |
160 | |
} |
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
public void setHelpDataType(String s) { |
168 | 0 | helpDataType = s; |
169 | 0 | } |
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
public String getHelpDataType() { |
177 | 0 | return helpDataType; |
178 | |
} |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
public void setHelpMaxLength(String m) { |
186 | 0 | helpMaxLength = m; |
187 | 0 | } |
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
|
194 | |
public String getHelpMaxLength() { |
195 | 0 | return helpMaxLength; |
196 | |
} |
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
public void setValidationPatternName(String v) { |
204 | 0 | helpVPatName = v; |
205 | 0 | } |
206 | |
|
207 | |
|
208 | |
|
209 | |
|
210 | |
|
211 | |
|
212 | |
public String getValidationPatternName() { |
213 | 0 | return helpVPatName; |
214 | |
} |
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
|
220 | |
|
221 | |
public HelpDefinition getHelpDefinition() { |
222 | 0 | return helpDefinition; |
223 | |
} |
224 | |
|
225 | |
|
226 | |
|
227 | |
|
228 | |
|
229 | |
|
230 | |
public void setHelpDefinition(HelpDefinition helpDefinition) { |
231 | 0 | this.helpDefinition = helpDefinition; |
232 | 0 | } |
233 | |
|
234 | |
public String getHelpParameterName() { |
235 | 0 | return helpParameterName; |
236 | |
} |
237 | |
|
238 | |
public void setHelpParameterName(String helpParameterName) { |
239 | 0 | this.helpParameterName = helpParameterName; |
240 | 0 | } |
241 | |
|
242 | |
public String getHelpParameterNamespace() { |
243 | 0 | return helpParameterNamespace; |
244 | |
} |
245 | |
|
246 | |
public void setHelpParameterNamespace(String helpSecurityGroupName) { |
247 | 0 | this.helpParameterNamespace = helpSecurityGroupName; |
248 | 0 | } |
249 | |
|
250 | |
public String getPageName() { |
251 | 0 | return pageName; |
252 | |
} |
253 | |
|
254 | |
public void setPageName(String pageName) { |
255 | 0 | this.pageName = pageName; |
256 | 0 | } |
257 | |
|
258 | |
public String getHelpParameterDetailType() { |
259 | 0 | return this.helpParameterDetailType; |
260 | |
} |
261 | |
|
262 | |
public void setHelpParameterDetailType(String helpParameterDetailType) { |
263 | 0 | this.helpParameterDetailType = helpParameterDetailType; |
264 | 0 | } |
265 | |
|
266 | |
|
267 | |
|
268 | |
|
269 | |
public String getLookupBusinessObjectClassName() { |
270 | 0 | return this.lookupBusinessObjectClassName; |
271 | |
} |
272 | |
|
273 | |
|
274 | |
|
275 | |
|
276 | |
public void setLookupBusinessObjectClassName(String lookupBusinessObjectClassName) { |
277 | 0 | this.lookupBusinessObjectClassName = lookupBusinessObjectClassName; |
278 | 0 | } |
279 | |
|
280 | |
|
281 | |
|
282 | |
|
283 | |
public void setSearchDocumentTypeName(String searchDocumentTypeName) { |
284 | 0 | this.searchDocumentTypeName = searchDocumentTypeName; |
285 | 0 | } |
286 | |
|
287 | |
|
288 | |
|
289 | |
|
290 | |
public String getSearchDocumentTypeName() { |
291 | 0 | return this.searchDocumentTypeName; |
292 | |
} |
293 | |
} |