Uses of Class
javax.mail.Session

Packages that use Session
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 This is a provider for Dan Bernstein's Maildir mailbox format, used primarily by the qmail MTA, and also by some MUAs such as mutt
gnu.mail.providers.mbox This is a provider for the UNIX mbox 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. 
javax.mail.internet Classes modelling Internet mail systems. 
 

Uses of Session in gnu.mail.providers.imap
 

Constructors in gnu.mail.providers.imap with parameters of type Session
IMAPStore(Session session, URLName url)
          Constructor.
 

Uses of Session in gnu.mail.providers.maildir
 

Constructors in gnu.mail.providers.maildir with parameters of type Session
MaildirStore(Session session, URLName urlname)
          Constructor.
 

Uses of Session in gnu.mail.providers.mbox
 

Constructors in gnu.mail.providers.mbox with parameters of type Session
MboxStore(Session session, URLName urlname)
          Constructor.
 

Uses of Session in gnu.mail.providers.nntp
 

Constructors in gnu.mail.providers.nntp with parameters of type Session
NNTPTransport(Session session, URLName url)
          Constructor.
NNTPStore(Session session, URLName url)
          Constructor.
 

Uses of Session in gnu.mail.providers.pop3
 

Constructors in gnu.mail.providers.pop3 with parameters of type Session
POP3Store(Session session, URLName urlname)
          Constructor.
 

Uses of Session in gnu.mail.providers.smtp
 

Constructors in gnu.mail.providers.smtp with parameters of type Session
SMTPTransport(Session session, URLName urlName)
          Creates a new SMTPTransport instance.
 

Uses of Session in javax.mail
 

Fields in javax.mail declared as Session
protected  Session Service.session
          The session context for this service.
protected  Session Message.session
          The session in scope for this message.
 

Methods in javax.mail that return Session
static Session Session.getInstance(java.util.Properties props, Authenticator authenticator)
          Returns a new session.
static Session Session.getInstance(java.util.Properties props)
          Returns a new Session.
static Session Session.getDefaultInstance(java.util.Properties props, Authenticator authenticator)
          Returns the default session.
static Session Session.getDefaultInstance(java.util.Properties props)
          Get the default Session object.
 Session MessageContext.getSession()
          Returns the session context.
 

Constructors in javax.mail with parameters of type Session
Transport(Session session, URLName url)
          Constructor.
Store(Session session, URLName url)
          Constructor.
Service(Session session, URLName url)
          Constructor.
Message(Session session)
          Constructor with a session.
 

Uses of Session in javax.mail.internet
 

Methods in javax.mail.internet with parameters of type Session
static InternetAddress InternetAddress.getLocalAddress(Session session)
          Returns an InternetAddress object representing the current user.
 

Constructors in javax.mail.internet with parameters of type Session
MimeMessage(Session session)
          Constructor for an empty message.
MimeMessage(Session session, java.io.InputStream is)
          Constructor with an input stream contining an RFC 822 message.
 



© Copyright 2003, 2004 The Free Software Foundation, All rights reserved