Specify which proxy to use for HTTP connections. @param httpProxy the proxy host, expected format is hostname:1234 @return reference to self
(String httpProxy)
| 260 | * @return reference to self |
| 261 | */ |
| 262 | public Proxy setHttpProxy(String httpProxy) { |
| 263 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 264 | this.proxyType = ProxyType.MANUAL; |
| 265 | this.httpProxy = httpProxy; |
| 266 | return this; |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Gets proxy bypass (noproxy) addresses. |