FolderForm.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. //Created by MyEclipse Struts
  2. // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
  3. package com.oa.module.folder.form;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.apache.struts.action.ActionErrors;
  6. import org.apache.struts.action.ActionForm;
  7. import org.apache.struts.action.ActionMapping;
  8. /**
  9.  * MyEclipse Struts Creation date: 01-28-2008
  10.  * 
  11.  * XDoclet definition:
  12.  * 
  13.  * @struts.form name="folderForm"
  14.  */
  15. public class FolderForm extends ActionForm {
  16. // --------------------------------------------------------- Instance
  17. // Variables
  18. private String forder;
  19. private String fordername;
  20. private String userid;
  21. private String username;
  22. private String fatherid;
  23. private String createtime;
  24. private String method;
  25. // --------------------------------------------------------- Methods
  26. public String getMethod() {
  27. return method;
  28. }
  29. public void setMethod(String method) {
  30. this.method = method;
  31. }
  32. /**
  33.  * Method validate
  34.  * 
  35.  * @param mapping
  36.  * @param request
  37.  * @return ActionErrors
  38.  */
  39. public ActionErrors validate(ActionMapping mapping,
  40. HttpServletRequest request) {
  41. // TODO Auto-generated method stub
  42. return null;
  43. }
  44. /**
  45.  * Method reset
  46.  * 
  47.  * @param mapping
  48.  * @param request
  49.  */
  50. public void reset(ActionMapping mapping, HttpServletRequest request) {
  51. // TODO Auto-generated method stub
  52. }
  53. public String getCreatetime() {
  54. return createtime;
  55. }
  56. public void setCreatetime(String createtime) {
  57. this.createtime = createtime;
  58. }
  59. public String getFatherid() {
  60. return fatherid;
  61. }
  62. public void setFatherid(String fatherid) {
  63. this.fatherid = fatherid;
  64. }
  65. public String getForder() {
  66. return forder;
  67. }
  68. public void setForder(String forder) {
  69. this.forder = forder;
  70. }
  71. public String getFordername() {
  72. return fordername;
  73. }
  74. public void setFordername(String fordername) {
  75. this.fordername = fordername;
  76. }
  77. public String getUserid() {
  78. return userid;
  79. }
  80. public void setUserid(String userid) {
  81. this.userid = userid;
  82. }
  83. public String getUsername() {
  84. return username;
  85. }
  86. public void setUsername(String username) {
  87. this.username = username;
  88. }
  89. }