loginform.java

来自「ssh做的oa」· Java 代码 · 共 49 行

JAVA
49
字号
package com.demo.struts.forms;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;

public class LoginForm extends ActionForm {

	private static final long serialVersionUID = -8028907637588473959L;

	protected String username = null;

	protected String password = null;

	public ActionErrors validate(ActionMapping arg0, HttpServletRequest arg1) {
		ActionErrors errors = new ActionErrors();
		if (username == null || username.equals("")) {
			errors.add("username", new ActionMessage(
					"login.error.username"));
		}
		if (password == null
				|| password.equals("")) {
			errors.add("password", new ActionMessage(
					"login.error.password"));
		}
		arg1.setAttribute("loginFormBean", this);
		return errors;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}
}

⌨️ 快捷键说明

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