Package com.secretpal.components.person

Examples of com.secretpal.components.person.SPResetPasswordPage


      SPPerson person = SPPerson.fetchSPPerson(editingContext, SPPerson.PASSWORD.is(resetPasswordCode));
      if (person == null) {
        session().errors().addNotice("The reset code you are using is invalid.");
        nextPage = pageWithName(Main.class);
      } else {
        SPResetPasswordPage resetPasswordPage = pageWithName(SPResetPasswordPage.class);
        resetPasswordPage.setPerson(person);
        nextPage = resetPasswordPage;
      }
    }
    return nextPage;
  }
View Full Code Here

TOP

Related Classes of com.secretpal.components.person.SPResetPasswordPage

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.