Package com.springsource.greenhouse.signup

Examples of com.springsource.greenhouse.signup.SignupForm


  /**
   * A factory method that populates a {@link SignupForm} model from this Invite.
   * Pre-populates fields to make it as simple as possible for the invitee to sign up.
   */
  public SignupForm createSignupForm() {
    SignupForm form = new SignupForm();
    form.setFirstName(invitee.getFirstName());
    form.setLastName(invitee.getLastName());
    form.setEmail(invitee.getEmail());
    form.setConfirmEmail(invitee.getEmail());
    return form;
  }
View Full Code Here

TOP

Related Classes of com.springsource.greenhouse.signup.SignupForm

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.