(
SSLSocketFactory sslContextFactory, HostnameVerifier hostnameVerifier, Proxy proxy)
| 68 | private String credentials; |
| 69 | |
| 70 | public Proxied( |
| 71 | SSLSocketFactory sslContextFactory, HostnameVerifier hostnameVerifier, Proxy proxy) { |
| 72 | super(sslContextFactory, hostnameVerifier); |
| 73 | checkNotNull(proxy, "a proxy is required."); |
| 74 | this.proxy = proxy; |
| 75 | } |
| 76 | |
| 77 | public Proxied( |
| 78 | SSLSocketFactory sslContextFactory, |
nothing calls this directly
no test coverage detected