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

com.capitalone.dashboard.config.monitor.ProxyAuthenticator Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy