⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logonform.java

📁 MVC构架
💻 JAVA
字号:
package addressbook.forms;

import addressbook.model.*;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;


public final class LogonForm
    extends ActionForm {
  private User user=new User();

  public void setUser(User user)
  {
    this.user=user;
  }

  public User getUser()
  {
    return this.user;
  }

  public String getUserName() {
    return this.user.getUserName();
  }

  public void setUserName(String userName) {
    this.user.setUserName(userName);
  }

  public String getPassword() {
   return user.getPassword();
  }

  public void setPassword(String password) {
    user.setPassword(password);
  }

  public void reset(ActionMapping mapping, HttpServletRequest request) {
    this.user=new User();
  }

  public ActionErrors validate(ActionMapping mapping,
                               HttpServletRequest request) {

    ActionErrors errors = new ActionErrors();
    if ( (this.getUserName() == null) || (this.getUserName().length() < 1))
      errors.add("userName", new ActionMessage("error.userName.required"));
    if ( (this.getPassword() == null) || (this.getPassword().length() < 1))
      errors.add("password", new ActionMessage("error.password.required"));

    return errors;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -