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

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. public class NoteForm
  6.     extends ActionForm {
  7.   private String action;
  8.   private long artid;
  9.   private long blogid;
  10.   private String content;
  11.   private String email;
  12.   private String homepage;
  13.   private String name;
  14.   private String username;
  15.   private String authCode;
  16.   public String getAction() {
  17.     return action;
  18.   }
  19.   public long getArtid() {
  20.     return artid;
  21.   }
  22.   public long getBlogid() {
  23.     return blogid;
  24.   }
  25.   public String getContent() {
  26.     return content;
  27.   }
  28.   public String getEmail() {
  29.     return email;
  30.   }
  31.   public String getHomepage() {
  32.     return homepage;
  33.   }
  34.   public String getUsername() {
  35.     return username;
  36.   }
  37.   public String getName() {
  38.     return name;
  39.   }
  40.   public String getAuthCode() {
  41.     return authCode;
  42.   }
  43.   public void setAction(String action) {
  44.     this.action = action;
  45.   }
  46.   public void setArtid(long artid) {
  47.     this.artid = artid;
  48.   }
  49.   public void setBlogid(long blogid) {
  50.     this.blogid = blogid;
  51.   }
  52.   public void setContent(String content) {
  53.     this.content = content;
  54.   }
  55.   public void setEmail(String email) {
  56.     this.email = email;
  57.   }
  58.   public void setHomepage(String homepage) {
  59.     this.homepage = homepage;
  60.   }
  61.   public void setUsername(String username) {
  62.     this.username = username;
  63.   }
  64.   public void setName(String name) {
  65.     this.name = name;
  66.   }
  67.   public void setAuthCode(String authCode) {
  68.     this.authCode = authCode;
  69.   }
  70.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  71.     ActionErrors errors = new ActionErrors();
  72.     if (StringUtils.isBlank(this.action)) {
  73.       errors.add("error.parametererror", new ActionMessage("error.parametererror"));
  74.     }
  75.     System.out.println(this.action);
  76.     if (this.action.equalsIgnoreCase("add")) {
  77.       System.out.println(this.name);
  78.       if (StringUtils.isBlank(this.name)) {
  79.         errors.add("error.note.add.namenull", new ActionMessage("error.note.add.namenull"));
  80.       }
  81.       //name = name.trim();
  82.       if (StringUtils.isBlank(content)) {
  83.         errors.add("error.note.add.contentnull", new ActionMessage("error.note.add.contentnull"));
  84.       }
  85.       //content = content.trim();
  86.       if (email == null) {
  87.         email = "";
  88.       }
  89.       if (homepage == null) {
  90.         homepage = "";
  91.       }
  92.       if (homepage.equals("http://")) {
  93.         homepage = "";
  94.       }
  95.     }
  96.     return errors;
  97.   }
  98.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  99.   }
  100. }