Class IEProxyConfig
- java.lang.Object
-
- com.github.markusbernhardt.proxy.search.browser.ie.IEProxyConfig
-
public class IEProxyConfig extends Object
Proxy settings container used for the native methods. Will contain the Internet Explorer proxy settings as reported by windows WinHTTP API.- Author:
- Markus Bernhardt, Copyright 2016, Bernd Rosstauscher, Copyright 2009
-
-
Constructor Summary
Constructors Constructor Description IEProxyConfig(boolean autoDetect, String autoConfigUrl, String proxy, String proxyBypass)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAutoConfigUrl()StringgetProxy()StringgetProxyBypass()booleanisAutoDetect()
-
-
-
Constructor Detail
-
IEProxyConfig
public IEProxyConfig(boolean autoDetect, String autoConfigUrl, String proxy, String proxyBypass)Constructor- Parameters:
autoDetect- flag is autodetect is active or not.autoConfigUrl- the URL for a PAC scriptproxy- the proxy server selectedproxyBypass- the proxy bypass address list.
-
-
Method Detail
-
isAutoDetect
public boolean isAutoDetect()
- Returns:
- Returns the autoDetect.
-
getAutoConfigUrl
public String getAutoConfigUrl()
- Returns:
- Returns the autoConfigUrl.
-
getProxy
public String getProxy()
- Returns:
- Returns the proxy.
-
getProxyBypass
public String getProxyBypass()
- Returns:
- Returns the proxyBypass.
-
-