Package org.sete.web.form.admin

Examples of org.sete.web.form.admin.ResetPasswordForm


                              HttpServletRequest request,
                              HttpServletResponse response) throws Exception {

        doAuthorization(request);

    ResetPasswordForm rpForm = (ResetPasswordForm)form;
    SeteUserProfileService service = getService(SeteUserProfileService.class);
    service.resetPassword(getAuthenticatedUser(request), rpForm.getNewPasswordConfirm());

        createSuccessMessage(request);

        return mapping.findForward(WebConstants.FORWARD_VIEW);
  }
View Full Code Here


                              HttpServletRequest request,
                              HttpServletResponse response) throws Exception {

        doAuthorization(request);

    ResetPasswordForm rpForm = (ResetPasswordForm)form;
    SeteUserProfileService service = getService(SeteUserProfileService.class);
    service.resetPassword(getAuthenticatedUser(request), rpForm.getNewPasswordConfirm());

        createSuccessMessage(request);

        return mapping.findForward("view");
  }
View Full Code Here

TOP

Related Classes of org.sete.web.form.admin.ResetPasswordForm

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.