public static interface HttpUrlConnectorProvider.ConnectionFactory
HttpURLConnection
instances.
A factory may be used to create a HttpURLConnection
and configure
it in a custom manner that is not possible using the Client API.
A custom factory instance may be registered in the HttpUrlConnectorProvider
instance
via HttpUrlConnectorProvider.connectionFactory(ConnectionFactory)
method.
Modifier and Type | Method and Description |
---|---|
java.net.HttpURLConnection |
getConnection(java.net.URL url)
Get a
HttpURLConnection for a given URL. |
java.net.HttpURLConnection getConnection(java.net.URL url) throws java.io.IOException
HttpURLConnection
for a given URL.
Implementation of the method MUST be thread-safe and MUST ensure that
a dedicated HttpURLConnection
instance is returned for concurrent
requests.
url
- the endpoint URL.HttpURLConnection
.java.io.IOException
- in case the connection cannot be provided.