1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.service.impl; |
17 | |
|
18 | |
import com.google.common.collect.MapMaker; |
19 | |
import org.apache.commons.beanutils.PropertyUtils; |
20 | |
import org.apache.commons.lang.StringUtils; |
21 | |
import org.apache.log4j.Logger; |
22 | |
import org.kuali.rice.core.api.CoreApiServiceLocator; |
23 | |
import org.kuali.rice.core.api.criteria.Predicate; |
24 | |
import org.kuali.rice.core.api.criteria.QueryByCriteria; |
25 | |
import org.kuali.rice.kim.api.identity.IdentityService; |
26 | |
import org.kuali.rice.kim.api.identity.entity.EntityDefault; |
27 | |
import org.kuali.rice.kim.api.identity.entity.EntityDefaultQueryResults; |
28 | |
import org.kuali.rice.kim.api.identity.external.EntityExternalIdentifierType; |
29 | |
import org.kuali.rice.kim.api.identity.principal.Principal; |
30 | |
import org.kuali.rice.kim.api.identity.type.EntityTypeContactInfoDefault; |
31 | |
import org.kuali.rice.kim.api.role.RoleService; |
32 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
33 | |
import org.kuali.rice.kim.bo.Person; |
34 | |
import org.kuali.rice.kim.bo.impl.PersonImpl; |
35 | |
import org.kuali.rice.kim.service.PersonService; |
36 | |
import org.kuali.rice.kim.util.KIMPropertyConstants; |
37 | |
import org.kuali.rice.kns.service.BusinessObjectMetaDataService; |
38 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
39 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
40 | |
import org.kuali.rice.krad.bo.BusinessObject; |
41 | |
import org.kuali.rice.krad.bo.DataObjectRelationship; |
42 | |
import org.kuali.rice.krad.lookup.CollectionIncomplete; |
43 | |
import org.kuali.rice.krad.util.KRADConstants; |
44 | |
import org.kuali.rice.krad.util.KRADPropertyConstants; |
45 | |
import org.kuali.rice.krad.util.ObjectUtils; |
46 | |
import org.springframework.beans.factory.InitializingBean; |
47 | |
|
48 | |
import java.security.GeneralSecurityException; |
49 | |
import java.util.ArrayList; |
50 | |
import java.util.Collection; |
51 | |
import java.util.Collections; |
52 | |
import java.util.HashMap; |
53 | |
import java.util.Iterator; |
54 | |
import java.util.List; |
55 | |
import java.util.Map; |
56 | |
import java.util.concurrent.ConcurrentMap; |
57 | |
import java.util.concurrent.TimeUnit; |
58 | |
|
59 | |
import static org.kuali.rice.core.api.criteria.PredicateFactory.*; |
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | 0 | public class PersonServiceImpl implements PersonService, InitializingBean { |
68 | |
|
69 | 0 | private static Logger LOG = Logger.getLogger( PersonServiceImpl.class ); |
70 | |
protected static final String ENTITY_EXT_ID_PROPERTY_PREFIX = "externalIdentifiers."; |
71 | |
protected static final String ENTITY_AFFILIATION_PROPERTY_PREFIX = "affiliations."; |
72 | |
protected static final String ENTITY_TYPE_PROPERTY_PREFIX = "entityTypeContactInfos."; |
73 | |
protected static final String ENTITY_EMAIL_PROPERTY_PREFIX = "entityTypeContactInfos.emailAddresses."; |
74 | |
protected static final String ENTITY_PHONE_PROPERTY_PREFIX = "entityTypeContactInfos.phoneNumbers."; |
75 | |
protected static final String ENTITY_ADDRESS_PROPERTY_PREFIX = "entityTypeContactInfos.addresses."; |
76 | |
protected static final String ENTITY_NAME_PROPERTY_PREFIX = "names."; |
77 | |
protected static final String PRINCIPAL_PROPERTY_PREFIX = "principals."; |
78 | |
protected static final String ENTITY_EMPLOYEE_ID_PROPERTY_PREFIX = "employmentInformation."; |
79 | |
|
80 | |
protected static final String EXTENSION = "extension"; |
81 | |
|
82 | |
private IdentityService identityService; |
83 | |
private RoleService roleService; |
84 | |
private BusinessObjectMetaDataService businessObjectMetaDataService; |
85 | |
private MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService; |
86 | |
|
87 | |
|
88 | 0 | protected int personCacheMaxSize = 3000; |
89 | 0 | protected int personCacheMaxAgeSeconds = 3600; |
90 | |
|
91 | |
protected ConcurrentMap<String,Person> personCache; |
92 | |
|
93 | |
|
94 | 0 | protected List<String> personEntityTypeCodes = new ArrayList<String>( 4 ); |
95 | |
|
96 | 0 | private String personEntityTypeLookupCriteria = null; |
97 | |
|
98 | 0 | protected Map<String,String> baseLookupCriteria = new HashMap<String,String>(); |
99 | 0 | protected Map<String,String> criteriaConversion = new HashMap<String,String>(); |
100 | 0 | protected ArrayList<String> personCachePropertyNames = new ArrayList<String>(); |
101 | |
{ |
102 | |
|
103 | |
|
104 | 0 | baseLookupCriteria.put( KIMPropertyConstants.Person.ACTIVE, "Y" ); |
105 | 0 | baseLookupCriteria.put( ENTITY_TYPE_PROPERTY_PREFIX + KRADPropertyConstants.ACTIVE, "Y" ); |
106 | |
|
107 | |
|
108 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.ENTITY_ID, KIMPropertyConstants.Entity.ID); |
109 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.ACTIVE, PRINCIPAL_PROPERTY_PREFIX + KRADPropertyConstants.ACTIVE ); |
110 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.PRINCIPAL_ID, PRINCIPAL_PROPERTY_PREFIX + KIMPropertyConstants.Person.PRINCIPAL_ID ); |
111 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.PRINCIPAL_NAME, PRINCIPAL_PROPERTY_PREFIX + KIMPropertyConstants.Person.PRINCIPAL_NAME ); |
112 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.FIRST_NAME, "names.firstName" ); |
113 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.LAST_NAME, "names.lastName" ); |
114 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.MIDDLE_NAME, "names.middleName" ); |
115 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EMAIL_ADDRESS, "entityTypeContactInfos.emailAddresses.emailAddress" ); |
116 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.PHONE_NUMBER, "entityTypeContactInfos.phoneNumbers.phoneNumber" ); |
117 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.ADDRESS_LINE_1, "entityTypeContactInfos.addresses.line1" ); |
118 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.ADDRESS_LINE_2, "entityTypeContactInfos.addresses.line2" ); |
119 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.ADDRESS_LINE_3, "entityTypeContactInfos.addresses.line3" ); |
120 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.CITY_NAME, "entityTypeContactInfos.addresses.cityName" ); |
121 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.STATE_CODE, "entityTypeContactInfos.addresses.stateCode" ); |
122 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.POSTAL_CODE, "entityTypeContactInfos.addresses.postalCode" ); |
123 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.COUNTRY_CODE, "entityTypeContactInfos.addresses.countryCode" ); |
124 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.CAMPUS_CODE, "affiliations.campusCode" ); |
125 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.AFFILIATION_TYPE_CODE, "affiliations.affiliationTypeCode" ); |
126 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EXTERNAL_IDENTIFIER_TYPE_CODE, "externalIdentifiers.externalIdentifierTypeCode" ); |
127 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EXTERNAL_ID, "externalIdentifiers.externalId" ); |
128 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EMPLOYEE_TYPE_CODE, "employmentInformation.employeeTypeCode" ); |
129 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EMPLOYEE_STATUS_CODE, "employmentInformation.employeeStatusCode" ); |
130 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.EMPLOYEE_ID, "employmentInformation.employeeId" ); |
131 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.BASE_SALARY_AMOUNT, "employmentInformation.baseSalaryAmount" ); |
132 | 0 | criteriaConversion.put( KIMPropertyConstants.Person.PRIMARY_DEPARTMENT_CODE, "employmentInformation.primaryDepartmentCode" ); |
133 | |
|
134 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.PRINCIPAL_ID ); |
135 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.PRINCIPAL_NAME ); |
136 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.ENTITY_ID ); |
137 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.FIRST_NAME ); |
138 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.LAST_NAME ); |
139 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.MIDDLE_NAME ); |
140 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.CAMPUS_CODE ); |
141 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.EMPLOYEE_ID ); |
142 | 0 | personCachePropertyNames.add( KIMPropertyConstants.Person.PRIMARY_DEPARTMENT_CODE ); |
143 | 0 | } |
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
public Person getPerson(String principalId) { |
150 | 0 | if ( StringUtils.isBlank(principalId) ) { |
151 | 0 | return null; |
152 | |
} |
153 | |
|
154 | 0 | Person person = getPersonImplFromPrincipalIdCache( principalId ); |
155 | 0 | if ( person != null ) { |
156 | 0 | return person; |
157 | |
} |
158 | 0 | EntityDefault entity = null; |
159 | |
|
160 | 0 | Principal principal = getIdentityService().getPrincipal( principalId ); |
161 | |
|
162 | 0 | if ( principal != null ) { |
163 | 0 | entity = getIdentityService().getEntityDefault(principal.getEntityId()); |
164 | |
} |
165 | |
|
166 | |
|
167 | 0 | if (entity != null ) { |
168 | 0 | person = convertEntityToPerson( entity, principal ); |
169 | 0 | addPersonToCache( person ); |
170 | |
} |
171 | 0 | return person; |
172 | |
} |
173 | |
|
174 | |
protected PersonImpl convertEntityToPerson( EntityDefault entity, Principal principal ) { |
175 | |
try { |
176 | |
|
177 | 0 | for ( String entityTypeCode : personEntityTypeCodes ) { |
178 | 0 | EntityTypeContactInfoDefault entType = entity.getEntityType( entityTypeCode ); |
179 | |
|
180 | 0 | if ( entType == null ) { |
181 | 0 | continue; |
182 | |
} |
183 | |
|
184 | |
|
185 | 0 | return new PersonImpl( principal, entity, entityTypeCode ); |
186 | |
} |
187 | 0 | return null; |
188 | 0 | } catch ( Exception ex ) { |
189 | |
|
190 | 0 | if ( ex instanceof RuntimeException ) { |
191 | 0 | throw (RuntimeException)ex; |
192 | |
} |
193 | 0 | throw new RuntimeException( "Problem building person object", ex ); |
194 | |
} |
195 | |
} |
196 | |
|
197 | |
protected Person getPersonImplFromPrincipalNameCache( String principalName ) { |
198 | 0 | return personCache.get( "principalName="+principalName ); |
199 | |
} |
200 | |
|
201 | |
protected Person getPersonImplFromPrincipalIdCache( String principalId ) { |
202 | 0 | return personCache.get( "principalId="+principalId ); |
203 | |
} |
204 | |
|
205 | |
protected Person getPersonImplFromEmployeeIdCache( String principalId ) { |
206 | 0 | return personCache.get( "employeeId="+principalId ); |
207 | |
} |
208 | |
|
209 | |
protected void addPersonToCache( Person person ) { |
210 | 0 | if ( person != null ) { |
211 | 0 | synchronized (personCache) { |
212 | 0 | personCache.put( "principalName="+person.getPrincipalName(), person ); |
213 | 0 | personCache.put( "principalId="+person.getPrincipalId(), person ); |
214 | 0 | personCache.put( "employeeId="+person.getEmployeeId(), person ); |
215 | 0 | } |
216 | |
} |
217 | 0 | } |
218 | |
|
219 | |
public void flushPersonCaches() { |
220 | 0 | personCache.clear(); |
221 | 0 | } |
222 | |
|
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
public Person getPersonByPrincipalName(String principalName) { |
228 | 0 | if ( StringUtils.isBlank(principalName) ) { |
229 | 0 | return null; |
230 | |
} |
231 | 0 | Person person = null; |
232 | |
|
233 | 0 | person = getPersonImplFromPrincipalNameCache( principalName ); |
234 | 0 | if ( person != null ) { |
235 | 0 | return person; |
236 | |
} |
237 | 0 | EntityDefault entity = null; |
238 | |
|
239 | 0 | Principal principal = getIdentityService().getPrincipalByPrincipalName( principalName ); |
240 | |
|
241 | 0 | if ( principal != null ) { |
242 | 0 | entity = getIdentityService().getEntityDefault(principal.getEntityId()); |
243 | |
} |
244 | |
|
245 | 0 | if ( entity != null ) { |
246 | 0 | person = convertEntityToPerson( entity, principal ); |
247 | |
} |
248 | 0 | addPersonToCache( person ); |
249 | 0 | return person; |
250 | |
} |
251 | |
|
252 | |
public Person getPersonByEmployeeId(String employeeId) { |
253 | 0 | if ( StringUtils.isBlank( employeeId ) ) { |
254 | 0 | return null; |
255 | |
} |
256 | |
|
257 | 0 | Person person = getPersonImplFromEmployeeIdCache( employeeId ); |
258 | 0 | if ( person != null ) { |
259 | 0 | return person; |
260 | |
} |
261 | |
|
262 | 0 | Map<String,String> criteria = new HashMap<String,String>( 1 ); |
263 | 0 | criteria.put( KIMPropertyConstants.Person.EMPLOYEE_ID, employeeId ); |
264 | 0 | List<Person> people = findPeople( criteria ); |
265 | 0 | if ( !people.isEmpty() ) { |
266 | 0 | person = people.get(0); |
267 | 0 | addPersonToCache( person ); |
268 | |
} |
269 | 0 | return person; |
270 | |
} |
271 | |
|
272 | |
|
273 | |
|
274 | |
|
275 | |
public List<Person> findPeople(Map<String, String> criteria) { |
276 | 0 | return findPeople(criteria, true); |
277 | |
} |
278 | |
|
279 | |
|
280 | |
|
281 | |
|
282 | |
public List<Person> findPeople(Map<String, String> criteria, boolean unbounded) { |
283 | 0 | List<Person> people = null; |
284 | |
|
285 | 0 | if ( criteria == null ) { |
286 | 0 | criteria = Collections.emptyMap(); |
287 | |
} |
288 | |
|
289 | 0 | criteria = new HashMap<String, String>( criteria ); |
290 | |
|
291 | |
|
292 | 0 | String roleName = criteria.get( "lookupRoleName" ); |
293 | 0 | String namespaceCode = criteria.get( "lookupRoleNamespaceCode" ); |
294 | 0 | criteria.remove("lookupRoleName"); |
295 | 0 | criteria.remove("lookupRoleNamespaceCode"); |
296 | 0 | if ( StringUtils.isNotBlank(namespaceCode) && StringUtils.isNotBlank(roleName) ) { |
297 | 0 | Integer searchResultsLimit = org.kuali.rice.kns.lookup.LookupUtils.getSearchResultsLimit(PersonImpl.class); |
298 | 0 | int searchResultsLimitInt = Integer.MAX_VALUE; |
299 | 0 | if (searchResultsLimit != null) { |
300 | 0 | searchResultsLimitInt = searchResultsLimit.intValue(); |
301 | |
} |
302 | 0 | if ( LOG.isDebugEnabled() ) { |
303 | 0 | LOG.debug("Performing Person search including role filter: " + namespaceCode + "/" + roleName ); |
304 | |
} |
305 | 0 | if ( criteria.size() == 1 && criteria.containsKey(KIMPropertyConstants.Person.ACTIVE) ) { |
306 | 0 | if ( LOG.isDebugEnabled() ) { |
307 | 0 | LOG.debug( "Only active criteria specified, running role search first" ); |
308 | |
} |
309 | |
|
310 | 0 | Collection<String> principalIds = getRoleService().getRoleMemberPrincipalIds(namespaceCode, roleName, null); |
311 | 0 | StringBuffer sb = new StringBuffer(principalIds.size()*15); |
312 | 0 | Iterator<String> pi = principalIds.iterator(); |
313 | 0 | while ( pi.hasNext() ) { |
314 | 0 | sb.append( pi.next() ); |
315 | 0 | if ( pi.hasNext() ) sb.append( '|' ); |
316 | |
} |
317 | |
|
318 | 0 | criteria.put( KIMPropertyConstants.Person.PRINCIPAL_ID, sb.toString() ); |
319 | 0 | people = findPeopleInternal(criteria, false); |
320 | 0 | } else if ( !criteria.isEmpty() ) { |
321 | 0 | if ( LOG.isDebugEnabled() ) { |
322 | 0 | LOG.debug( "Person criteria also specified, running that search first" ); |
323 | |
} |
324 | |
|
325 | 0 | people = findPeopleInternal(criteria, true); |
326 | |
|
327 | |
|
328 | 0 | List<String> principalIds = peopleToPrincipalIds( people ); |
329 | |
|
330 | 0 | principalIds = getRoleService().getPrincipalIdSubListWithRole(principalIds, namespaceCode, roleName, null); |
331 | |
|
332 | 0 | if ( !unbounded && principalIds.size() > searchResultsLimitInt ) { |
333 | 0 | int actualResultSize = principalIds.size(); |
334 | |
|
335 | 0 | principalIds = new ArrayList<String>(principalIds).subList(0, searchResultsLimitInt); |
336 | 0 | people = getPeople(principalIds); |
337 | 0 | people = new CollectionIncomplete<Person>( people.subList(0, searchResultsLimitInt), new Long(actualResultSize) ); |
338 | 0 | } else { |
339 | 0 | people = getPeople(principalIds); |
340 | |
} |
341 | 0 | } else { |
342 | 0 | if ( LOG.isDebugEnabled() ) { |
343 | 0 | LOG.debug( "No Person criteria specified - only using role service." ); |
344 | |
} |
345 | |
|
346 | 0 | Collection<String> principalIds = getRoleService().getRoleMemberPrincipalIds(namespaceCode, roleName, null); |
347 | 0 | if ( !unbounded && principalIds.size() > searchResultsLimitInt ) { |
348 | 0 | int actualResultSize = principalIds.size(); |
349 | |
|
350 | 0 | principalIds = new ArrayList<String>(principalIds).subList(0, searchResultsLimitInt); |
351 | 0 | people = getPeople(principalIds); |
352 | 0 | people = new CollectionIncomplete<Person>( people.subList(0, searchResultsLimitInt), new Long(actualResultSize) ); |
353 | 0 | } else { |
354 | 0 | people = getPeople(principalIds); |
355 | |
} |
356 | |
} |
357 | 0 | } else { |
358 | 0 | if ( LOG.isDebugEnabled() ) { |
359 | 0 | LOG.debug( "No Role criteria specified, running person lookup as normal." ); |
360 | |
} |
361 | 0 | people = findPeopleInternal(criteria, unbounded); |
362 | |
} |
363 | 0 | return people; |
364 | |
} |
365 | |
|
366 | |
@SuppressWarnings("unchecked") |
367 | |
protected List<Person> findPeopleInternal(Map<String,String> criteria, boolean unbounded ) { |
368 | |
|
369 | |
|
370 | |
|
371 | 0 | Map<String,String> entityCriteria = convertPersonPropertiesToEntityProperties( criteria ); |
372 | |
|
373 | 0 | QueryByCriteria.Builder queryBuilder = QueryByCriteria.Builder.create(); |
374 | 0 | List<Predicate> predicates = new ArrayList<Predicate>(); |
375 | 0 | for (String key : entityCriteria.keySet()) { |
376 | |
|
377 | 0 | if (entityCriteria.get(key).contains("|")) { |
378 | 0 | String[] values = entityCriteria.get(key).split("\\|"); |
379 | 0 | predicates.add(in(key, values)); |
380 | 0 | } else { |
381 | 0 | predicates.add(equal(key, entityCriteria.get(key))); |
382 | |
} |
383 | |
} |
384 | 0 | if (!predicates.isEmpty()) { |
385 | 0 | queryBuilder.setPredicates(and(predicates.toArray(new Predicate[] {}))); |
386 | |
} |
387 | |
|
388 | 0 | List<Person> people = new ArrayList<Person>(); |
389 | |
|
390 | 0 | EntityDefaultQueryResults qr = getIdentityService().findEntityDefaults( queryBuilder.build() ); |
391 | |
|
392 | 0 | for ( EntityDefault e : qr.getResults() ) { |
393 | |
|
394 | 0 | for ( Principal p : e.getPrincipals() ) { |
395 | 0 | people.add( convertEntityToPerson( e, p ) ); |
396 | |
} |
397 | |
} |
398 | |
|
399 | 0 | return people; |
400 | |
} |
401 | |
|
402 | |
public Map<String,String> convertPersonPropertiesToEntityProperties( Map<String,String> criteria ) { |
403 | 0 | if ( LOG.isDebugEnabled() ) { |
404 | 0 | LOG.debug( "convertPersonPropertiesToEntityProperties: " + criteria ); |
405 | |
} |
406 | 0 | boolean nameCriteria = false; |
407 | 0 | boolean addressCriteria = false; |
408 | 0 | boolean externalIdentifierCriteria = false; |
409 | 0 | boolean affiliationCriteria = false; |
410 | 0 | boolean affiliationDefaultOnlyCriteria = false; |
411 | 0 | boolean phoneCriteria = false; |
412 | 0 | boolean emailCriteria = false; |
413 | 0 | boolean employeeIdCriteria = false; |
414 | |
|
415 | 0 | HashMap<String,String> newCriteria = new HashMap<String,String>(); |
416 | 0 | newCriteria.putAll( baseLookupCriteria ); |
417 | |
|
418 | 0 | newCriteria.put( "entityTypeContactInfos.entityTypeCode", personEntityTypeLookupCriteria ); |
419 | |
|
420 | 0 | if ( criteria != null ) { |
421 | 0 | for ( String key : criteria.keySet() ) { |
422 | |
|
423 | |
|
424 | 0 | if(key.equals(KIMPropertyConstants.Person.ACTIVE)) { |
425 | 0 | newCriteria.put(KIMPropertyConstants.Person.ACTIVE, criteria.get(KIMPropertyConstants.Person.ACTIVE)); |
426 | |
} |
427 | |
|
428 | |
|
429 | 0 | if ( StringUtils.isEmpty( criteria.get(key) ) ) { |
430 | 0 | continue; |
431 | |
} |
432 | |
|
433 | |
|
434 | 0 | if ( key.equals( KIMPropertyConstants.Person.EXTERNAL_ID ) && StringUtils.isNotBlank(criteria.get(key)) ) { |
435 | |
|
436 | 0 | if ( criteria.containsKey( KIMPropertyConstants.Person.EXTERNAL_IDENTIFIER_TYPE_CODE ) ) { |
437 | 0 | String extIdTypeCode = criteria.get(KIMPropertyConstants.Person.EXTERNAL_IDENTIFIER_TYPE_CODE); |
438 | 0 | if ( StringUtils.isNotBlank(extIdTypeCode) ) { |
439 | |
|
440 | 0 | EntityExternalIdentifierType extIdType = getIdentityService().getExternalIdentifierType(extIdTypeCode); |
441 | |
|
442 | 0 | if ( extIdType != null && extIdType.isEncryptionRequired() ) { |
443 | |
try { |
444 | 0 | criteria.put(key, |
445 | |
CoreApiServiceLocator.getEncryptionService().encrypt(criteria.get(key)) |
446 | |
); |
447 | 0 | } catch (GeneralSecurityException ex) { |
448 | 0 | LOG.error("Unable to encrypt value for external ID search of type " + extIdTypeCode, ex ); |
449 | 0 | } |
450 | |
} |
451 | |
} |
452 | |
} |
453 | |
} |
454 | |
|
455 | |
|
456 | 0 | String entityProperty = criteriaConversion.get( key ); |
457 | 0 | if ( entityProperty != null ) { |
458 | 0 | newCriteria.put( entityProperty, criteria.get( key ) ); |
459 | |
} else { |
460 | 0 | entityProperty = key; |
461 | |
|
462 | 0 | newCriteria.put( key, criteria.get( key ) ); |
463 | |
} |
464 | |
|
465 | 0 | if ( isNameEntityCriteria( entityProperty ) ) { |
466 | 0 | nameCriteria = true; |
467 | |
} |
468 | 0 | if ( isExternalIdentifierEntityCriteria( entityProperty ) ) { |
469 | 0 | externalIdentifierCriteria = true; |
470 | |
} |
471 | 0 | if ( isAffiliationEntityCriteria( entityProperty ) ) { |
472 | 0 | affiliationCriteria = true; |
473 | |
} |
474 | 0 | if ( isAddressEntityCriteria( entityProperty ) ) { |
475 | 0 | addressCriteria = true; |
476 | |
} |
477 | 0 | if ( isPhoneEntityCriteria( entityProperty ) ) { |
478 | 0 | phoneCriteria = true; |
479 | |
} |
480 | 0 | if ( isEmailEntityCriteria( entityProperty ) ) { |
481 | 0 | emailCriteria = true; |
482 | |
} |
483 | 0 | if ( isEmployeeIdEntityCriteria( entityProperty ) ) { |
484 | 0 | employeeIdCriteria = true; |
485 | |
} |
486 | |
|
487 | |
|
488 | 0 | if ( key.equals( "campusCode" ) ) { |
489 | 0 | affiliationDefaultOnlyCriteria = true; |
490 | |
} |
491 | 0 | } |
492 | 0 | if ( nameCriteria ) { |
493 | 0 | newCriteria.put( ENTITY_NAME_PROPERTY_PREFIX + "active", "Y" ); |
494 | 0 | newCriteria.put( ENTITY_NAME_PROPERTY_PREFIX + "defaultValue", "Y" ); |
495 | |
|
496 | |
} |
497 | 0 | if ( addressCriteria ) { |
498 | 0 | newCriteria.put( ENTITY_ADDRESS_PROPERTY_PREFIX + "active", "Y" ); |
499 | 0 | newCriteria.put( ENTITY_ADDRESS_PROPERTY_PREFIX + "defaultValue", "Y" ); |
500 | |
} |
501 | 0 | if ( phoneCriteria ) { |
502 | 0 | newCriteria.put( ENTITY_PHONE_PROPERTY_PREFIX + "active", "Y" ); |
503 | 0 | newCriteria.put( ENTITY_PHONE_PROPERTY_PREFIX + "defaultValue", "Y" ); |
504 | |
} |
505 | 0 | if ( emailCriteria ) { |
506 | 0 | newCriteria.put( ENTITY_EMAIL_PROPERTY_PREFIX + "active", "Y" ); |
507 | 0 | newCriteria.put( ENTITY_EMAIL_PROPERTY_PREFIX + "defaultValue", "Y" ); |
508 | |
} |
509 | 0 | if ( employeeIdCriteria ) { |
510 | 0 | newCriteria.put( ENTITY_EMPLOYEE_ID_PROPERTY_PREFIX + "active", "Y" ); |
511 | 0 | newCriteria.put( ENTITY_EMPLOYEE_ID_PROPERTY_PREFIX + "primary", "Y" ); |
512 | |
} |
513 | 0 | if ( affiliationCriteria ) { |
514 | 0 | newCriteria.put( ENTITY_AFFILIATION_PROPERTY_PREFIX + "active", "Y" ); |
515 | |
} |
516 | 0 | if ( affiliationDefaultOnlyCriteria ) { |
517 | 0 | newCriteria.put( ENTITY_AFFILIATION_PROPERTY_PREFIX + "defaultValue", "Y" ); |
518 | |
} |
519 | |
} |
520 | |
|
521 | 0 | if ( LOG.isDebugEnabled() ) { |
522 | 0 | LOG.debug( "Converted: " + newCriteria ); |
523 | |
} |
524 | 0 | return newCriteria; |
525 | |
} |
526 | |
|
527 | |
protected boolean isNameEntityCriteria( String propertyName ) { |
528 | 0 | return propertyName.startsWith( ENTITY_NAME_PROPERTY_PREFIX ); |
529 | |
} |
530 | |
protected boolean isAddressEntityCriteria( String propertyName ) { |
531 | 0 | return propertyName.startsWith( ENTITY_ADDRESS_PROPERTY_PREFIX ); |
532 | |
} |
533 | |
protected boolean isPhoneEntityCriteria( String propertyName ) { |
534 | 0 | return propertyName.startsWith( ENTITY_PHONE_PROPERTY_PREFIX ); |
535 | |
} |
536 | |
protected boolean isEmailEntityCriteria( String propertyName ) { |
537 | 0 | return propertyName.startsWith( ENTITY_EMAIL_PROPERTY_PREFIX ); |
538 | |
} |
539 | |
protected boolean isEmployeeIdEntityCriteria( String propertyName ) { |
540 | 0 | return propertyName.startsWith( ENTITY_EMPLOYEE_ID_PROPERTY_PREFIX ); |
541 | |
} |
542 | |
protected boolean isAffiliationEntityCriteria( String propertyName ) { |
543 | 0 | return propertyName.startsWith( ENTITY_AFFILIATION_PROPERTY_PREFIX ); |
544 | |
} |
545 | |
protected boolean isExternalIdentifierEntityCriteria( String propertyName ) { |
546 | 0 | return propertyName.startsWith( ENTITY_EXT_ID_PROPERTY_PREFIX ); |
547 | |
} |
548 | |
|
549 | |
|
550 | |
|
551 | |
|
552 | |
|
553 | |
|
554 | |
public List<String> getPersonEntityTypeCodes() { |
555 | 0 | return this.personEntityTypeCodes; |
556 | |
} |
557 | |
|
558 | |
public void setPersonEntityTypeCodes(List<String> personEntityTypeCodes) { |
559 | 0 | this.personEntityTypeCodes = personEntityTypeCodes; |
560 | 0 | personEntityTypeLookupCriteria = null; |
561 | 0 | for ( String entityTypeCode : personEntityTypeCodes ) { |
562 | 0 | if ( personEntityTypeLookupCriteria == null ) { |
563 | 0 | personEntityTypeLookupCriteria = entityTypeCode; |
564 | |
} else { |
565 | 0 | personEntityTypeLookupCriteria = personEntityTypeLookupCriteria + "|" + entityTypeCode; |
566 | |
} |
567 | |
} |
568 | 0 | } |
569 | |
|
570 | |
|
571 | |
protected List<Person> getPeople( Collection<String> principalIds ) { |
572 | 0 | List<Person> people = new ArrayList<Person>( principalIds.size() ); |
573 | 0 | for ( String principalId : principalIds ) { |
574 | 0 | people.add( getPerson(principalId) ); |
575 | |
} |
576 | 0 | return people; |
577 | |
} |
578 | |
|
579 | |
protected List<String> peopleToPrincipalIds( List<Person> people ) { |
580 | 0 | List<String> principalIds = new ArrayList<String>(); |
581 | |
|
582 | 0 | for ( Person person : people ) { |
583 | 0 | principalIds.add( person.getPrincipalId() ); |
584 | |
} |
585 | |
|
586 | 0 | return principalIds; |
587 | |
} |
588 | |
|
589 | |
|
590 | |
|
591 | |
|
592 | |
public List<Person> getPersonByExternalIdentifier(String externalIdentifierTypeCode, String externalId) { |
593 | 0 | if (StringUtils.isBlank( externalIdentifierTypeCode ) || StringUtils.isBlank( externalId ) ) { |
594 | 0 | return null; |
595 | |
} |
596 | 0 | Map<String,String> criteria = new HashMap<String,String>( 2 ); |
597 | 0 | criteria.put( KIMPropertyConstants.Person.EXTERNAL_IDENTIFIER_TYPE_CODE, externalIdentifierTypeCode ); |
598 | 0 | criteria.put( KIMPropertyConstants.Person.EXTERNAL_ID, externalId ); |
599 | 0 | return findPeople( criteria ); |
600 | |
} |
601 | |
|
602 | |
|
603 | |
|
604 | |
|
605 | |
public Person updatePersonIfNecessary(String sourcePrincipalId, Person currentPerson ) { |
606 | 0 | if (currentPerson == null |
607 | |
|| !StringUtils.equals(sourcePrincipalId, currentPerson.getPrincipalId() ) |
608 | |
|| currentPerson.getEntityId() == null ) { |
609 | 0 | Person person = getPerson( sourcePrincipalId ); |
610 | |
|
611 | |
|
612 | 0 | if ( person == null ) { |
613 | 0 | if ( currentPerson != null && currentPerson.getEntityId() == null ) { |
614 | 0 | return currentPerson; |
615 | |
} |
616 | |
} |
617 | |
|
618 | 0 | if ( person == null && currentPerson == null ) { |
619 | |
try { |
620 | 0 | return new PersonImpl(); |
621 | 0 | } catch ( Exception ex ) { |
622 | 0 | LOG.error( "unable to instantiate an object of type: " + getPersonImplementationClass() + " - returning null", ex ); |
623 | 0 | return null; |
624 | |
} |
625 | |
} |
626 | 0 | return person; |
627 | |
} |
628 | |
|
629 | 0 | return currentPerson; |
630 | |
} |
631 | |
|
632 | |
|
633 | |
|
634 | |
|
635 | |
|
636 | |
private Map<String,String> getNonPersonSearchCriteria( BusinessObject bo, Map<String,String> fieldValues) { |
637 | 0 | Map<String,String> nonUniversalUserSearchCriteria = new HashMap<String,String>(); |
638 | 0 | for ( String propertyName : fieldValues.keySet() ) { |
639 | 0 | if (!isPersonProperty(bo, propertyName)) { |
640 | 0 | nonUniversalUserSearchCriteria.put(propertyName, fieldValues.get(propertyName)); |
641 | |
} |
642 | |
} |
643 | 0 | return nonUniversalUserSearchCriteria; |
644 | |
} |
645 | |
|
646 | |
|
647 | |
private boolean isPersonProperty(BusinessObject bo, String propertyName) { |
648 | |
try { |
649 | 0 | if ( ObjectUtils.isNestedAttribute( propertyName ) |
650 | |
&& !StringUtils.contains(propertyName, "add.") ) { |
651 | 0 | Class<?> type = PropertyUtils.getPropertyType(bo, ObjectUtils.getNestedAttributePrefix( propertyName )); |
652 | |
|
653 | 0 | if ( type != null ) { |
654 | 0 | return Person.class.isAssignableFrom(type); |
655 | |
} |
656 | 0 | LOG.warn( "Unable to determine type of nested property: " + bo.getClass().getName() + " / " + propertyName ); |
657 | |
} |
658 | 0 | } catch (Exception ex) { |
659 | 0 | if ( LOG.isDebugEnabled() ) { |
660 | 0 | LOG.debug("Unable to determine if property on " + bo.getClass().getName() + " to a person object: " + propertyName, ex ); |
661 | |
} |
662 | 0 | } |
663 | 0 | return false; |
664 | |
} |
665 | |
|
666 | |
|
667 | |
|
668 | |
|
669 | |
public boolean hasPersonProperty(Class<? extends BusinessObject> businessObjectClass, Map<String,String> fieldValues) { |
670 | 0 | if ( businessObjectClass == null || fieldValues == null ) { |
671 | 0 | return false; |
672 | |
} |
673 | |
try { |
674 | 0 | BusinessObject bo = businessObjectClass.newInstance(); |
675 | 0 | for ( String propertyName : fieldValues.keySet() ) { |
676 | 0 | if (isPersonProperty(bo, propertyName)) { |
677 | 0 | return true; |
678 | |
} |
679 | |
} |
680 | 0 | } catch (Exception ex) { |
681 | 0 | if ( LOG.isDebugEnabled() ) { |
682 | 0 | LOG.debug( "Error instantiating business object class passed into hasPersonProperty", ex ); |
683 | |
} |
684 | |
|
685 | 0 | } |
686 | 0 | return false; |
687 | |
} |
688 | |
|
689 | |
|
690 | |
|
691 | |
|
692 | |
@SuppressWarnings("unchecked") |
693 | |
public Map<String,String> resolvePrincipalNamesToPrincipalIds(BusinessObject businessObject, Map<String,String> fieldValues) { |
694 | 0 | if ( fieldValues == null ) { |
695 | 0 | return null; |
696 | |
} |
697 | 0 | if ( businessObject == null ) { |
698 | 0 | return fieldValues; |
699 | |
} |
700 | 0 | StringBuffer resolvedPrincipalIdPropertyName = new StringBuffer(); |
701 | |
|
702 | |
|
703 | 0 | Map<String,String> processedFieldValues = getNonPersonSearchCriteria(businessObject, fieldValues); |
704 | 0 | for ( String propertyName : fieldValues.keySet() ) { |
705 | 0 | if ( !StringUtils.isBlank(fieldValues.get(propertyName)) |
706 | |
&& isPersonProperty(businessObject, propertyName) |
707 | |
) { |
708 | |
|
709 | 0 | String personPropertyName = ObjectUtils.getNestedAttributePrimitive( propertyName ); |
710 | |
|
711 | 0 | if ( StringUtils.equals( KIMPropertyConstants.Person.PRINCIPAL_NAME, personPropertyName) ) { |
712 | 0 | Class targetBusinessObjectClass = null; |
713 | 0 | BusinessObject targetBusinessObject = null; |
714 | 0 | resolvedPrincipalIdPropertyName.setLength( 0 ); |
715 | |
|
716 | |
|
717 | 0 | String personReferenceObjectPropertyName = ObjectUtils.getNestedAttributePrefix( propertyName ); |
718 | |
|
719 | |
|
720 | 0 | if ( ObjectUtils.isNestedAttribute( personReferenceObjectPropertyName ) ) { |
721 | 0 | String targetBusinessObjectPropertyName = ObjectUtils.getNestedAttributePrefix( personReferenceObjectPropertyName ); |
722 | 0 | targetBusinessObject = (BusinessObject)ObjectUtils.getPropertyValue( businessObject, targetBusinessObjectPropertyName ); |
723 | 0 | if (targetBusinessObject != null) { |
724 | 0 | targetBusinessObjectClass = targetBusinessObject.getClass(); |
725 | 0 | resolvedPrincipalIdPropertyName.append(targetBusinessObjectPropertyName).append("."); |
726 | |
} else { |
727 | 0 | LOG.error("Could not find target property '"+propertyName+"' in class "+businessObject.getClass().getName()+". Property value was null."); |
728 | |
} |
729 | 0 | } else { |
730 | 0 | targetBusinessObjectClass = businessObject.getClass(); |
731 | 0 | targetBusinessObject = businessObject; |
732 | |
} |
733 | |
|
734 | 0 | if (targetBusinessObjectClass != null) { |
735 | |
|
736 | |
|
737 | |
|
738 | 0 | String propName = ObjectUtils.getNestedAttributePrimitive( personReferenceObjectPropertyName ); |
739 | 0 | DataObjectRelationship rel = getBusinessObjectMetaDataService().getBusinessObjectRelationship( targetBusinessObject, propName ); |
740 | 0 | if ( rel != null ) { |
741 | 0 | String sourcePrimitivePropertyName = rel.getParentAttributeForChildAttribute(KIMPropertyConstants.Person.PRINCIPAL_ID); |
742 | 0 | resolvedPrincipalIdPropertyName.append(sourcePrimitivePropertyName); |
743 | |
|
744 | 0 | String principalName = fieldValues.get( propertyName ); |
745 | 0 | Principal principal = getIdentityService().getPrincipalByPrincipalName( principalName ); |
746 | 0 | if (principal != null ) { |
747 | 0 | processedFieldValues.put(resolvedPrincipalIdPropertyName.toString(), principal.getPrincipalId()); |
748 | |
} else { |
749 | 0 | processedFieldValues.put(resolvedPrincipalIdPropertyName.toString(), null); |
750 | |
try { |
751 | |
|
752 | |
|
753 | |
|
754 | |
|
755 | 0 | ObjectUtils.setObjectProperty(targetBusinessObject, resolvedPrincipalIdPropertyName.toString(), null ); |
756 | 0 | ObjectUtils.setObjectProperty(targetBusinessObject, propName, null ); |
757 | 0 | ObjectUtils.setObjectProperty(targetBusinessObject, propName + ".principalName", principalName ); |
758 | 0 | } catch ( Exception ex ) { |
759 | 0 | LOG.error( "Unable to blank out the person object after finding that the person with the given principalName does not exist.", ex ); |
760 | 0 | } |
761 | |
} |
762 | 0 | } else { |
763 | 0 | LOG.error( "Missing relationship for " + propName + " on " + targetBusinessObjectClass.getName() ); |
764 | |
} |
765 | 0 | } else { |
766 | 0 | processedFieldValues.put(resolvedPrincipalIdPropertyName.toString(), null); |
767 | |
} |
768 | |
} |
769 | |
|
770 | |
|
771 | |
|
772 | 0 | } else if (propertyName.endsWith("." + KIMPropertyConstants.Person.PRINCIPAL_NAME)){ |
773 | |
|
774 | 0 | String principalName = fieldValues.get(propertyName); |
775 | 0 | if ( StringUtils.isNotEmpty( principalName ) ) { |
776 | 0 | String containerPropertyName = propertyName; |
777 | 0 | if (containerPropertyName.startsWith(KRADConstants.MAINTENANCE_ADD_PREFIX)) { |
778 | 0 | containerPropertyName = StringUtils.substringAfter( propertyName, KRADConstants.MAINTENANCE_ADD_PREFIX ); |
779 | |
} |
780 | |
|
781 | |
|
782 | |
|
783 | 0 | if ( ObjectUtils.isNestedAttribute( containerPropertyName ) ) { |
784 | |
|
785 | 0 | String collectionName = StringUtils.substringBefore( containerPropertyName, "." ); |
786 | |
|
787 | |
|
788 | |
|
789 | 0 | Class<? extends BusinessObject> collectionBusinessObjectClass = getMaintenanceDocumentDictionaryService() |
790 | |
.getCollectionBusinessObjectClass( |
791 | |
getMaintenanceDocumentDictionaryService() |
792 | |
.getDocumentTypeName(businessObject.getClass()), collectionName); |
793 | 0 | if (collectionBusinessObjectClass != null) { |
794 | |
|
795 | |
|
796 | 0 | List<DataObjectRelationship> relationships = |
797 | |
getBusinessObjectMetaDataService().getBusinessObjectRelationships( collectionBusinessObjectClass ); |
798 | |
|
799 | |
|
800 | 0 | for ( DataObjectRelationship rel : relationships ) { |
801 | 0 | String parentAttribute = rel.getParentAttributeForChildAttribute( KIMPropertyConstants.Person.PRINCIPAL_ID ); |
802 | 0 | if ( parentAttribute == null ) { |
803 | 0 | continue; |
804 | |
} |
805 | |
|
806 | 0 | processedFieldValues.remove( propertyName ); |
807 | 0 | String fieldPrefix = StringUtils.substringBeforeLast( StringUtils.substringBeforeLast( propertyName, "." + KIMPropertyConstants.Person.PRINCIPAL_NAME ), "." ); |
808 | 0 | String relatedPrincipalIdPropertyName = fieldPrefix + "." + parentAttribute; |
809 | |
|
810 | 0 | if(EXTENSION.equals(StringUtils.substringAfterLast(fieldPrefix, ".")) && EXTENSION.equals(StringUtils.substringBefore(parentAttribute, "."))) |
811 | |
{ |
812 | 0 | relatedPrincipalIdPropertyName = fieldPrefix + "." + StringUtils.substringAfter(parentAttribute, "."); |
813 | |
} |
814 | 0 | String currRelatedPersonPrincipalId = processedFieldValues.get(relatedPrincipalIdPropertyName); |
815 | 0 | if ( StringUtils.isBlank( currRelatedPersonPrincipalId ) ) { |
816 | 0 | Principal principal = getIdentityService().getPrincipalByPrincipalName( principalName ); |
817 | 0 | if ( principal != null ) { |
818 | 0 | processedFieldValues.put(relatedPrincipalIdPropertyName, principal.getPrincipalId()); |
819 | |
} else { |
820 | 0 | processedFieldValues.put(relatedPrincipalIdPropertyName, null); |
821 | |
} |
822 | |
} |
823 | 0 | } |
824 | 0 | } else { |
825 | 0 | if ( LOG.isDebugEnabled() ) { |
826 | 0 | LOG.debug( "Unable to determine class for collection referenced as part of property: " + containerPropertyName + " on " + businessObject.getClass().getName() ); |
827 | |
} |
828 | |
} |
829 | 0 | } else { |
830 | 0 | if ( LOG.isDebugEnabled() ) { |
831 | 0 | LOG.debug( "Non-nested property ending with 'principalName': " + containerPropertyName + " on " + businessObject.getClass().getName() ); |
832 | |
} |
833 | |
} |
834 | |
} |
835 | 0 | } |
836 | |
} |
837 | 0 | return processedFieldValues; |
838 | |
} |
839 | |
|
840 | |
|
841 | |
|
842 | |
protected IdentityService getIdentityService() { |
843 | 0 | if ( identityService == null ) { |
844 | 0 | identityService = KimApiServiceLocator.getIdentityService(); |
845 | |
} |
846 | 0 | return identityService; |
847 | |
} |
848 | |
|
849 | |
protected RoleService getRoleService() { |
850 | 0 | if ( roleService == null ) { |
851 | 0 | roleService = KimApiServiceLocator.getRoleService(); |
852 | |
} |
853 | 0 | return roleService; |
854 | |
} |
855 | |
|
856 | |
|
857 | |
public Class<? extends Person> getPersonImplementationClass() { |
858 | 0 | return PersonImpl.class; |
859 | |
} |
860 | |
|
861 | |
protected BusinessObjectMetaDataService getBusinessObjectMetaDataService() { |
862 | 0 | if ( businessObjectMetaDataService == null ) { |
863 | 0 | businessObjectMetaDataService = KNSServiceLocator.getBusinessObjectMetaDataService(); |
864 | |
} |
865 | 0 | return businessObjectMetaDataService; |
866 | |
} |
867 | |
|
868 | |
protected MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() { |
869 | 0 | if ( maintenanceDocumentDictionaryService == null ) { |
870 | 0 | maintenanceDocumentDictionaryService = KNSServiceLocator.getMaintenanceDocumentDictionaryService(); |
871 | |
} |
872 | 0 | return maintenanceDocumentDictionaryService; |
873 | |
} |
874 | |
|
875 | |
public void setPersonCacheMaxSize(int personCacheMaxSize) { |
876 | 0 | this.personCacheMaxSize = personCacheMaxSize; |
877 | 0 | } |
878 | |
|
879 | |
public void setPersonCacheMaxAgeSeconds(int personCacheMaxAgeSeconds) { |
880 | 0 | this.personCacheMaxAgeSeconds = personCacheMaxAgeSeconds; |
881 | 0 | } |
882 | |
|
883 | |
@Override |
884 | |
public void afterPropertiesSet() throws Exception { |
885 | 0 | personCache = new MapMaker().expireAfterAccess(personCacheMaxAgeSeconds, TimeUnit.SECONDS).maximumSize(personCacheMaxSize).softValues().makeMap(); |
886 | 0 | } |
887 | |
} |