Specify which proxy to use for SSL connections. @param sslProxy the proxy host, expected format is hostname.com:1234 @return reference to self
(String sslProxy)
| 272 | * @return reference to self |
| 273 | */ |
| 274 | public Proxy setSslProxy(String sslProxy) { |
| 275 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 276 | this.proxyType = ProxyType.MANUAL; |
| 277 | this.sslProxy = sslProxy; |
| 278 | return this; |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Gets the SOCKS proxy. |