UserForm.java
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Java

  1. /*
  2.  * Generated by MyEclipse Struts
  3.  * Template path: templates/java/JavaClass.vtl
  4.  */
  5. package com.center.control;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.apache.struts.action.ActionErrors;
  8. import org.apache.struts.action.ActionForm;
  9. import org.apache.struts.action.ActionMapping;
  10. /** 
  11.  * MyEclipse Struts
  12.  * Creation date: 05-18-2007
  13.  * 
  14.  * XDoclet definition:
  15.  * @struts.form name="userForm"
  16.  */
  17. public class UserForm extends ActionForm {
  18. /*
  19.  * Generated fields
  20.  */
  21. /** useremail property */
  22. private String useremail;
  23. /** userpsw property */
  24. private String userpsw;
  25. /** username property */
  26. private String username;
  27. /*
  28.  * Generated Methods
  29.  */
  30. /** 
  31.  * Method validate
  32.  * @param mapping
  33.  * @param request
  34.  * @return ActionErrors
  35.  */
  36. public ActionErrors validate(ActionMapping mapping,
  37. HttpServletRequest request) {
  38. // TODO Auto-generated method stub
  39. return null;
  40. }
  41. /** 
  42.  * Method reset
  43.  * @param mapping
  44.  * @param request
  45.  */
  46. public void reset(ActionMapping mapping, HttpServletRequest request) {
  47. // TODO Auto-generated method stub
  48. }
  49. /** 
  50.  * Returns the useremail.
  51.  * @return String
  52.  */
  53. public String getUseremail() {
  54. return useremail;
  55. }
  56. /** 
  57.  * Set the useremail.
  58.  * @param useremail The useremail to set
  59.  */
  60. public void setUseremail(String useremail) {
  61. this.useremail = useremail;
  62. }
  63. /** 
  64.  * Returns the userpsw.
  65.  * @return String
  66.  */
  67. public String getUserpsw() {
  68. return userpsw;
  69. }
  70. /** 
  71.  * Set the userpsw.
  72.  * @param userpsw The userpsw to set
  73.  */
  74. public void setUserpsw(String userpsw) {
  75. this.userpsw = userpsw;
  76. }
  77. /** 
  78.  * Returns the username.
  79.  * @return String
  80.  */
  81. public String getUsername() {
  82. return username;
  83. }
  84. /** 
  85.  * Set the username.
  86.  * @param username The username to set
  87.  */
  88. public void setUsername(String username) {
  89. this.username = username;
  90. }
  91. }