public class MailMessage extends java.lang.Object implements IMailMessage
Constructor and Description |
---|
MailMessage() |
Modifier and Type | Method and Description |
---|---|
void |
addAttachedFile(IFileData attachedFile) |
java.util.List<IFileData> |
getAttachedFileList()
첨부 파일 목록을 얻는다.
|
java.lang.String |
getBody()
메일 본문을 얻는다.
|
java.lang.String |
getMimeType()
메일 본문의 MimeType을 엉는다.
|
IMailMessage |
getNestedMailMessage()
포함 메일 메세지 객체를 얻는다.
|
java.util.Date |
getReceivedDate()
수신일시를 얻는다.
|
java.lang.String |
getReplyEmail()
답장할 메일 주소를 얻는다.
|
java.lang.String |
getSenderEmail()
송신자 E메일 주소를 얻는다.
|
java.lang.String |
getSenderName()
송신자명을 얻는다.
|
java.util.Date |
getSentDate()
송신일시를 얻는다.
|
java.lang.String |
getSubject()
메일 제목을 얻는다.
|
void |
setAttachedFileList(java.util.List<IFileData> attachedFileList) |
void |
setBody(java.lang.String body) |
void |
setMimeType(java.lang.String mimeType) |
void |
setNestedMailMessage(IMailMessage nestedMailMessage) |
void |
setReceivedDate(java.util.Date receivedDate) |
void |
setReplyEmail(java.lang.String replyEmail) |
void |
setSenderEmail(java.lang.String senderEmail) |
void |
setSenderName(java.lang.String senderName) |
void |
setSentDate(java.util.Date sentDate) |
void |
setSubject(java.lang.String subject) |
public java.lang.String getSubject()
IMailMessage
getSubject
in interface IMailMessage
public void setSubject(java.lang.String subject)
subject
- the subject to setpublic java.lang.String getSenderName()
IMailMessage
getSenderName
in interface IMailMessage
public void setSenderName(java.lang.String senderName)
senderName
- the senderName to setpublic java.lang.String getSenderEmail()
IMailMessage
getSenderEmail
in interface IMailMessage
public void setSenderEmail(java.lang.String senderEmail)
senderEmail
- the senderEmail to setpublic java.util.Date getSentDate()
IMailMessage
getSentDate
in interface IMailMessage
public void setSentDate(java.util.Date sentDate)
sentDate
- the sentDate to setpublic java.util.Date getReceivedDate()
IMailMessage
getReceivedDate
in interface IMailMessage
public void setReceivedDate(java.util.Date receivedDate)
receivedDate
- the receivedDate to setpublic java.lang.String getReplyEmail()
IMailMessage
getReplyEmail
in interface IMailMessage
public void setReplyEmail(java.lang.String replyEmail)
replyEmail
- the replyEmail to setpublic java.lang.String getBody()
IMailMessage
getBody
in interface IMailMessage
public void setBody(java.lang.String body)
body
- the body to setpublic java.lang.String getMimeType()
IMailMessage
getMimeType
in interface IMailMessage
public void setMimeType(java.lang.String mimeType)
mimeType
- the mimeType to setpublic IMailMessage getNestedMailMessage()
IMailMessage
getNestedMailMessage
in interface IMailMessage
public void setNestedMailMessage(IMailMessage nestedMailMessage)
nestedMailMessage
- the nestedMailMessage to setpublic java.util.List<IFileData> getAttachedFileList()
IMailMessage
getAttachedFileList
in interface IMailMessage
public void setAttachedFileList(java.util.List<IFileData> attachedFileList)
attachedFileList
- the attachedFileList to setpublic void addAttachedFile(IFileData attachedFile)
attachedFileList
- the attachedFileList to set