Specifies a password for the SOCKS proxy. Supported by SOCKS v5 and above. @param password password for the SOCKS proxy @return reference to self
(String password)
| 392 | * @return reference to self |
| 393 | */ |
| 394 | public Proxy setSocksPassword(String password) { |
| 395 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 396 | this.proxyType = ProxyType.MANUAL; |
| 397 | this.socksPassword = password; |
| 398 | return this; |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Gets the proxy auto-configuration URL. |