Specify which proxy to use for HTTP connections. @param httpProxy the proxy host, expected format is hostname:1234 @return reference to self
(String httpProxy)
| 228 | * @return reference to self |
| 229 | */ |
| 230 | public Proxy setHttpProxy(String httpProxy) { |
| 231 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 232 | this.proxyType = ProxyType.MANUAL; |
| 233 | this.httpProxy = httpProxy; |
| 234 | return this; |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Gets proxy bypass (noproxy) addresses. |