Sets proxy bypass (noproxy) addresses @param noProxy The proxy bypass (noproxy) addresses separated by commas @return reference to self
(String noProxy)
| 250 | * @return reference to self |
| 251 | */ |
| 252 | public Proxy setNoProxy(String noProxy) { |
| 253 | verifyProxyTypeCompatibility(ProxyType.MANUAL); |
| 254 | this.proxyType = ProxyType.MANUAL; |
| 255 | this.noProxy = noProxy; |
| 256 | return this; |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Gets the SSL tunnel proxy. |