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);
}