Uses of Class
javax.mail.Session
-
Packages that use Session Package Description com.sun.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.com.sun.mail.pop3 A POP3 protocol provider for the Jakarta Mail API that provides access to a POP3 message store.com.sun.mail.smtp An SMTP protocol provider for the Jakarta Mail API that provides access to an SMTP server.com.sun.mail.util Utility classes for use with the Jakarta Mail API.javax.mail The Jakarta Mail API provides classes that model a mail system.javax.mail.internet Classes specific to Internet mail systems. -
-
Uses of Session in com.sun.mail.imap
Constructors in com.sun.mail.imap with parameters of type Session Constructor Description IdleManager(Session session, java.util.concurrent.Executor es)
Create an IdleManager.IMAPMessage(Session session)
Constructor, for use by IMAPNestedMessage.IMAPSSLStore(Session session, URLName url)
Constructor that takes a Session object and a URLName that represents a specific IMAP server.IMAPStore(Session session, URLName url)
Constructor that takes a Session object and a URLName that represents a specific IMAP server.IMAPStore(Session session, URLName url, java.lang.String name, boolean isSSL)
Constructor used by this class and by IMAPSSLStore subclass. -
Uses of Session in com.sun.mail.pop3
Constructors in com.sun.mail.pop3 with parameters of type Session Constructor Description POP3SSLStore(Session session, URLName url)
POP3Store(Session session, URLName url)
POP3Store(Session session, URLName url, java.lang.String name, boolean isSSL)
-
Uses of Session in com.sun.mail.smtp
Constructors in com.sun.mail.smtp with parameters of type Session Constructor Description SMTPMessage(Session session)
Default constructor.SMTPMessage(Session session, java.io.InputStream is)
Constructs an SMTPMessage by reading and parsing the data from the specified MIME InputStream.SMTPSSLTransport(Session session, URLName urlname)
Constructor.SMTPTransport(Session session, URLName urlname)
Constructor that takes a Session object and a URLName that represents a specific SMTP server.SMTPTransport(Session session, URLName urlname, java.lang.String name, boolean isSSL)
Constructor used by this class and by SMTPSSLTransport subclass. -
Uses of Session in com.sun.mail.util
Methods in com.sun.mail.util with parameters of type Session Modifier and Type Method Description static boolean
PropUtil. getBooleanSessionProperty(Session session, java.lang.String name, boolean def)
Deprecated.static int
PropUtil. getIntSessionProperty(Session session, java.lang.String name, int def)
Deprecated.Constructors in com.sun.mail.util with parameters of type Session Constructor Description MailLogger(java.lang.Class<?> clazz, java.lang.String prefix, Session session)
Deprecated.MailLogger(java.lang.String name, java.lang.String prefix, Session session)
Deprecated. -
Uses of Session in javax.mail
Fields in javax.mail declared as Session Modifier and Type Field Description protected Session
Message. session
The Session object for this Messageprotected Session
Service. session
The session from which this service was created.Methods in javax.mail that return Session Modifier and Type Method Description static Session
Session. getDefaultInstance(java.util.Properties props)
Get the default Session object.static Session
Session. getDefaultInstance(java.util.Properties props, Authenticator authenticator)
Get the default Session object.static Session
Session. getInstance(java.util.Properties props)
Get a new Session object.static Session
Session. getInstance(java.util.Properties props, Authenticator authenticator)
Get a new Session object.Session
Message. getSession()
Return the Session used when this message was created.Session
MessageContext. getSession()
Return the Session we're operating in.Constructors in javax.mail with parameters of type Session Constructor Description Message(Session session)
Constructor that takes a Session.Service(Session session, URLName urlname)
Constructor.Store(Session session, URLName urlname)
Constructor.Transport(Session session, URLName urlname)
Constructor. -
Uses of Session in javax.mail.internet
Methods in javax.mail.internet with parameters of type Session Modifier and Type Method Description protected MimeMessage
MimeMessage. createMimeMessage(Session session)
Create and return a MimeMessage object.static InternetAddress
InternetAddress. getLocalAddress(Session session)
Return an InternetAddress object representing the current user.Constructors in javax.mail.internet with parameters of type Session Constructor Description MimeMessage(Session session)
Default constructor.MimeMessage(Session session, java.io.InputStream is)
Constructs a MimeMessage by reading and parsing the data from the specified MIME InputStream.
-