com.capitalone.dashboard.config.monitor.ProxyAuthenticator Maven / Gradle / Ivy
package com.capitalone.dashboard.config.monitor;
import java.net.Authenticator;
import java.net.PasswordAuthentication;
public class ProxyAuthenticator extends Authenticator {
private PasswordAuthentication passwordAuthentication;
public ProxyAuthenticator(PasswordAuthentication passwordAuthentication) {
this.passwordAuthentication = passwordAuthentication;
}
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return passwordAuthentication;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy