ParameterForm.java~1~
上传用户:toby828
上传日期:2015-06-26
资源大小:8558k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.actionForm;
  2. import org.apache.struts.action.ActionForm;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionMapping;
  5. import javax.servlet.http.HttpServletRequest;
  6. public class parameterForm extends ActionForm {
  7.     private Integer cost;
  8.     private Integer id;
  9.     private Integer validity;
  10.     public Integer getCost() {
  11.         return cost;
  12.     }
  13.     public void setCost(Integer cost) {
  14.         this.cost = cost;
  15.     }
  16.     public void setValidity(Integer validity) {
  17.         this.validity = validity;
  18.     }
  19.     public void setId(Integer id) {
  20.         this.id = id;
  21.     }
  22.     public Integer getId() {
  23.         return id;
  24.     }
  25.     public Integer getValidity() {
  26.         return validity;
  27.     }
  28.     public ActionErrors validate(ActionMapping actionMapping,
  29.                                  HttpServletRequest httpServletRequest) {
  30.             /** @todo: finish this method, this is just the skeleton.*/
  31.         return null;
  32.     }
  33.     public void reset(ActionMapping actionMapping,
  34.                       HttpServletRequest servletRequest) {
  35.     }
  36. }