|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.mail.Message javax.mail.internet.MimeMessage com.sun.mail.pop3.POP3Message
public class POP3Message
A POP3 Message. Just like a MimeMessage except that some things are not supported.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class javax.mail.internet.MimeMessage |
---|
MimeMessage.RecipientType |
Field Summary |
---|
Fields inherited from class javax.mail.internet.MimeMessage |
---|
content, contentStream, dh, flags, headers, modified, saved |
Fields inherited from class javax.mail.Message |
---|
expunged, msgnum, session |
Fields inherited from interface javax.mail.Part |
---|
ATTACHMENT, INLINE |
Constructor Summary | |
---|---|
POP3Message(Folder folder,
int msgno)
|
Method Summary | |
---|---|
void |
addHeader(String name,
String value)
Add this value to the existing values for this header_name. |
void |
addHeaderLine(String line)
Add a raw RFC822 header-line. |
Enumeration |
getAllHeaderLines()
Get all header lines as an Enumeration of Strings. |
Enumeration |
getAllHeaders()
Return all the headers from this Message as an enumeration of Header objects. |
protected InputStream |
getContentStream()
Produce the raw bytes of the content. |
String[] |
getHeader(String name)
Get all the headers for this header_name. |
String |
getHeader(String name,
String delimiter)
Get all the headers for this header name, returned as a single String, with headers separated by the delimiter. |
Enumeration |
getMatchingHeaderLines(String[] names)
Get matching header lines as an Enumeration of Strings. |
Enumeration |
getMatchingHeaders(String[] names)
Return matching headers from this Message as an Enumeration of Header objects. |
Enumeration |
getNonMatchingHeaderLines(String[] names)
Get non-matching header lines as an Enumeration of Strings. |
Enumeration |
getNonMatchingHeaders(String[] names)
Return non-matching headers from this Message as an Enumeration of Header objects. |
int |
getSize()
Return the size of the content of this message in bytes. |
void |
invalidate(boolean invalidateHeaders)
Invalidate the cache of content for this message object, causing it to be fetched again from the server the next time it is needed. |
void |
removeHeader(String name)
Remove all headers with this name. |
void |
saveChanges()
POP3 message can't be changed. |
void |
setFlags(Flags newFlags,
boolean set)
Set the specified flags on this message to the specified value. |
void |
setHeader(String name,
String value)
Set the value for this header_name. |
InputStream |
top(int n)
Fetch the header of the message and the first n lines
of the raw content of the message. |
void |
writeTo(OutputStream os,
String[] ignoreList)
Output the message as an RFC 822 format stream, without specified headers. |
Methods inherited from class javax.mail.Message |
---|
addRecipient, getFolder, getMessageNumber, isExpunged, match, setExpunged, setFlag, setMessageNumber, setRecipient |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public POP3Message(Folder folder, int msgno) throws MessagingException
MessagingException
Method Detail |
---|
public void setFlags(Flags newFlags, boolean set) throws MessagingException
setFlags
in class MimeMessage
newFlags
- the flags to be setset
- the value to be set
MessagingException
IllegalWriteException
- if the underlying
implementation does not support modification
of existing values.MessageChangedEvent
public int getSize() throws MessagingException
Note that this number may not be an exact measure of the content size and may or may not account for any transfer encoding of the content.
getSize
in interface Part
getSize
in class MimeMessage
MessagingException
protected InputStream getContentStream() throws MessagingException
getContentStream
in class MimeMessage
MessagingException
MimeMessage.contentStream
public void invalidate(boolean invalidateHeaders)
invalidateHeaders
is true, invalidate the headers
as well.
invalidateHeaders
- invalidate the headers as well?public InputStream top(int n) throws MessagingException
n
lines
of the raw content of the message. The headers and data are
available in the returned InputStream.
n
- number of lines of content to fetch
MessagingException
public String[] getHeader(String name) throws MessagingException
getHeader
in interface Part
getHeader
in class MimeMessage
name
- name of header
MessagingException
MimeUtility
public String getHeader(String name, String delimiter) throws MessagingException
null
, only the first header is
returned.
getHeader
in interface MimePart
getHeader
in class MimeMessage
name
- the name of this headerdelimiter
- delimiter between returned headers
MessagingException
public void setHeader(String name, String value) throws MessagingException
setHeader
in interface Part
setHeader
in class MimeMessage
name
- header namevalue
- header value
IllegalWriteException
- because the underlying
implementation does not support modification
IllegalStateException
- if this message is
obtained from a READ_ONLY folder.
MessagingException
MimeUtility
public void addHeader(String name, String value) throws MessagingException
addHeader
in interface Part
addHeader
in class MimeMessage
name
- header namevalue
- header value
IllegalWriteException
- because the underlying
implementation does not support modification
IllegalStateException
- if this message is
obtained from a READ_ONLY folder.
MessagingException
MimeUtility
public void removeHeader(String name) throws MessagingException
removeHeader
in interface Part
removeHeader
in class MimeMessage
name
- the name of this header
IllegalWriteException
- because the underlying
implementation does not support modification
IllegalStateException
- if this message is
obtained from a READ_ONLY folder.
MessagingException
public Enumeration getAllHeaders() throws MessagingException
Note that certain headers may be encoded as per RFC 2047 if they contain non US-ASCII characters and these should be decoded.
getAllHeaders
in interface Part
getAllHeaders
in class MimeMessage
MessagingException
MimeUtility
public Enumeration getMatchingHeaders(String[] names) throws MessagingException
getMatchingHeaders
in interface Part
getMatchingHeaders
in class MimeMessage
MessagingException
public Enumeration getNonMatchingHeaders(String[] names) throws MessagingException
getNonMatchingHeaders
in interface Part
getNonMatchingHeaders
in class MimeMessage
MessagingException
public void addHeaderLine(String line) throws MessagingException
addHeaderLine
in interface MimePart
addHeaderLine
in class MimeMessage
IllegalWriteException
- because the underlying
implementation does not support modification
IllegalStateException
- if this message is
obtained from a READ_ONLY folder.
MessagingException
public Enumeration getAllHeaderLines() throws MessagingException
getAllHeaderLines
in interface MimePart
getAllHeaderLines
in class MimeMessage
MessagingException
public Enumeration getMatchingHeaderLines(String[] names) throws MessagingException
getMatchingHeaderLines
in interface MimePart
getMatchingHeaderLines
in class MimeMessage
MessagingException
public Enumeration getNonMatchingHeaderLines(String[] names) throws MessagingException
getNonMatchingHeaderLines
in interface MimePart
getNonMatchingHeaderLines
in class MimeMessage
MessagingException
public void saveChanges() throws MessagingException
saveChanges
in class MimeMessage
IllegalWriteException
- because the underlying
implementation does not support modification
MessagingException
public void writeTo(OutputStream os, String[] ignoreList) throws IOException, MessagingException
writeTo
in class MimeMessage
MessagingException
IOException
- if an error occurs writing to the stream
or if an error is generated by the
javax.activation layer.DataHandler.writeTo(java.io.OutputStream)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |