Package com.sun.mail.pop3
Class POP3Message
- java.lang.Object
 - 
- javax.mail.Message
 - 
- javax.mail.internet.MimeMessage
 - 
- com.sun.mail.pop3.POP3Message
 
 
 
 
- 
- All Implemented Interfaces:
 ReadableMime,MimePart,Part
public class POP3Message extends MimeMessage implements ReadableMime
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 interface javax.mail.Part
ATTACHMENT, INLINE 
 - 
 
- 
Constructor Summary
Constructors Constructor Description POP3Message(Folder folder, int msgno) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHeader(java.lang.String name, java.lang.String value)Add this value to the existing values for this header_name.voidaddHeaderLine(java.lang.String line)Add a raw RFC822 header-line.java.util.Enumeration<java.lang.String>getAllHeaderLines()Get all header lines as an Enumeration of Strings.java.util.Enumeration<Header>getAllHeaders()Return all the headers from this Message as an enumeration of Header objects.java.lang.String[]getHeader(java.lang.String name)Get all the headers for this header_name.java.lang.StringgetHeader(java.lang.String name, java.lang.String delimiter)Get all the headers for this header name, returned as a single String, with headers separated by the delimiter.java.util.Enumeration<java.lang.String>getMatchingHeaderLines(java.lang.String[] names)Get matching header lines as an Enumeration of Strings.java.util.Enumeration<Header>getMatchingHeaders(java.lang.String[] names)Return matching headers from this Message as an Enumeration of Header objects.java.io.InputStreamgetMimeStream()Return the MIME format stream corresponding to this message part.java.util.Enumeration<java.lang.String>getNonMatchingHeaderLines(java.lang.String[] names)Get non-matching header lines as an Enumeration of Strings.java.util.Enumeration<Header>getNonMatchingHeaders(java.lang.String[] names)Return non-matching headers from this Message as an Enumeration of Header objects.intgetSize()Return the size of the content of this message in bytes.voidinvalidate(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.voidremoveHeader(java.lang.String name)Remove all headers with this name.voidsaveChanges()POP3 message can't be changed.voidsetFlags(Flags newFlags, boolean set)Set the specified flags on this message to the specified value.voidsetHeader(java.lang.String name, java.lang.String value)Set the value for this header_name.java.io.InputStreamtop(int n)Fetch the header of the message and the firstnlines of the raw content of the message.voidwriteTo(java.io.OutputStream os, java.lang.String[] ignoreList)Output the message as an RFC 822 format stream, without specified headers.- 
Methods inherited from class javax.mail.internet.MimeMessage
addFrom, addRecipients, addRecipients, getAllRecipients, getContent, getContentID, getContentLanguage, getContentMD5, getContentType, getDataHandler, getDescription, getDisposition, getEncoding, getFileName, getFlags, getFrom, getInputStream, getLineCount, getMessageID, getRawInputStream, getReceivedDate, getRecipients, getReplyTo, getSender, getSentDate, getSubject, isMimeType, isSet, reply, reply, setContent, setContent, setContentID, setContentLanguage, setContentMD5, setDataHandler, setDescription, setDescription, setDisposition, setFileName, setFrom, setFrom, setFrom, setRecipients, setRecipients, setReplyTo, setSender, setSentDate, setSubject, setSubject, setText, setText, setText, writeTo 
- 
Methods inherited from class javax.mail.Message
addRecipient, getFolder, getMessageNumber, getSession, isExpunged, match, setFlag, setRecipient 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
POP3Message
public POP3Message(Folder folder, int msgno) throws MessagingException
- Throws:
 MessagingException
 
 - 
 
- 
Method Detail
- 
setFlags
public void setFlags(Flags newFlags, boolean set) throws MessagingException
Set the specified flags on this message to the specified value.- Overrides:
 setFlagsin classMimeMessage- Parameters:
 newFlags- the flags to be setset- the value to be set- Throws:
 IllegalWriteException- if the underlying implementation does not support modificationMessagingException- for other failures- See Also:
 MessageChangedEvent
 
- 
getSize
public int getSize() throws MessagingExceptionReturn the size of the content of this message in bytes. Returns -1 if the size cannot be determined.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.
- Specified by:
 getSizein interfacePart- Overrides:
 getSizein classMimeMessage- Returns:
 - size of content in bytes
 - Throws:
 MessagingException- for failures
 
- 
getMimeStream
public java.io.InputStream getMimeStream() throws MessagingExceptionReturn the MIME format stream corresponding to this message part.- Specified by:
 getMimeStreamin interfaceReadableMime- Returns:
 - the MIME format stream
 - Throws:
 MessagingException- for failures- Since:
 - JavaMail 1.4.5
 
 
- 
invalidate
public 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. IfinvalidateHeadersis true, invalidate the headers as well.- Parameters:
 invalidateHeaders- invalidate the headers as well?
 
- 
top
public java.io.InputStream top(int n) throws MessagingExceptionFetch the header of the message and the firstnlines of the raw content of the message. The headers and data are available in the returned InputStream.- Parameters:
 n- number of lines of content to fetch- Returns:
 - InputStream containing the message headers and n content lines
 - Throws:
 MessagingException- for failures
 
- 
getHeader
public java.lang.String[] getHeader(java.lang.String name) throws MessagingExceptionGet all the headers for this header_name. Note that certain headers may be encoded as per RFC 2047 if they contain non US-ASCII characters and these should be decoded.- Specified by:
 getHeaderin interfacePart- Overrides:
 getHeaderin classMimeMessage- Parameters:
 name- name of header- Returns:
 - array of headers
 - Throws:
 MessagingException- for failures- See Also:
 MimeUtility
 
- 
getHeader
public java.lang.String getHeader(java.lang.String name, java.lang.String delimiter) throws MessagingExceptionGet all the headers for this header name, returned as a single String, with headers separated by the delimiter. If the delimiter isnull, only the first header is returned.- Specified by:
 getHeaderin interfaceMimePart- Overrides:
 getHeaderin classMimeMessage- Parameters:
 name- the name of this headerdelimiter- delimiter between returned headers- Returns:
 - the value fields for all headers with this name
 - Throws:
 MessagingException- for failures
 
- 
setHeader
public void setHeader(java.lang.String name, java.lang.String value) throws MessagingExceptionSet the value for this header_name. Throws IllegalWriteException because POP3 messages are read-only.- Specified by:
 setHeaderin interfacePart- Overrides:
 setHeaderin classMimeMessage- Parameters:
 name- header namevalue- header value- Throws:
 IllegalWriteException- because the underlying implementation does not support modificationjava.lang.IllegalStateException- if this message is obtained from a READ_ONLY folder.MessagingException- for other failures- See Also:
 MimeUtility
 
- 
addHeader
public void addHeader(java.lang.String name, java.lang.String value) throws MessagingExceptionAdd this value to the existing values for this header_name. Throws IllegalWriteException because POP3 messages are read-only.- Specified by:
 addHeaderin interfacePart- Overrides:
 addHeaderin classMimeMessage- Parameters:
 name- header namevalue- header value- Throws:
 IllegalWriteException- because the underlying implementation does not support modificationjava.lang.IllegalStateException- if this message is obtained from a READ_ONLY folder.MessagingException- for other failures- See Also:
 MimeUtility
 
- 
removeHeader
public void removeHeader(java.lang.String name) throws MessagingExceptionRemove all headers with this name. Throws IllegalWriteException because POP3 messages are read-only.- Specified by:
 removeHeaderin interfacePart- Overrides:
 removeHeaderin classMimeMessage- Parameters:
 name- the name of this header- Throws:
 IllegalWriteException- because the underlying implementation does not support modificationjava.lang.IllegalStateException- if this message is obtained from a READ_ONLY folder.MessagingException- for other failures
 
- 
getAllHeaders
public java.util.Enumeration<Header> getAllHeaders() throws MessagingException
Return all the headers from this Message as an enumeration of Header objects.Note that certain headers may be encoded as per RFC 2047 if they contain non US-ASCII characters and these should be decoded.
- Specified by:
 getAllHeadersin interfacePart- Overrides:
 getAllHeadersin classMimeMessage- Returns:
 - array of header objects
 - Throws:
 MessagingException- for failures- See Also:
 MimeUtility
 
- 
getMatchingHeaders
public java.util.Enumeration<Header> getMatchingHeaders(java.lang.String[] names) throws MessagingException
Return matching headers from this Message as an Enumeration of Header objects.- Specified by:
 getMatchingHeadersin interfacePart- Overrides:
 getMatchingHeadersin classMimeMessage- Parameters:
 names- the headers to match- Returns:
 - enumeration of Header objects
 - Throws:
 MessagingException- for failures
 
- 
getNonMatchingHeaders
public java.util.Enumeration<Header> getNonMatchingHeaders(java.lang.String[] names) throws MessagingException
Return non-matching headers from this Message as an Enumeration of Header objects.- Specified by:
 getNonMatchingHeadersin interfacePart- Overrides:
 getNonMatchingHeadersin classMimeMessage- Parameters:
 names- the headers to not match- Returns:
 - enumeration of Header objects
 - Throws:
 MessagingException- for failures
 
- 
addHeaderLine
public void addHeaderLine(java.lang.String line) throws MessagingExceptionAdd a raw RFC822 header-line. Throws IllegalWriteException because POP3 messages are read-only.- Specified by:
 addHeaderLinein interfaceMimePart- Overrides:
 addHeaderLinein classMimeMessage- Parameters:
 line- the line to add- Throws:
 IllegalWriteException- because the underlying implementation does not support modificationjava.lang.IllegalStateException- if this message is obtained from a READ_ONLY folder.MessagingException- for other failures
 
- 
getAllHeaderLines
public java.util.Enumeration<java.lang.String> getAllHeaderLines() throws MessagingExceptionGet all header lines as an Enumeration of Strings. A Header line is a raw RFC822 header-line, containing both the "name" and "value" field.- Specified by:
 getAllHeaderLinesin interfaceMimePart- Overrides:
 getAllHeaderLinesin classMimeMessage- Returns:
 - an Enumeration of Strings
 - Throws:
 MessagingException- for failures
 
- 
getMatchingHeaderLines
public java.util.Enumeration<java.lang.String> getMatchingHeaderLines(java.lang.String[] names) throws MessagingExceptionGet matching header lines as an Enumeration of Strings. A Header line is a raw RFC822 header-line, containing both the "name" and "value" field.- Specified by:
 getMatchingHeaderLinesin interfaceMimePart- Overrides:
 getMatchingHeaderLinesin classMimeMessage- Parameters:
 names- the headers to return- Returns:
 - an Enumeration of Strings
 - Throws:
 MessagingException- for failures
 
- 
getNonMatchingHeaderLines
public java.util.Enumeration<java.lang.String> getNonMatchingHeaderLines(java.lang.String[] names) throws MessagingExceptionGet non-matching header lines as an Enumeration of Strings. A Header line is a raw RFC822 header-line, containing both the "name" and "value" field.- Specified by:
 getNonMatchingHeaderLinesin interfaceMimePart- Overrides:
 getNonMatchingHeaderLinesin classMimeMessage- Parameters:
 names- the headers to not return- Returns:
 - an Enumeration of Strings
 - Throws:
 MessagingException- for failures
 
- 
saveChanges
public void saveChanges() throws MessagingExceptionPOP3 message can't be changed. This method throws IllegalWriteException.- Overrides:
 saveChangesin classMimeMessage- Throws:
 IllegalWriteException- because the underlying implementation does not support modificationMessagingException- for other failures
 
- 
writeTo
public void writeTo(java.io.OutputStream os, java.lang.String[] ignoreList) throws java.io.IOException, MessagingExceptionOutput the message as an RFC 822 format stream, without specified headers. If the property "mail.pop3.cachewriteto" is set to "true", and ignoreList is null, and the message hasn't already been cached as a side effect of other operations, the message content is cached before being written. Otherwise, the message is streamed directly to the output stream without being cached.- Overrides:
 writeToin classMimeMessage- Parameters:
 os- the stream to write toignoreList- the headers to not include in the output- Throws:
 java.io.IOException- if an error occurs writing to the stream or if an error is generated by the javax.activation layer.MessagingException- for other failures- See Also:
 DataHandler.writeTo(java.io.OutputStream)
 
 - 
 
 -