Package org.hoteia.qalingo.web.mvc.form

Examples of org.hoteia.qalingo.web.mvc.form.ForgottenPasswordForm


  @RequestMapping(value = FoUrls.FORGOTTEN_PASSWORD_URL, method = RequestMethod.GET)
  public ModelAndView displayForgottenPassword(final HttpServletRequest request, ModelMap modelMap) throws Exception {
    ModelAndViewThemeDevice modelAndView = new ModelAndViewThemeDevice(getCurrentVelocityPath(request), FoUrls.FORGOTTEN_PASSWORD.getVelocityPage());
   
    modelAndView.addObject("formForgottenPassword", new ForgottenPasswordForm());
   
        overrideDefaultSeoPageTitleAndMainContentTitle(request, modelAndView, FoUrls.FORGOTTEN_PASSWORD.getKey());

        return modelAndView;
  }
View Full Code Here


  /**
   *
   */
    @ModelAttribute("forgottenPasswordForm")
  protected ForgottenPasswordForm getForgottenPasswordForm(final HttpServletRequest request, final Model model) throws Exception {
      return new ForgottenPasswordForm();
  }
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.web.mvc.form.ForgottenPasswordForm

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.