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

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.form;
  2. import org.apache.struts.validator.ValidatorForm;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionMapping;
  5. import javax.servlet.http.HttpServletRequest;
  6. import org.apache.commons.lang.*;
  7. public class NoteManageForm
  8.     extends ValidatorForm {
  9.   private String action;
  10.   private long noteid;
  11.   public String getAction() {
  12.     return action;
  13.   }
  14.   public void setAction(String action) {
  15.     this.action = action;
  16.   }
  17.   public void setNoteid(long noteid) {
  18.     this.noteid = noteid;
  19.   }
  20.   public long getNoteid() {
  21.     return noteid;
  22.   }
  23.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  24.     ActionErrors errors = new ActionErrors();
  25.     if (StringUtils.isBlank(this.action)) {
  26.       this.action = "list";
  27.     }
  28.     if (this.page == 0) {
  29.       this.page = 1;
  30.     }
  31.     return errors;
  32.   }
  33.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  34.   }
  35. }