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

aQute.bnd.service.url.ProxyHandler Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package aQute.bnd.service.url;

import java.net.PasswordAuthentication;
import java.net.Proxy;
import java.net.URL;

public interface ProxyHandler {

	ProxySetup forURL(URL url) throws Exception;

	public class ProxySetup {
		public Proxy					proxy;
		public PasswordAuthentication	authentication;

		@Override
		public String toString() {
			return "Proxy [proxy=" + proxy + ", authentication="
					+ (authentication == null ? null : authentication.getUserName()) + "]";
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy