All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lodsve.core.email.Authentication Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
/*
 * Copyright (C) 2018  Sun.Hao
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package lodsve.core.email;

import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
import lodsve.core.utils.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 发送邮件时的身份认证器.
 *
 * @author sunhao([email protected])
 * @version V1.0, 13-3-25 上午6:53
 */
public class Authentication extends Authenticator {
    private static final Logger logger = LoggerFactory.getLogger(Authentication.class);

    /**用户名(发送者邮箱地址)**/
    private String username;
    /**发送者邮箱密码**/
    private String password;

    public Authentication(String username, String password) {
        if(StringUtils.isEmpty(username) || StringUtils.isEmpty(password)){
            logger.error("username and password is required!");
            throw new RuntimeException("username and password is required!");
        }

        this.username = username;
        this.password = password;
    }

    @Override
    protected PasswordAuthentication getPasswordAuthentication(){
        return new PasswordAuthentication(username, password);
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy