Package com.springsource.greenhouse.account

Examples of com.springsource.greenhouse.account.Account


   * Records any errors in the form's BindingResult context for display to the person.
   * An optional SignupCallback may be specified for performing custom processing after successful member signup.
   */
  public boolean signup(SignupForm form, BindingResult formBinding, SignupCallback callback) {
    try {
      Account account = createAccount(form.createPerson(),callback);
      gateway.signedUp(account);
      AccountUtils.signin(account);
      if (callback != null) {
        callback.postSignup(account);
      }
View Full Code Here

TOP

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

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.