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

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.email.form;
  4. import java.util.Enumeration;
  5. import java.util.HashSet;
  6. import java.util.Hashtable;
  7. import java.util.Set;
  8. import javax.servlet.http.HttpServletRequest;
  9. import org.apache.struts.action.ActionErrors;
  10. import org.apache.struts.action.ActionForm;
  11. import org.apache.struts.action.ActionMapping;
  12. import org.apache.struts.action.ActionMessage;
  13. import org.apache.struts.upload.FormFile;
  14. /**
  15.  * MyEclipse Struts Creation date: 01-20-2008
  16.  * 
  17.  * XDoclet definition:
  18.  * 
  19.  * @struts.form name="emailForm"
  20.  */
  21. public class EmailForm extends ActionForm {
  22. // --------------------------------------------------------- Instance
  23. // Variables
  24. private String emailid;
  25. private String title;
  26. private String content;
  27. private String sendid;
  28. private String sendname;
  29. private String receiveid;
  30. private String receivename;
  31. private String sendtime;
  32. private String isread;
  33. private String emailtype;
  34. private String isfujian;
  35. private String method;
  36. private String[] checkeduserList;
  37. private FormFile myfile;
  38. private Set fujian = new HashSet();
  39. private String[] check;
  40. private String[] senduser;
  41. // --------------------------------------------------------- Methods
  42. public String[] getSenduser() {
  43. return senduser;
  44. }
  45. public void setSenduser(String[] senduser) {
  46. this.senduser = senduser;
  47. }
  48. public String[] getCheck() {
  49. return check;
  50. }
  51. public void setCheck(String[] check) {
  52. this.check = check;
  53. }
  54. public Set getFujian() {
  55. return fujian;
  56. }
  57. public void setFujian(Set fujian) {
  58. this.fujian = fujian;
  59. }
  60. public String getMethod() {
  61. return method;
  62. }
  63. public void setMethod(String method) {
  64. this.method = method;
  65. }
  66. public String getContent() {
  67. return content;
  68. }
  69. public void setContent(String content) {
  70. this.content = content;
  71. }
  72. public String getEmailid() {
  73. return emailid;
  74. }
  75. public void setEmailid(String emailid) {
  76. this.emailid = emailid;
  77. }
  78. public String getEmailtype() {
  79. return emailtype;
  80. }
  81. public void setEmailtype(String emailtype) {
  82. this.emailtype = emailtype;
  83. }
  84. public String getIsfujian() {
  85. return isfujian;
  86. }
  87. public void setIsfujian(String isfujian) {
  88. this.isfujian = isfujian;
  89. }
  90. public String getIsread() {
  91. return isread;
  92. }
  93. public void setIsread(String isread) {
  94. this.isread = isread;
  95. }
  96. public String getReceiveid() {
  97. return receiveid;
  98. }
  99. public void setReceiveid(String receiveid) {
  100. this.receiveid = receiveid;
  101. }
  102. public String getReceivename() {
  103. return receivename;
  104. }
  105. public void setReceivename(String receivename) {
  106. this.receivename = receivename;
  107. }
  108. public String getSendid() {
  109. return sendid;
  110. }
  111. public void setSendid(String sendid) {
  112. this.sendid = sendid;
  113. }
  114. public String getSendname() {
  115. return sendname;
  116. }
  117. public void setSendname(String sendname) {
  118. this.sendname = sendname;
  119. }
  120. public String getSendtime() {
  121. return sendtime;
  122. }
  123. public void setSendtime(String sendtime) {
  124. this.sendtime = sendtime;
  125. }
  126. public String getTitle() {
  127. return title;
  128. }
  129. public void setTitle(String title) {
  130. this.title = title;
  131. }
  132. /**
  133.  * Method validate
  134.  * 
  135.  * @param mapping
  136.  * @param request
  137.  * @return ActionErrors
  138.  */
  139. public ActionErrors validate(ActionMapping mapping,
  140. HttpServletRequest request) {
  141. return null;
  142. }
  143. /**
  144.  * Method reset
  145.  * 
  146.  * @param mapping
  147.  * @param request
  148.  */
  149. public void reset(ActionMapping mapping, HttpServletRequest request) {
  150. // TODO Auto-generated method stub
  151. }
  152. public String[] getCheckeduserList() {
  153. return checkeduserList;
  154. }
  155. public void setCheckeduserList(String[] checkeduserList) {
  156. this.checkeduserList = checkeduserList;
  157. }
  158. public FormFile getMyfile() {
  159. return myfile;
  160. }
  161. public void setMyfile(FormFile myfile) {
  162. this.myfile = myfile;
  163. }
  164. }