Class 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 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 given origin with the included and excluded addresses, returning true if the given origin is to be proxied.
        Parameters:
        origin - the origin to test for proxying
        Returns:
        true if the origin must be proxied, false otherwise
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object