99100101102103104105106107108109
/** * @return the client */ public org.kuali.rice.kim.api.identity.Person getPerson() { if (personUtils == null) { personUtils = new PersonUtils(); } person = personUtils.getPerson(person, getPrincipalName()); return person; }
353354355356357358359360361362363
/** * @return the client */ public Person getClient() { if (personUtils == null) { personUtils = new PersonUtils(); } client = personUtils.getPerson(client, getClientPrincipalName()); return client; }