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

Jsp/Servlet

开发平台:

Java

  1. package com.domain;
  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. //会员表的bean
  7. public class MemberForm
  8.     extends ActionForm {
  9.   private Integer age = Integer.valueOf("-1"); //年龄
  10.   private String email = ""; //电子邮件
  11.   private Integer id = Integer.valueOf("-1"); //数据库流水号
  12.   private String name = ""; //会员名称
  13.   private String password = ""; //会员密码
  14.   private String profession = ""; //会员职业
  15.   private String question = ""; //找回密码的问题
  16.   private String reallyName = ""; //真实姓名
  17.   private String result = ""; //找回密码的答案
  18.   public MemberForm() {}
  19.   public Integer getAge() {
  20.     return age;
  21.   }
  22.   public void setAge(Integer age) {
  23.     this.age = age;
  24.   }
  25.   public void setResult(String result) {
  26.     this.result = result;
  27.   }
  28.   public void setReallyName(String reallyName) {
  29.     this.reallyName = reallyName;
  30.   }
  31.   public void setQuestion(String question) {
  32.     this.question = question;
  33.   }
  34.   public void setProfession(String profession) {
  35.     this.profession = profession;
  36.   }
  37.   public void setPassword(String password) {
  38.     this.password = password;
  39.   }
  40.   public void setName(String name) {
  41.     this.name = name;
  42.   }
  43.   public void setId(Integer id) {
  44.     this.id = id;
  45.   }
  46.   public void setEmail(String email) {
  47.     this.email = email;
  48.   }
  49.   public String getEmail() {
  50.     return email;
  51.   }
  52.   public Integer getId() {
  53.     return id;
  54.   }
  55.   public String getName() {
  56.     return name;
  57.   }
  58.   public String getPassword() {
  59.     return password;
  60.   }
  61.   public String getProfession() {
  62.     return profession;
  63.   }
  64.   public String getQuestion() {
  65.     return question;
  66.   }
  67.   public String getReallyName() {
  68.     return reallyName;
  69.   }
  70.   public String getResult() {
  71.     return result;
  72.   }
  73.   public ActionErrors validate(ActionMapping actionMapping,
  74.                                HttpServletRequest httpServletRequest) {
  75.     /** @todo: finish this method, this is just the skeleton.*/
  76.     return null;
  77.   }
  78.   public void reset(ActionMapping actionMapping,
  79.                     HttpServletRequest servletRequest) {
  80.   }
  81. }