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

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="loginForm"
  12.  */
  13. public class LoginForm extends ActionForm {
  14. private String username;
  15. private String password;
  16. private int role;
  17. public String getPassword() {
  18. return password;
  19. }
  20. public void setPassword(String password) {
  21. this.password = password;
  22. }
  23. public int getRole() {
  24. return role;
  25. }
  26. public void setRole(int role) {
  27. this.role = role;
  28. }
  29. public String getUsername() {
  30. return username;
  31. }
  32. public void setUsername(String username) {
  33. this.username = username;
  34. }
  35. /** 
  36.  * Method validate
  37.  * @param mapping
  38.  * @param request
  39.  * @return ActionErrors
  40.  */
  41. public ActionErrors validate(ActionMapping mapping,
  42. HttpServletRequest request) {
  43. // TODO Auto-generated method stub
  44. return null;
  45. }
  46. /** 
  47.  * Method reset
  48.  * @param mapping
  49.  * @param request
  50.  */
  51. public void reset(ActionMapping mapping, HttpServletRequest request) {
  52. // TODO Auto-generated method stub
  53. }
  54. }