Uses of Class
javax.mail.Session

Packages that use Session
javax.mail   
javax.mail.internet   
 

Uses of Session in javax.mail
 

Fields in javax.mail declared as Session
protected  Session Message.session
          The Session object for this Message
protected  Session Service.session
          The session from which this service was created.
 

Methods in javax.mail that return Session
 Session MessageContext.getSession()
          Return the Session we're operating in.
static Session Session.getInstance(java.util.Properties props, Authenticator authenticator)
          Get a new Session object.
static Session Session.getDefaultInstance(java.util.Properties props, Authenticator authenticator)
          Get the default Session object.
 

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

Uses of Session in javax.mail.internet
 

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

Constructors in javax.mail.internet with parameters of type Session
MimeMessage.MimeMessage(Session session)
          Default constructor.
MimeMessage.MimeMessage(Session session, java.io.InputStream is)
          Constructs a MimeMessage by reading and parsing the data from the specified MIME InputStream.