LogonForm.java~3~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package firststrut;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.*;
  4. public class LogonForm extends ActionForm {
  5.   private String password;
  6.   private String username;
  7.   public void setPassword(String password) {
  8.     this.password = password;
  9.   }
  10.   public String getPassword() {
  11.     return password;
  12.   }
  13.   public void setUsername(String username) {
  14.     this.username = username;
  15.   }
  16.   public String getUsername() {
  17.     return username;
  18.   }
  19.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest request) {
  20.     /**@todo: finish this method, this is just the skeleton.*/
  21.     ActionErrors errors=new ActionErrors();
  22.     if(request.getParameter("username").equals("lsb")&& request.getParameter("password").equals("bsl")){
  23.      errors=null;
  24.      request.setAttribute("loginattem",new Boolean(true));
  25.     }else{
  26.       errors.add(username,new ActionError("invalid user"));
  27.       request.setAttribute("loginattem",new Boolean(false));
  28.     }
  29.     return errors;
  30.   }
  31.   public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  32.   }
  33. }