Package org.eclipse.jetty.client
Class ProxyConfiguration.Proxy
- java.lang.Object
-
- org.eclipse.jetty.client.ProxyConfiguration.Proxy
-
- Direct Known Subclasses:
HttpProxy
,Socks4Proxy
- Enclosing class:
- ProxyConfiguration
@Deprecated(since="2021-05-27") public abstract static class ProxyConfiguration.Proxy extends java.lang.Object
Deprecated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Origin.Address
getAddress()
Deprecated.java.util.Set<java.lang.String>
getExcludedAddresses()
Deprecated.java.util.Set<java.lang.String>
getIncludedAddresses()
Deprecated.SslContextFactory.Client
getSslContextFactory()
Deprecated.java.net.URI
getURI()
Deprecated.boolean
isSecure()
Deprecated.boolean
matches(Origin origin)
Deprecated.Matches the givenorigin
with the included and excluded addresses, returning true if the givenorigin
is to be proxied.abstract ClientConnectionFactory
newClientConnectionFactory(ClientConnectionFactory connectionFactory)
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Method Detail
-
getAddress
public Origin.Address getAddress()
Deprecated.- Returns:
- the address of this proxy
-
isSecure
public boolean isSecure()
Deprecated.- Returns:
- whether the connection to the proxy must be secured via TLS
-
getSslContextFactory
public SslContextFactory.Client getSslContextFactory()
Deprecated.- Returns:
- the optional SslContextFactory to use when connecting to proxies
-
getIncludedAddresses
public java.util.Set<java.lang.String> getIncludedAddresses()
Deprecated.- Returns:
- the list of origins that must be proxied
- See Also:
matches(Origin)
,getExcludedAddresses()
-
getExcludedAddresses
public java.util.Set<java.lang.String> getExcludedAddresses()
Deprecated.- Returns:
- the list of origins that must not be proxied.
- See Also:
matches(Origin)
,getIncludedAddresses()
-
getURI
public java.net.URI getURI()
Deprecated.- Returns:
- an URI representing this proxy, or null if no URI can represent this proxy
-
matches
public boolean matches(Origin origin)
Deprecated.Matches the givenorigin
with the included and excluded addresses, returning true if the givenorigin
is to be proxied.- Parameters:
origin
- the origin to test for proxying- Returns:
- true if the origin must be proxied, false otherwise
-
newClientConnectionFactory
public abstract ClientConnectionFactory newClientConnectionFactory(ClientConnectionFactory connectionFactory)
Deprecated.- Parameters:
connectionFactory
- the nestedClientConnectionFactory
- Returns:
- a new
ClientConnectionFactory
for thisProxyConfiguration.Proxy
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-