Class DefaultProxySelector
- java.lang.Object
-
- org.eclipse.aether.util.repository.DefaultProxySelector
-
- All Implemented Interfaces:
ProxySelector
public final class DefaultProxySelector extends Object implements ProxySelector
A simple proxy selector that selects the first matching proxy from a list of configured proxies.
-
-
Constructor Summary
Constructors Constructor Description DefaultProxySelector()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefaultProxySelector
add(Proxy proxy, String nonProxyHosts)
Adds the specified proxy definition to the selector.Proxy
getProxy(RemoteRepository repository)
Selects a proxy for the specified remote repository.
-
-
-
Constructor Detail
-
DefaultProxySelector
public DefaultProxySelector()
-
-
Method Detail
-
add
public DefaultProxySelector add(Proxy proxy, String nonProxyHosts)
Adds the specified proxy definition to the selector. Proxy definitions are ordered, the first matching proxy for a given repository will be used.- Parameters:
proxy
- The proxy definition to add, must not benull
.nonProxyHosts
- The list of (case-insensitive) host names to exclude from proxying, may benull
.- Returns:
- This proxy selector for chaining, never
null
.
-
getProxy
public Proxy getProxy(RemoteRepository repository)
Description copied from interface:ProxySelector
Selects a proxy for the specified remote repository.- Specified by:
getProxy
in interfaceProxySelector
- Parameters:
repository
- The repository for which to select a proxy, must not benull
.- Returns:
- The selected proxy or
null
if none.
-
-