Uses of Class
com.sun.mail.util.MailLogger
-
Packages that use MailLogger Package Description com.sun.mail.auth This package includes internal authentication support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.com.sun.mail.iap This package includes internal IMAP support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.com.sun.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.com.sun.mail.imap.protocol This package includes internal IMAP support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.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. -
-
Uses of MailLogger in com.sun.mail.auth
Constructors in com.sun.mail.auth with parameters of type MailLogger Constructor Description Ntlm(java.lang.String ntdomain, java.lang.String hostname, java.lang.String username, java.lang.String password, MailLogger logger)
Create an NTLM authenticator. -
Uses of MailLogger in com.sun.mail.iap
Fields in com.sun.mail.iap declared as MailLogger Modifier and Type Field Description protected MailLogger
Protocol. logger
protected MailLogger
Protocol. traceLogger
Constructors in com.sun.mail.iap with parameters of type MailLogger Constructor Description Protocol(java.lang.String host, int port, java.util.Properties props, java.lang.String prefix, boolean isSSL, MailLogger logger)
Constructor. -
Uses of MailLogger in com.sun.mail.imap
Fields in com.sun.mail.imap declared as MailLogger Modifier and Type Field Description protected MailLogger
IMAPFolder. logger
protected MailLogger
IMAPStore. logger
-
Uses of MailLogger in com.sun.mail.imap.protocol
Constructors in com.sun.mail.imap.protocol with parameters of type MailLogger Constructor Description IMAPProtocol(java.lang.String name, java.lang.String host, int port, java.util.Properties props, boolean isSSL, MailLogger logger)
Constructor.IMAPSaslAuthenticator(IMAPProtocol pr, java.lang.String name, java.util.Properties props, MailLogger logger, java.lang.String host)
-
Uses of MailLogger in com.sun.mail.smtp
Constructors in com.sun.mail.smtp with parameters of type MailLogger Constructor Description DigestMD5(MailLogger logger)
SMTPSaslAuthenticator(SMTPTransport pr, java.lang.String name, java.util.Properties props, MailLogger logger, java.lang.String host)
-
Uses of MailLogger in com.sun.mail.util
Fields in com.sun.mail.util declared as MailLogger Modifier and Type Field Description protected MailLogger
LogOutputStream. logger
Methods in com.sun.mail.util that return MailLogger Modifier and Type Method Description MailLogger
MailLogger. getLogger(java.lang.Class<?> clazz, java.lang.String prefix)
Create a MailLogger using the specified class' package name as the Logger name and the specified prefix.MailLogger
MailLogger. getLogger(java.lang.String name, java.lang.String prefix)
Create a MailLogger that uses a Logger with the specified name and prefix.MailLogger
MailLogger. getSubLogger(java.lang.String subname, java.lang.String prefix)
Create a MailLogger that uses a Logger whose name is composed of this MailLogger's name plus the specified sub-name, separated by a dot.MailLogger
MailLogger. getSubLogger(java.lang.String subname, java.lang.String prefix, boolean debug)
Create a MailLogger that uses a Logger whose name is composed of this MailLogger's name plus the specified sub-name, separated by a dot.Constructors in com.sun.mail.util with parameters of type MailLogger Constructor Description LogOutputStream(MailLogger logger)
Log to the specified logger.TraceInputStream(java.io.InputStream in, MailLogger logger)
Creates an input stream filter built on top of the specified input stream.TraceOutputStream(java.io.OutputStream out, MailLogger logger)
Creates an output stream filter built on top of the specified underlying output stream.
-