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

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.form;
  2. import javax.servlet.http.*;
  3. import org.apache.commons.lang.*;
  4. import org.apache.struts.action.*;
  5. import org.apache.struts.validator.*;
  6. public class BlogListForm
  7.     extends ValidatorForm {
  8.   private String action;
  9.   private long blogid;
  10.   private String date;
  11.   private long sortid;
  12.   private String username;
  13.   public String getAction() {
  14.     return action;
  15.   }
  16.   public void setAction(String action) {
  17.     this.action = action;
  18.   }
  19.   public void setSortid(long sortid) {
  20.     this.sortid = sortid;
  21.   }
  22.   public void setDate(String date) {
  23.     this.date = date;
  24.   }
  25.   public void setBlogid(long blogid) {
  26.     this.blogid = blogid;
  27.   }
  28.   public void setUsername(String username) {
  29.     this.username = username;
  30.   }
  31.   public long getBlogid() {
  32.     return blogid;
  33.   }
  34.   public String getDate() {
  35.     return date;
  36.   }
  37.   public long getSortid() {
  38.     return sortid;
  39.   }
  40.   public String getUsername() {
  41.     return username;
  42.   }
  43.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  44.     ActionErrors errors = new ActionErrors();
  45.     if (StringUtils.isBlank(this.action)) {
  46.       this.action = "all";
  47.     }
  48.     if (this.blogid == 0) {
  49.       errors.add("error.parametererror", new ActionMessage("error.parametererror"));
  50.     }
  51.     if (this.page == 0) {
  52.       this.page = 1;
  53.     }
  54.     return errors;
  55.   }
  56.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  57.   }
  58. }