ChangePasswdForm.java
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.form;
  2. import javax.servlet.http.HttpServletRequest;
  3. import org.apache.commons.lang.StringUtils;
  4. import org.apache.struts.action.ActionErrors;
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.action.ActionMapping;
  7. import org.apache.struts.action.ActionMessage;
  8. import com.laoer.comm.util.Util;
  9. public class ChangePasswdForm
  10.     extends ActionForm {
  11.   private String action;
  12.   private String newpasswd;
  13.   private String newpasswdre;
  14.   private String oldpasswd;
  15.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  16.     ActionErrors errors = new ActionErrors();
  17.     if (StringUtils.isBlank(this.action)) {
  18.       this.action = "show";
  19.     }
  20.     if (this.action.equalsIgnoreCase("change")) {
  21.       if (StringUtils.isBlank(this.newpasswd) || StringUtils.isBlank(this.newpasswdre) ||
  22.           StringUtils.isBlank(this.oldpasswd)) {
  23.         errors.add("error.nullerror", new ActionMessage("error.nullerror"));
  24.       }
  25.       if (newpasswd.length() < 3 || newpasswd.length() > 25) {
  26.         errors.add("error.reg.passwd0", new ActionMessage("error.reg.passwd0"));
  27.       }
  28.       if (!newpasswd.equals(newpasswdre)) {
  29.         errors.add("error.reg.passwd1", new ActionMessage("error.reg.passwd1"));
  30.       }
  31.       newpasswdre = Util.hash(this.newpasswd);
  32.     }
  33.     return errors;
  34.   }
  35.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  36.   }
  37.   public String getAction() {
  38.     return action;
  39.   }
  40.   public String getNewpasswd() {
  41.     return newpasswd;
  42.   }
  43.   public String getNewpasswdre() {
  44.     return newpasswdre;
  45.   }
  46.   public String getOldpasswd() {
  47.     return oldpasswd;
  48.   }
  49.   public void setAction(String action) {
  50.     this.action = action;
  51.   }
  52.   public void setNewpasswd(String newpasswd) {
  53.     this.newpasswd = newpasswd;
  54.   }
  55.   public void setNewpasswdre(String newpasswdre) {
  56.     this.newpasswdre = newpasswdre;
  57.   }
  58.   public void setOldpasswd(String oldpasswd) {
  59.     this.oldpasswd = oldpasswd;
  60.   }
  61. }