EmailForm.java
资源名称:(J2EE)oa.rar [点击查看]
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:4k
源码类别:
Jsp/Servlet
开发平台:
Java
- //Created by MyEclipse Struts
- // XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.0/xslt/JavaClass.xsl
- package com.oa.module.email.form;
- import java.util.Enumeration;
- import java.util.HashSet;
- import java.util.Hashtable;
- import java.util.Set;
- import javax.servlet.http.HttpServletRequest;
- import org.apache.struts.action.ActionErrors;
- import org.apache.struts.action.ActionForm;
- import org.apache.struts.action.ActionMapping;
- import org.apache.struts.action.ActionMessage;
- import org.apache.struts.upload.FormFile;
- /**
- * MyEclipse Struts Creation date: 01-20-2008
- *
- * XDoclet definition:
- *
- * @struts.form name="emailForm"
- */
- public class EmailForm extends ActionForm {
- // --------------------------------------------------------- Instance
- // Variables
- private String emailid;
- private String title;
- private String content;
- private String sendid;
- private String sendname;
- private String receiveid;
- private String receivename;
- private String sendtime;
- private String isread;
- private String emailtype;
- private String isfujian;
- private String method;
- private String[] checkeduserList;
- private FormFile myfile;
- private Set fujian = new HashSet();
- private String[] check;
- private String[] senduser;
- // --------------------------------------------------------- Methods
- public String[] getSenduser() {
- return senduser;
- }
- public void setSenduser(String[] senduser) {
- this.senduser = senduser;
- }
- public String[] getCheck() {
- return check;
- }
- public void setCheck(String[] check) {
- this.check = check;
- }
- public Set getFujian() {
- return fujian;
- }
- public void setFujian(Set fujian) {
- this.fujian = fujian;
- }
- public String getMethod() {
- return method;
- }
- public void setMethod(String method) {
- this.method = method;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getEmailid() {
- return emailid;
- }
- public void setEmailid(String emailid) {
- this.emailid = emailid;
- }
- public String getEmailtype() {
- return emailtype;
- }
- public void setEmailtype(String emailtype) {
- this.emailtype = emailtype;
- }
- public String getIsfujian() {
- return isfujian;
- }
- public void setIsfujian(String isfujian) {
- this.isfujian = isfujian;
- }
- public String getIsread() {
- return isread;
- }
- public void setIsread(String isread) {
- this.isread = isread;
- }
- public String getReceiveid() {
- return receiveid;
- }
- public void setReceiveid(String receiveid) {
- this.receiveid = receiveid;
- }
- public String getReceivename() {
- return receivename;
- }
- public void setReceivename(String receivename) {
- this.receivename = receivename;
- }
- public String getSendid() {
- return sendid;
- }
- public void setSendid(String sendid) {
- this.sendid = sendid;
- }
- public String getSendname() {
- return sendname;
- }
- public void setSendname(String sendname) {
- this.sendname = sendname;
- }
- public String getSendtime() {
- return sendtime;
- }
- public void setSendtime(String sendtime) {
- this.sendtime = sendtime;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- /**
- * Method validate
- *
- * @param mapping
- * @param request
- * @return ActionErrors
- */
- public ActionErrors validate(ActionMapping mapping,
- HttpServletRequest request) {
- return null;
- }
- /**
- * Method reset
- *
- * @param mapping
- * @param request
- */
- public void reset(ActionMapping mapping, HttpServletRequest request) {
- // TODO Auto-generated method stub
- }
- public String[] getCheckeduserList() {
- return checkeduserList;
- }
- public void setCheckeduserList(String[] checkeduserList) {
- this.checkeduserList = checkeduserList;
- }
- public FormFile getMyfile() {
- return myfile;
- }
- public void setMyfile(FormFile myfile) {
- this.myfile = myfile;
- }
- }