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

com.sany.mail.MyAuthenticator Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package com.sany.mail;

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

public class MyAuthenticator extends Authenticator {   
	private String username = "";   
	private String password = "";   

	public MyAuthenticator() {   
	}   

	public MyAuthenticator(String username, String password) {   
		this.username = username;   
		this.password = password;   
	}   

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

}  





© 2015 - 2024 Weber Informatics LLC | Privacy Policy