com.blazebit.mail.impl.SimplePasswordAuthenticator Maven / Gradle / Ivy
/*
* Copyright 2011 Blazebit
*/
package com.blazebit.mail.impl;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
/**
*
* @author Christian Beikov
* @since 0.1.2
*/
public class SimplePasswordAuthenticator extends Authenticator {
private final PasswordAuthentication passwordAuthentication;
public SimplePasswordAuthenticator(String user, String password) {
this.passwordAuthentication = new PasswordAuthentication(user, password);
}
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return passwordAuthentication;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy