Sets proxy bypass (noproxy) addresses @param noProxy The proxy bypass (noproxy) addresses separated by commas @return reference to self
(String noProxy)
| 282 | * @return reference to self |
| 283 | */ |
| 284 | public Proxy setNoProxy(String noProxy) { |
| 285 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 286 | this.proxyType = ProxyType.MANUAL; |
| 287 | this.noProxy = noProxy; |
| 288 | return this; |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * Gets the SSL tunnel proxy. |