KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > myvietnam > mvncore > util > MailMessageStruct


1 /*
2  * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/util/MailMessageStruct.java,v 1.4 2006/04/15 02:59:20 minhnn Exp $
3  * $Author: minhnn $
4  * $Revision: 1.4 $
5  * $Date: 2006/04/15 02:59:20 $
6  *
7  * ====================================================================
8  *
9  * Copyright (C) 2002-2006 by MyVietnam.net
10  *
11  * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12  * MUST remain intact in the scripts and source code.
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Lesser General Public
16  * License as published by the Free Software Foundation; either
17  * version 2.1 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22  * Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public
25  * License along with this library; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27  *
28  * Correspondence and Marketing Questions can be sent to:
29  * info at MyVietnam net
30  *
31  * @author: Minh Nguyen
32  */

33 package net.myvietnam.mvncore.util;
34
35 /**
36  * This class is used to store the information of an email to be sent with MailUtil
37  */

38 public class MailMessageStruct {
39
40     private String JavaDoc from;
41     private String JavaDoc to;
42     private String JavaDoc cc;
43     private String JavaDoc bcc;
44     private String JavaDoc subject;
45     private String JavaDoc message;
46
47     public MailMessageStruct() {
48     }
49     public String JavaDoc getFrom() {
50         return from;
51     }
52     public void setFrom(String JavaDoc from) {
53         this.from = from;
54     }
55     public String JavaDoc getTo() {
56         return to;
57     }
58     public void setTo(String JavaDoc to) {
59         this.to = to;
60     }
61     public String JavaDoc getCc() {
62         return cc;
63     }
64     public void setCc(String JavaDoc cc) {
65         this.cc = cc;
66     }
67     public String JavaDoc getBcc() {
68         return bcc;
69     }
70     public void setBcc(String JavaDoc bcc) {
71         this.bcc = bcc;
72     }
73     public String JavaDoc getSubject() {
74         return subject;
75     }
76     public void setSubject(String JavaDoc subject) {
77         this.subject = subject;
78     }
79     public String JavaDoc getMessage() {
80         return message;
81     }
82     public void setMessage(String JavaDoc message) {
83         this.message = message;
84     }
85
86 }
87
Popular Tags