UIDFolder interface is implemented by Folders
that can support the "disconnected" mode of operation, by providing
unique-ids for messages in the folder. This interface is based on
the IMAP model for supporting disconnected operation. A Unique identifier (UID) is a positive long value, assigned to each message in a specific folder. Unique identifiers are assigned in a strictly ascending fashion in the mailbox. That is, as each message is added to the mailbox it is assigned a higher UID than the message(s) which were added previously. Unique identifiers persist across sessions. This permits a client to resynchronize its state from a previous session with the server.
Associated with every mailbox is a unique identifier validity value. If unique identifiers from an earlier session fail to persist to this session, the unique identifier validity value must be greater than the one used in the earlier session.
Refer to RFC 2060 http://www.ietf.org/rfc/rfc2060.txt for more information.
John - Mani| Nested Class Summary: | ||
|---|---|---|
| public static class | UIDFolder.FetchProfileItem | A fetch profile item for fetching UIDs.
This inner class extends the FetchProfile.Item
class to add new FetchProfile item types, specific to UIDFolders.
The only item currently defined here is the UID item. |
| Field Summary | ||
|---|---|---|
| public static final long | LASTUID | This is a special value that can be used as the end
parameter in getMessagesByUID(start, end), to denote the
UID of the last message in the folder.
|
| Method from javax.mail.UIDFolder Summary: |
|---|
| getMessageByUID, getMessagesByUID, getMessagesByUID, getUID, getUIDValidity |
| Method from javax.mail.UIDFolder Detail: |
|---|
null is returned. |
null is returned for that entry.
Note that the returned array will be of the same size as the specified
array of UIDs, and |
end parameter
to indicate the UID of the last message in the folder. |
|
Clients typically compare this value against a UIDValidity value saved from a previous session to insure that any cached UIDs are not stale. |