/** See HttpClient for the model for this method. */ static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv, boolean useCache) throws IOException { return HttpsClient.New(sf, url, hv, (String) null, -1, useCache); }
/** Get a HTTPS client to the URL. Traffic will be tunneled through the specified proxy server. */ static HttpClient New( SSLSocketFactory sf, URL url, HostnameVerifier hv, String proxy, int proxyPort) throws IOException { return HttpsClient.New(sf, url, hv, proxy, proxyPort, true); }
static HttpClient New(SSLSocketFactory sf, URL url, HostnameVerifier hv) throws IOException { return HttpsClient.New(sf, url, hv, true); }