1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kim.bo.impl;
17
18 import org.kuali.rice.core.impl.component.ComponentBo;
19 import org.kuali.rice.core.impl.namespace.NamespaceBo;
20 import org.kuali.rice.core.impl.parameter.ParameterBo;
21 import org.kuali.rice.kew.doctype.bo.DocumentType;
22 import org.kuali.rice.krad.bo.TransientBusinessObjectBase;
23 import org.kuali.rice.location.impl.campus.CampusBo;
24
25
26
27
28 public class KimAttributes extends TransientBusinessObjectBase {
29
30 private static final long serialVersionUID = 8976113842166331719L;
31
32 protected String methodToCall;
33 protected String beanName;
34 protected String actionClass;
35 protected String namespaceCode;
36 protected String componentName;
37 protected String propertyName;
38 protected Boolean existingRecordsOnly;
39 protected Boolean createdBySelfOnly;
40 protected String attachmentTypeCode;
41 protected String collectionItemTypeCode;
42 protected String editMode;
43 protected String parameterName;
44 protected String campusCode;
45 protected String documentTypeName;
46 protected String actionRequestCd;
47 protected String routeStatusCode;
48 protected String routeNodeName;
49 protected String roleName;
50 protected String permissionName;
51 protected String responsibilityName;
52 protected String groupName;
53 protected Boolean required;
54 protected Boolean actionDetailsAtRoleMemberLevel;
55 protected String documentNumber;
56 protected String sectionId;
57 protected String kimTypeId;
58 protected String qualifierResolverProvidedIdentifier;
59
60 protected CampusBo campus;
61 protected NamespaceBo namespace;
62 protected ComponentBo component;
63 protected ParameterBo parameter;
64 protected DocumentType documentType;
65
66
67
68
69 public String getMethodToCall() {
70 return this.methodToCall;
71 }
72
73
74
75
76
77 public void setMethodToCall(String methodToCall) {
78 this.methodToCall = methodToCall;
79 }
80
81
82
83
84 public String getBeanName() {
85 return this.beanName;
86 }
87
88
89
90
91
92 public void setBeanName(String beanName) {
93 this.beanName = beanName;
94 }
95
96
97
98
99 public String getActionClass() {
100 return this.actionClass;
101 }
102
103
104
105
106
107 public void setActionClass(String actionClass) {
108 this.actionClass = actionClass;
109 }
110
111
112
113
114 public String getNamespaceCode() {
115 return this.namespaceCode;
116 }
117
118
119
120
121
122 public void setNamespaceCode(String namespaceCode) {
123 this.namespaceCode = namespaceCode;
124 }
125
126
127
128
129 public String getComponentName() {
130 return this.componentName;
131 }
132
133
134
135
136
137 public void setComponentName(String componentName) {
138 this.componentName = componentName;
139 }
140
141
142
143
144 public String getPropertyName() {
145 return this.propertyName;
146 }
147
148
149
150
151
152 public void setPropertyName(String propertyName) {
153 this.propertyName = propertyName;
154 }
155
156
157
158
159 public String getCollectionItemTypeCode() {
160 return this.collectionItemTypeCode;
161 }
162
163
164
165
166
167 public void setCollectionItemTypeCode(String collectionItemTypeCode) {
168 this.collectionItemTypeCode = collectionItemTypeCode;
169 }
170
171
172
173
174 public String getEditMode() {
175 return this.editMode;
176 }
177
178
179
180
181
182 public void setEditMode(String editMode) {
183 this.editMode = editMode;
184 }
185
186
187
188
189 public String getParameterName() {
190 return this.parameterName;
191 }
192
193
194
195
196
197 public void setParameterName(String parameterName) {
198 this.parameterName = parameterName;
199 }
200
201
202
203
204 public String getCampusCode() {
205 return this.campusCode;
206 }
207
208
209
210
211
212 public void setCampusCode(String campusCode) {
213 this.campusCode = campusCode;
214 }
215
216
217
218
219 public String getDocumentTypeName() {
220 return this.documentTypeName;
221 }
222
223
224
225
226
227 public void setDocumentTypeName(String documentTypeName) {
228 this.documentTypeName = documentTypeName;
229 }
230
231
232
233
234 public String getActionRequestCd() {
235 return this.actionRequestCd;
236 }
237
238
239
240
241
242 public void setActionRequestCd(String actionRequestCd) {
243 this.actionRequestCd = actionRequestCd;
244 }
245
246
247
248
249 public String getRouteStatusCode() {
250 return this.routeStatusCode;
251 }
252
253
254
255
256
257 public void setRouteStatusCode(String routeStatusCode) {
258 this.routeStatusCode = routeStatusCode;
259 }
260
261
262
263
264 public String getRouteNodeName() {
265 return this.routeNodeName;
266 }
267
268
269
270
271
272 public void setRouteNodeName(String routeNodeName) {
273 this.routeNodeName = routeNodeName;
274 }
275
276
277
278
279 public String getRoleName() {
280 return this.roleName;
281 }
282
283
284
285
286
287 public void setRoleName(String roleName) {
288 this.roleName = roleName;
289 }
290
291
292
293
294 public String getPermissionName() {
295 return this.permissionName;
296 }
297
298
299
300
301
302 public void setPermissionName(String permissionName) {
303 this.permissionName = permissionName;
304 }
305
306
307
308
309 public String getResponsibilityName() {
310 return this.responsibilityName;
311 }
312
313
314
315
316
317 public void setResponsibilityName(String responsibilityName) {
318 this.responsibilityName = responsibilityName;
319 }
320
321
322
323
324 public String getGroupName() {
325 return this.groupName;
326 }
327
328
329
330
331
332 public void setGroupName(String groupName) {
333 this.groupName = groupName;
334 }
335
336
337
338
339 public String getDocumentNumber() {
340 return this.documentNumber;
341 }
342
343
344
345
346
347 public void setDocumentNumber(String documentNumber) {
348 this.documentNumber = documentNumber;
349 }
350
351
352
353
354 public Boolean isExistingRecordsOnly() {
355 return this.existingRecordsOnly;
356 }
357
358
359
360
361 public void setExistingRecordsOnly(Boolean existingRecordsOnly) {
362 this.existingRecordsOnly = existingRecordsOnly;
363 }
364
365
366
367
368 public Boolean isCreatedBySelfOnly() {
369 return this.createdBySelfOnly;
370 }
371
372
373
374
375 public void setCreatedBySelfOnly(Boolean createdBySelfOnly) {
376 this.createdBySelfOnly = createdBySelfOnly;
377 }
378
379
380
381
382 public Boolean isRequired() {
383 return this.required;
384 }
385
386
387
388
389 public void setRequired(Boolean required) {
390 this.required = required;
391 }
392
393
394
395
396 public Boolean isActionDetailsAtRoleMemberLevel() {
397 return this.actionDetailsAtRoleMemberLevel;
398 }
399
400
401
402
403 public void setActionDetailsAtRoleMemberLevel(
404 Boolean actionDetailsAtRoleMemberLevel) {
405 this.actionDetailsAtRoleMemberLevel = actionDetailsAtRoleMemberLevel;
406 }
407
408 public String getSectionId() {
409 return this.sectionId;
410 }
411
412 public void setSectionId(String sectionId) {
413 this.sectionId = sectionId;
414 }
415
416 public CampusBo getCampus() {
417 return this.campus;
418 }
419
420 public void setCampus(CampusBo campus) {
421 this.campus = campus;
422 }
423
424 public NamespaceBo getNamespace() {
425 return this.namespace;
426 }
427
428 public void setNamespace(NamespaceBo namespace) {
429 this.namespace = namespace;
430 }
431
432 public ComponentBo getComponent() {
433 return this.component;
434 }
435
436 public void setComponent(ComponentBo component) {
437 this.component = component;
438 }
439
440 public ParameterBo getParameter() {
441 return this.parameter;
442 }
443
444 public void setParameter(ParameterBo parameter) {
445 this.parameter = parameter;
446 }
447
448 public DocumentType getDocumentType() {
449 return this.documentType;
450 }
451
452 public void setDocumentType(DocumentType documentType) {
453 this.documentType = documentType;
454 }
455
456 public String getKimTypeId() {
457 return this.kimTypeId;
458 }
459
460 public void setKimTypeId(String kimTypeId) {
461 this.kimTypeId = kimTypeId;
462 }
463
464 public String getQualifierResolverProvidedIdentifier() {
465 return qualifierResolverProvidedIdentifier;
466 }
467
468 public void setQualifierResolverProvidedIdentifier(String qualifierResolverProvidedIdentifier) {
469 this.qualifierResolverProvidedIdentifier = qualifierResolverProvidedIdentifier;
470 }
471
472
473
474
475 public String getAttachmentTypeCode() {
476 return this.attachmentTypeCode;
477 }
478
479
480
481
482 public void setAttachmentTypeCode(String attachmentTypeCode) {
483 this.attachmentTypeCode = attachmentTypeCode;
484 }
485
486 }