Uses of Class
javax.mail.Store
-
Packages that use Store Package Description gnu.mail.providers.imap This is a provider for the Internet Message Access Protocol, version 4rev1 (IMAP4rev1), as detailed in RFC 3501.gnu.mail.providers.maildir gnu.mail.providers.mbox This is a provider for the UNIXmbox
mailbox file format, used by many 3rd-party MUAs including Netscape, Mozilla, mutt, elm, and pine.gnu.mail.providers.nntp This is a provider for the Network News Transfer Protocol (NNTP), as detailed in RFC 977.gnu.mail.providers.pop3 This is a provider for the Internet Post Office Protocol, version 3 (POP3), as detailed in RFC 1939.javax.mail Classes modelling a mail system.javax.mail.event Event objects and listener interfaces for JavaMail. -
-
Uses of Store in gnu.mail.providers.imap
Subclasses of Store in gnu.mail.providers.imap Modifier and Type Class Description class
IMAPStore
The storage class implementing the IMAP4rev1 mail protocol.Constructors in gnu.mail.providers.imap with parameters of type Store Constructor Description IMAPFolder(Store store, java.lang.String path)
Constructor.IMAPFolder(Store store, java.lang.String path, char delimiter)
Constructor.IMAPFolder(Store store, java.lang.String path, int type, char delimiter)
Constructor. -
Uses of Store in gnu.mail.providers.maildir
Subclasses of Store in gnu.mail.providers.maildir Modifier and Type Class Description class
MaildirStore
The storage class implementing the Maildir mailbox format.Constructors in gnu.mail.providers.maildir with parameters of type Store Constructor Description MaildirFolder(Store store, java.lang.String filename)
Constructor.MaildirFolder(Store store, java.lang.String filename, boolean root, boolean inbox)
Constructor. -
Uses of Store in gnu.mail.providers.mbox
Subclasses of Store in gnu.mail.providers.mbox Modifier and Type Class Description class
MboxStore
The storage class implementing the Mbox mailbox file format.Constructors in gnu.mail.providers.mbox with parameters of type Store Constructor Description MboxFolder(Store store, java.io.File file, boolean inbox)
Constructor. -
Uses of Store in gnu.mail.providers.nntp
Subclasses of Store in gnu.mail.providers.nntp Modifier and Type Class Description class
NNTPStore
An NNTP store provider. -
Uses of Store in gnu.mail.providers.pop3
Subclasses of Store in gnu.mail.providers.pop3 Modifier and Type Class Description class
POP3Store
The storage class implementing the POP3 mail protocol.Constructors in gnu.mail.providers.pop3 with parameters of type Store Constructor Description POP3Folder(Store store, int type)
Constructor. -
Uses of Store in javax.mail
Fields in javax.mail declared as Store Modifier and Type Field Description protected Store
Folder. store
The parent store.Methods in javax.mail that return Store Modifier and Type Method Description Store
Folder. getStore()
Returns the parent store.Store
Session. getStore()
Get a Store object that implements this user's desired Store protocol.Store
Session. getStore(java.lang.String protocol)
Get a Store object that implements the specified protocol.Store
Session. getStore(Provider provider)
Get an instance of the store specified by Provider.Store
Session. getStore(URLName url)
Get a Store object for the given URLName.Store
StoreClosedException. getStore()
Returns the store.Constructors in javax.mail with parameters of type Store Constructor Description Folder(Store store)
Constructor.StoreClosedException(Store store)
StoreClosedException(Store store, java.lang.String message)
-
Uses of Store in javax.mail.event
Constructors in javax.mail.event with parameters of type Store Constructor Description StoreEvent(Store source, int type, java.lang.String message)
Constructor.
-