Uses of Interface
ratpack.http.client.ProxySpec
-
Packages that use ProxySpec Package Description ratpack.http.client The HTTP client. -
-
Uses of ProxySpec in ratpack.http.client
Methods in ratpack.http.client that return ProxySpec Modifier and Type Method Description ProxySpecProxySpec. credentials(java.lang.String username, java.lang.String password)Configure the username and password to use when connecting to the proxy.ProxySpecProxySpec. host(java.lang.String host)Configure the host that will proxy outbound HTTP requests.ProxySpecProxySpec. nonProxyHosts(java.util.Collection<java.lang.String> nonProxyHosts)Configure a collection of patterns for which if any are matched, the outbound request will bypass the HTTP proxy.ProxySpecProxySpec. port(int port)Configure the port on the proxy to will outbound HTTP requests will be sent.ProxySpecProxySpec. protocol(Proxy.ProxyProtocol protocol)The protocol to use when connecting to the proxy.Method parameters in ratpack.http.client with type arguments of type ProxySpec Modifier and Type Method Description HttpClientSpecHttpClientSpec. proxy(Action<? super ProxySpec> proxy)Configure a HTTP proxy for outgoing calls from this client.RequestSpecRequestSpec. proxy(Action<? super ProxySpec> proxy)Configure a HTTP proxy for this request.
-