Class ProxyConfiguration

java.lang.Object
org.eclipse.jetty.client.ProxyConfiguration

@Deprecated(since="2021-05-27") public class ProxyConfiguration extends Object
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
The configuration of the forward proxy to use with HttpClient.

Applications add subclasses of ProxyConfiguration.Proxy to this configuration via:

  ProxyConfiguration proxyConfig = httpClient.getProxyConfiguration();
  proxyConfig.getProxies().add(new HttpProxy(proxyHost, 8080));
  
See Also: