| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* ===================================================================
- * ForgotPasswordForm.java
- *
- * Created Feb 11, 2005 8:28:35 PM
- *
- * Copyright (c) 2005 Matt Magoffin (spamsqr@msqr.us)
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- * 02111-1307 USA
- * ===================================================================
- * $Id: ForgotPasswordForm.java 28 2009-05-04 01:19:45Z msqr $
- * ===================================================================
- */
- package magoffin.matt.ieat.web;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import magoffin.matt.ieat.AuthorizationException;
- import magoffin.matt.ieat.biz.BizContext;
- import magoffin.matt.ieat.util.LogonCommand;
- import org.springframework.validation.BindException;
- import org.springframework.web.servlet.ModelAndView;
- /**
- * Form controller for handling "forgot my password" process.
- *
- * @author Matt Magoffin (spamsqr@msqr.us)
- * @version $Revision: 28 $ $Date: 2009-05-04 13:19:45 +1200 (Mon, 04 May 2009) $
- */
- public class ForgotPasswordForm extends AbstractEatForm {
-
- @Override
- protected ModelAndView onSubmit(HttpServletRequest request,
- HttpServletResponse response, Object command, BindException errors)
- throws Exception {
- LogonCommand form = (LogonCommand)command;
- BizContext context = WebUtil.getBizContext(request, false);
- ModelAndView result = null;
- try {
- userBiz.forgotPassword(form.getLogin(),context);
- result = new ModelAndView(getSuccessView(),errors.getModel());
- } catch ( AuthorizationException e ) {
- errors.reject("error.unknown.login", "Authorization error.");
- result = showForm(request,response,errors);
- }
- return result;
- }
- }
|