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)
| 304 | * @return reference to self |
| 305 | */ |
| 306 | public Proxy setSslProxy(String sslProxy) { |
| 307 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 308 | this.proxyType = ProxyType.MANUAL; |
| 309 | this.sslProxy = sslProxy; |
| 310 | return this; |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * Gets the SOCKS proxy. |