StudentForm.java
上传用户:nbxinmin
上传日期:2021-10-09
资源大小:46k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.web.form;
  2. import javax.servlet.http.HttpServletRequest;
  3. import org.apache.struts.action.ActionErrors;
  4. import org.apache.struts.action.ActionForm;
  5. import org.apache.struts.action.ActionMapping;
  6. /** 
  7.  * MyEclipse Struts
  8.  * Creation date: 04-04-2007
  9.  * 
  10.  * XDoclet definition:
  11.  * @struts.form name="studentForm"
  12.  */
  13. public class StudentForm extends ActionForm {
  14. private long studentid;
  15.      private String username;
  16.      private String name;
  17.      private String oldpassword;
  18.      private String newpassword;
  19.      private String address;
  20.      private String sex;
  21.      private String email;
  22.      
  23. /** 
  24.  * Method validate
  25.  * @param mapping
  26.  * @param request
  27.  * @return ActionErrors
  28.  */
  29. public ActionErrors validate(ActionMapping mapping,
  30. HttpServletRequest request) {
  31. // TODO Auto-generated method stub
  32. return null;
  33. }
  34. /** 
  35.  * Method reset
  36.  * @param mapping
  37.  * @param request
  38.  */
  39. public void reset(ActionMapping mapping, HttpServletRequest request) {
  40. // TODO Auto-generated method stub
  41. }
  42. public String getAddress() {
  43. return address;
  44. }
  45. public void setAddress(String address) {
  46. this.address = address;
  47. }
  48. public String getEmail() {
  49. return email;
  50. }
  51. public void setEmail(String email) {
  52. this.email = email;
  53. }
  54. public String getName() {
  55. return name;
  56. }
  57. public void setName(String name) {
  58. this.name = name;
  59. }
  60. public String getNewpassword() {
  61. return newpassword;
  62. }
  63. public void setNewpassword(String newpassword) {
  64. this.newpassword = newpassword;
  65. }
  66. public String getOldpassword() {
  67. return oldpassword;
  68. }
  69. public void setOldpassword(String oldpassword) {
  70. this.oldpassword = oldpassword;
  71. }
  72. public String getSex() {
  73. return sex;
  74. }
  75. public void setSex(String sex) {
  76. this.sex = sex;
  77. }
  78. public long getStudentid() {
  79. return studentid;
  80. }
  81. public void setStudentid(long studentid) {
  82. this.studentid = studentid;
  83. }
  84. public String getUsername() {
  85. return username;
  86. }
  87. public void setUsername(String username) {
  88. this.username = username;
  89. }
  90. }