1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.kim.util;
17
18 import java.util.Collection;
19
20 import org.kuali.rice.kim.api.identity.entity.Entity;
21
22
23
24
25
26
27 class ConstantsImpl implements Constants {
28 private Collection<String> testPrincipalNames;
29 private Entity entityPrototype;
30 private String externalIdTypeProperty;
31 private String taxExternalIdTypeCode;
32 private String externalIdProperty;
33 private String employeePhoneLdapProperty;
34 private String employeeMailLdapProperty;
35 private String defaultCountryCode;
36 private String personEntityTypeCode;
37 private String kimLdapIdProperty;
38 private String kimLdapNameProperty;
39 private String snLdapProperty;
40 private String givenNameLdapProperty;
41 private String entityIdKimProperty;
42 private String parameterNamespaceCode;
43 private String parameterDetailTypeCode;
44 private String mappedParameterName;
45 private String unmappedParameterName;
46 private String mappedValuesName;
47 private String employeeIdProperty;
48 private String departmentLdapProperty;
49 private String employeeTypeProperty;
50 private String employeeStatusProperty;
51 private String defaultCampusCode;
52 private String defaultChartCode;
53 private String employeeAffiliationCodes;
54 private String affiliationMappings;
55 private String affiliationLdapProperty;
56 private String primaryAffiliationLdapProperty;
57
58 public Collection<String> getTestPrincipalNames() {
59 return testPrincipalNames;
60 }
61
62 public void setTestPrincipalNames(Collection<String> testPrincipalNames) {
63 this.testPrincipalNames = testPrincipalNames;
64 }
65
66
67
68
69
70
71 public Entity getEntityPrototype() {
72 return entityPrototype;
73 }
74
75
76
77
78
79
80 public void setEntityPrototype(Entity argEntityPrototype) {
81 this.entityPrototype = argEntityPrototype;
82 }
83
84
85
86
87
88
89 public String getExternalIdTypeProperty() {
90 return this.externalIdTypeProperty;
91 }
92
93
94
95
96
97
98 public void setExternalIdTypeProperty(String argExternalIdTypeProperty) {
99 this.externalIdTypeProperty = argExternalIdTypeProperty;
100 }
101
102
103
104
105
106
107 public String getTaxExternalIdTypeCode() {
108 return this.taxExternalIdTypeCode;
109 }
110
111
112
113
114
115
116 public void setTaxExternalIdTypeCode(String argTaxExternalIdTypeCode) {
117 this.taxExternalIdTypeCode = argTaxExternalIdTypeCode;
118 }
119
120
121
122
123
124
125 public String getExternalIdProperty() {
126 return this.externalIdProperty;
127 }
128
129
130
131
132
133
134 public void setExternalIdProperty(String argExternalIdProperty) {
135 this.externalIdProperty = argExternalIdProperty;
136 }
137
138
139
140
141
142
143 public String getEmployeePhoneLdapProperty() {
144 return this.employeePhoneLdapProperty;
145 }
146
147
148
149
150
151
152 public void setEmployeePhoneLdapProperty(String argEmployeePhoneLdapProperty) {
153 this.employeePhoneLdapProperty = argEmployeePhoneLdapProperty;
154 }
155
156
157
158
159
160
161 public String getEmployeeMailLdapProperty() {
162 return this.employeeMailLdapProperty;
163 }
164
165
166
167
168
169
170 public void setEmployeeMailLdapProperty(String argEmployeeMailLdapProperty) {
171 this.employeeMailLdapProperty = argEmployeeMailLdapProperty;
172 }
173
174
175
176
177
178
179 public String getDefaultCountryCode() {
180 return this.defaultCountryCode;
181 }
182
183
184
185
186
187
188 public void setDefaultCountryCode(String argDefaultCountryCode) {
189 this.defaultCountryCode = argDefaultCountryCode;
190 }
191
192
193
194
195
196
197 public String getPersonEntityTypeCode() {
198 return this.personEntityTypeCode;
199 }
200
201
202
203
204
205
206 public void setPersonEntityTypeCode(String argPersonEntityTypeCode) {
207 this.personEntityTypeCode = argPersonEntityTypeCode;
208 }
209
210
211
212
213
214
215 public void setKimLdapIdProperty(String kimLdapIdProperty) {
216 this.kimLdapIdProperty = kimLdapIdProperty;
217 }
218
219
220
221
222
223
224 public String getKimLdapIdProperty() {
225 return kimLdapIdProperty;
226 }
227
228
229
230
231
232
233 public void setKimLdapNameProperty(String kimLdapNameProperty) {
234 this.kimLdapNameProperty = kimLdapNameProperty;
235 }
236
237
238
239
240
241
242 public String getKimLdapNameProperty() {
243 return kimLdapNameProperty;
244 }
245
246
247
248
249
250
251 public String getSnLdapProperty() {
252 return this.snLdapProperty;
253 }
254
255
256
257
258
259
260 public void setSnLdapProperty(String argSnLdapProperty) {
261 this.snLdapProperty = argSnLdapProperty;
262 }
263
264
265
266
267
268
269 public String getGivenNameLdapProperty() {
270 return this.givenNameLdapProperty;
271 }
272
273
274
275
276
277
278 public void setGivenNameLdapProperty(String argGivenNameLdapProperty) {
279 this.givenNameLdapProperty = argGivenNameLdapProperty;
280 }
281
282
283
284
285
286
287 public String getEntityIdKimProperty() {
288 return this.entityIdKimProperty;
289 }
290
291
292
293
294
295
296 public void setEntityIdKimProperty(String argEntityIdKimProperty) {
297 this.entityIdKimProperty = argEntityIdKimProperty;
298 }
299
300
301
302
303
304
305 public String getParameterNamespaceCode() {
306 return this.parameterNamespaceCode;
307 }
308
309
310
311
312
313
314 public void setParameterNamespaceCode(String argParameterNamespaceCode) {
315 this.parameterNamespaceCode = argParameterNamespaceCode;
316 }
317
318
319
320
321
322
323 public String getParameterDetailTypeCode() {
324 return this.parameterDetailTypeCode;
325 }
326
327
328
329
330
331
332 public void setParameterDetailTypeCode(String argParameterDetailTypeCode) {
333 this.parameterDetailTypeCode = argParameterDetailTypeCode;
334 }
335
336
337
338
339
340
341 public String getMappedParameterName() {
342 return this.mappedParameterName;
343 }
344
345
346
347
348
349
350 public void setMappedParameterName(String argMappedParameterName) {
351 this.mappedParameterName = argMappedParameterName;
352 }
353
354
355
356
357
358
359 public String getUnmappedParameterName() {
360 return this.unmappedParameterName;
361 }
362
363
364
365
366
367
368 public void setUnmappedParameterName(String argUnmappedParameterName) {
369 this.unmappedParameterName = argUnmappedParameterName;
370 }
371
372
373
374
375
376
377 public String getMappedValuesName() {
378 return this.mappedValuesName;
379 }
380
381
382
383
384
385
386 public void setMappedValuesName(String argMappedValuesName) {
387 this.mappedValuesName = argMappedValuesName;
388 }
389
390
391
392
393
394
395 public String getEmployeeIdProperty() {
396 return this.employeeIdProperty;
397 }
398
399
400
401
402
403
404 public void setEmployeeIdProperty(String argEmployeeIdProperty) {
405 this.employeeIdProperty = argEmployeeIdProperty;
406 }
407
408
409
410
411
412
413 public String getDepartmentLdapProperty() {
414 return this.departmentLdapProperty;
415 }
416
417
418
419
420
421
422 public void setDepartmentLdapProperty(String argDepartmentLdapProperty) {
423 this.departmentLdapProperty = argDepartmentLdapProperty;
424 }
425
426
427
428
429
430
431 public String getEmployeeTypeProperty() {
432 return this.employeeTypeProperty;
433 }
434
435
436
437
438
439
440 public void setEmployeeTypeProperty(String argEmployeeTypeProperty) {
441 this.employeeTypeProperty = argEmployeeTypeProperty;
442 }
443
444
445
446
447
448
449 public String getEmployeeStatusProperty() {
450 return this.employeeStatusProperty;
451 }
452
453
454
455
456
457
458 public void setEmployeeStatusProperty(String argEmployeeStatusProperty) {
459 this.employeeStatusProperty = argEmployeeStatusProperty;
460 }
461
462
463
464
465
466
467 public String getDefaultCampusCode() {
468 return this.defaultCampusCode;
469 }
470
471
472
473
474
475
476 public void setDefaultCampusCode(String argDefaultCampusCode) {
477 this.defaultCampusCode = argDefaultCampusCode;
478 }
479
480
481 public void setDefaultChartCode(String chartCode) {
482 this.defaultChartCode = chartCode;
483 }
484
485 public String getDefaultChartCode() {
486 return defaultChartCode;
487 }
488
489 public String getEmployeeAffiliationCodes() {
490 return employeeAffiliationCodes;
491 }
492
493 public void setEmployeeAffiliationCodes(String employeeAffiliationCodes) {
494 this.employeeAffiliationCodes = employeeAffiliationCodes;
495 }
496
497 public String getAffiliationMappings() {
498 return affiliationMappings;
499 }
500
501 public void setAffiliationMappings(String affiliationMappings) {
502 this.affiliationMappings = affiliationMappings;
503 }
504
505
506
507
508
509 public String getAffiliationLdapProperty() {
510 return affiliationLdapProperty;
511 }
512
513
514
515
516
517 public void setAffiliationLdapProperty(final String affiliationLdapProperty) {
518 this.affiliationLdapProperty = affiliationLdapProperty;
519 }
520
521
522
523
524
525 public String getPrimaryAffiliationLdapProperty() {
526 return primaryAffiliationLdapProperty;
527 }
528
529
530
531
532
533 public void setPrimaryAffiliationLdapProperty(final String primaryAffiliationLdapProperty) {
534 this.primaryAffiliationLdapProperty = primaryAffiliationLdapProperty;
535 }
536 }