Uses of Class
javax.mail.URLName
-
Packages that use URLName 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.gnu.mail.providers.smtp A provider for the Simple Mail Transfer Protocol (SMTP), as detailed in RFC 2821, including support for ESMTP service extensions.javax.mail Classes modelling a mail system. -
-
Uses of URLName in gnu.mail.providers.imap
Methods in gnu.mail.providers.imap with parameters of type URLName Modifier and Type Method Description Folder
IMAPStore. getFolder(URLName urlname)
Returns the folder whose name is the file part of the specified URLName.Constructors in gnu.mail.providers.imap with parameters of type URLName Constructor Description IMAPStore(Session session, URLName url)
Constructor. -
Uses of URLName in gnu.mail.providers.maildir
Methods in gnu.mail.providers.maildir that return URLName Modifier and Type Method Description URLName
MaildirFolder. getURLName()
Return a URLName representing this folder.Methods in gnu.mail.providers.maildir with parameters of type URLName Modifier and Type Method Description Folder
MaildirStore. getFolder(URLName urlname)
Returns the folder specified by the filename of the URLName.Constructors in gnu.mail.providers.maildir with parameters of type URLName Constructor Description MaildirStore(Session session, URLName urlname)
Constructor. -
Uses of URLName in gnu.mail.providers.mbox
Methods in gnu.mail.providers.mbox that return URLName Modifier and Type Method Description URLName
MboxFolder. getURLName()
Return a URLName representing this folder.Methods in gnu.mail.providers.mbox with parameters of type URLName Modifier and Type Method Description Folder
MboxStore. getFolder(URLName urlname)
Returns the folder specified by the filename of the URLName.protected void
MboxStore. setURLName(URLName url)
Sets the correct form of the URLName.Constructors in gnu.mail.providers.mbox with parameters of type URLName Constructor Description MboxStore(Session session, URLName urlname)
Constructor. -
Uses of URLName in gnu.mail.providers.nntp
Methods in gnu.mail.providers.nntp with parameters of type URLName Modifier and Type Method Description Folder
NNTPStore. getFolder(URLName url)
Returns the folder whose name corresponds to thefile
part of the specified URL.Constructors in gnu.mail.providers.nntp with parameters of type URLName Constructor Description NNTPStore(Session session, URLName url)
Constructor.NNTPTransport(Session session, URLName url)
Constructor. -
Uses of URLName in gnu.mail.providers.pop3
Methods in gnu.mail.providers.pop3 with parameters of type URLName Modifier and Type Method Description Folder
POP3Store. getFolder(URLName urlname)
Returns the folder whose name is the file part of the specified URLName.Constructors in gnu.mail.providers.pop3 with parameters of type URLName Constructor Description POP3Store(Session session, URLName urlname)
Constructor. -
Uses of URLName in gnu.mail.providers.smtp
Constructors in gnu.mail.providers.smtp with parameters of type URLName Constructor Description SMTPTransport(Session session, URLName urlName)
Creates a newSMTPTransport
instance. -
Uses of URLName in javax.mail
Fields in javax.mail declared as URLName Modifier and Type Field Description protected URLName
Service. url
The URLName of this service.Methods in javax.mail that return URLName Modifier and Type Method Description URLName
Folder. getURLName()
Return a URLName that can be used as a handle to access this folder.URLName
Service. getURLName()
Return a URLName representing this service.Methods in javax.mail with parameters of type URLName Modifier and Type Method Description Folder
Session. getFolder(URLName url)
Get a closed Folder object for the given URLName.abstract Folder
Store. getFolder(URLName url)
Returns the folder corresponding to the given URLName.PasswordAuthentication
Session. getPasswordAuthentication(URLName url)
Return any saved PasswordAuthentication for this(store or transport) URLName.Store
Session. getStore(URLName url)
Get a Store object for the given URLName.Transport
Session. getTransport(URLName url)
Get a Transport object for the given URLName.void
Session. setPasswordAuthentication(URLName url, PasswordAuthentication pw)
Save a PasswordAuthentication for this(store or transport) URLName.protected void
Service. setURLName(URLName url)
Set the URLName representing this service.Constructors in javax.mail with parameters of type URLName Constructor Description Service(Session session, URLName url)
Constructor.Store(Session session, URLName url)
Constructor.Transport(Session session, URLName url)
Constructor.
-