Specifies which proxy to use for SOCKS. @param socksProxy the proxy host, expected format is hostname.com:1234 @return reference to self
(String socksProxy)
| 326 | * @return reference to self |
| 327 | */ |
| 328 | public Proxy setSocksProxy(String socksProxy) { |
| 329 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 330 | this.proxyType = ProxyType.MANUAL; |
| 331 | this.socksProxy = socksProxy; |
| 332 | return this; |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * Gets the SOCKS version (4 or 5). |