LogonForm.java~1~
上传用户: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 httpServletRequest) {
  20.     /**@todo: finish this method, this is just the skeleton.*/
  21.     return null;
  22.   }
  23.   public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  24.   }
  25. }