Package org.martinlaw.bo.utils

Examples of org.martinlaw.bo.utils.PersonUtils


  /**
   * @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;
  }
View Full Code Here


  /**
   * @return the client
   */
  public Person getClient() {
    if (personUtils == null) {
      personUtils = new PersonUtils();
    }
    client = personUtils.getPerson(client, getClientPrincipalName());
   
    return client;
  }
View Full Code Here

TOP

Related Classes of org.martinlaw.bo.utils.PersonUtils

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.