Package mail

Source Code of mail.SMTPAuthenticator

package mail;

import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;


class SMTPAuthenticator extends Authenticator {

    private String username;
    private String password;
    private boolean needAuth;

    public SMTPAuthenticator(String username, String password, boolean needAuth) {
        this.username = username;
        this.password = password;
        this.needAuth = needAuth;
    }

    @Override
    protected PasswordAuthentication getPasswordAuthentication() {
        if (needAuth)
            return    new PasswordAuthentication(username, password);
        else    return null;
    }

}
TOP

Related Classes of mail.SMTPAuthenticator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.