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

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.form;
  2. import org.apache.struts.action.*;
  3. import javax.servlet.http.HttpServletRequest;
  4. import org.apache.commons.lang.*;
  5. public class IndexForm
  6.     extends ActionForm {
  7.   private long id;
  8.   private String username;
  9.   public long getId() {
  10.     return id;
  11.   }
  12.   public void setId(long id) {
  13.     this.id = id;
  14.   }
  15.   public void setUsername(String username) {
  16.     this.username = username;
  17.   }
  18.   public String getUsername() {
  19.     return username;
  20.   }
  21.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  22.     ActionErrors errors = new ActionErrors();
  23.     if (StringUtils.isBlank(this.getUsername())) {
  24.       errors.add("error.parametererror", new ActionMessage("error.parametererror"));
  25.     }
  26.     return errors;
  27.   }
  28.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  29.   }
  30. }