Package com.springsource.greenhouse.account

Examples of com.springsource.greenhouse.account.Person


  /**
   * Creates a Person record from this SignupForm.
   * A Person is used as input to {@link AccountRepository} to create a new member Account.
   */
  public Person createPerson() {
    return new Person(firstName, lastName, email, password, gender, new LocalDate(year, month, day));
  }
View Full Code Here

TOP

Related Classes of com.springsource.greenhouse.account.Person

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.