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

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.form;
  2. import javax.servlet.http.*;
  3. import org.apache.struts.action.*;
  4. import org.apache.commons.lang.*;
  5. import com.opensource.blog.comm.*;
  6. public class ArticleForm
  7.     extends ActionForm {
  8.   private String action;
  9.   private String artkey;
  10.   private long artid;
  11.   private int blogsortid;
  12.   private String content;
  13.   private int contentsize;
  14.   private int face;
  15.   private int faceplace;
  16.   private int ishide;
  17.   private int opencomment;
  18.   private int postmonth;
  19.   private long sortid;
  20.   private String title;
  21.   private int usesign;
  22.   private int year;
  23.   private int day;
  24.   private int hour;
  25.   private int min;
  26.   private int sec;
  27.   public String getAction() {
  28.     return action;
  29.   }
  30.   public long getArtid() {
  31.     return artid;
  32.   }
  33.   public String getArtkey() {
  34.     return artkey;
  35.   }
  36.   public int getBlogsortid() {
  37.     return blogsortid;
  38.   }
  39.   public String getContent() {
  40.     return content;
  41.   }
  42.   public int getContentsize() {
  43.     return contentsize;
  44.   }
  45.   public int getDay() {
  46.     return day;
  47.   }
  48.   public int getFace() {
  49.     return face;
  50.   }
  51.   public int getFaceplace() {
  52.     return faceplace;
  53.   }
  54.   public int getHour() {
  55.     return hour;
  56.   }
  57.   public int getMin() {
  58.     return min;
  59.   }
  60.   public int getIshide() {
  61.     return ishide;
  62.   }
  63.   public int getOpencomment() {
  64.     return opencomment;
  65.   }
  66.   public int getPostmonth() {
  67.     return postmonth;
  68.   }
  69.   public int getSec() {
  70.     return sec;
  71.   }
  72.   public long getSortid() {
  73.     return sortid;
  74.   }
  75.   public String getTitle() {
  76.     return title;
  77.   }
  78.   public int getUsesign() {
  79.     return usesign;
  80.   }
  81.   public int getYear() {
  82.     return year;
  83.   }
  84.   public void setAction(String action) {
  85.     this.action = action;
  86.   }
  87.   public void setArtid(long artid) {
  88.     this.artid = artid;
  89.   }
  90.   public void setArtkey(String artkey) {
  91.     this.artkey = artkey;
  92.   }
  93.   public void setBlogsortid(int blogsortid) {
  94.     this.blogsortid = blogsortid;
  95.   }
  96.   public void setContent(String content) {
  97.     this.content = content;
  98.   }
  99.   public void setContentsize(int contentsize) {
  100.     this.contentsize = contentsize;
  101.   }
  102.   public void setDay(int day) {
  103.     this.day = day;
  104.   }
  105.   public void setFace(int face) {
  106.     this.face = face;
  107.   }
  108.   public void setFaceplace(int faceplace) {
  109.     this.faceplace = faceplace;
  110.   }
  111.   public void setHour(int hour) {
  112.     this.hour = hour;
  113.   }
  114.   public void setIshide(int ishide) {
  115.     this.ishide = ishide;
  116.   }
  117.   public void setMin(int min) {
  118.     this.min = min;
  119.   }
  120.   public void setOpencomment(int opencomment) {
  121.     this.opencomment = opencomment;
  122.   }
  123.   public void setPostmonth(int postmonth) {
  124.     this.postmonth = postmonth;
  125.   }
  126.   public void setSec(int sec) {
  127.     this.sec = sec;
  128.   }
  129.   public void setSortid(long sortid) {
  130.     this.sortid = sortid;
  131.   }
  132.   public void setTitle(String title) {
  133.     this.title = title;
  134.   }
  135.   public void setUsesign(int usesign) {
  136.     this.usesign = usesign;
  137.   }
  138.   public void setYear(int year) {
  139.     this.year = year;
  140.   }
  141.   public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
  142.     ActionErrors errors = new ActionErrors();
  143.     httpServletRequest.setAttribute("leftrigthValues", Constant.LEFTORRIGHTS);
  144.     httpServletRequest.setAttribute("yesornoValues", Constant.YESORNOS);
  145.     httpServletRequest.setAttribute("sortValues", Constant.SORTS);
  146.     httpServletRequest.setAttribute("yearValues", Constant.YEARS);
  147.     httpServletRequest.setAttribute("monthValues", Constant.MONTHS);
  148.     httpServletRequest.setAttribute("dayValues", Constant.DAYS);
  149.     httpServletRequest.setAttribute("hourValues", Constant.HOURS);
  150.     httpServletRequest.setAttribute("minValues", Constant.MINSECS);
  151.     httpServletRequest.setAttribute("secValues", Constant.MINSECS);
  152.     if (StringUtils.isBlank(this.action)) {
  153.       this.action = "new";
  154.     }
  155.     return errors;
  156.   }
  157.   public void reset(ActionMapping actionMapping, HttpServletRequest servletRequest) {
  158.   }
  159. }