Class EmailInfo
- java.lang.Object
-
- de.xima.fc.e2e.containerplugin.model.EmailInfo
-
- All Implemented Interfaces:
Serializable
public final class EmailInfo extends Object implements Serializable
Data extracted from a mail message.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AddressInfo>
getBcc()
List<AddressInfo>
getCc()
EmailContent
getContent()
String
getContentTypeBase()
List<Map.Entry<String,String>>
getContentTypeParams()
List<AddressInfo>
getFrom()
String
getMd5()
int
getMessageNumber()
String
getMimeType()
int
getSize()
String
getSubject()
List<AddressInfo>
getTo()
-
-
-
Constructor Detail
-
EmailInfo
public EmailInfo(int messageNumber, Throwable e)
-
EmailInfo
public EmailInfo(javax.mail.Message message) throws javax.mail.MessagingException, IOException
- Throws:
javax.mail.MessagingException
IOException
-
-
Method Detail
-
getBcc
public List<AddressInfo> getBcc()
-
getCc
public List<AddressInfo> getCc()
-
getContent
public EmailContent getContent()
-
getContentTypeBase
public String getContentTypeBase()
-
getFrom
public List<AddressInfo> getFrom()
-
getMd5
public String getMd5()
-
getMessageNumber
public int getMessageNumber()
-
getMimeType
public String getMimeType()
-
getSize
public int getSize()
-
getSubject
public String getSubject()
-
getTo
public List<AddressInfo> getTo()
-
-