Class IEProxyConfig
- java.lang.Object
-
- com.github.markusbernhardt.proxy.search.browser.ie.IEProxyConfig
-
public class IEProxyConfig extends java.lang.ObjectProxy settings container used for the native methods. Will contain the Internet Explorer proxy settings as reported by windows WinHTTP API.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.StringautoConfigUrlprivate booleanautoDetectprivate java.lang.Stringproxyprivate java.lang.StringproxyBypass
-
Constructor Summary
Constructors Constructor Description IEProxyConfig(boolean autoDetect, java.lang.String autoConfigUrl, java.lang.String proxy, java.lang.String proxyBypass)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAutoConfigUrl()java.lang.StringgetProxy()java.lang.StringgetProxyBypass()booleanisAutoDetect()
-
-
-
Constructor Detail
-
IEProxyConfig
public IEProxyConfig(boolean autoDetect, java.lang.String autoConfigUrl, java.lang.String proxy, java.lang.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 java.lang.String getAutoConfigUrl()
- Returns:
- Returns the autoConfigUrl.
-
getProxy
public java.lang.String getProxy()
- Returns:
- Returns the proxy.
-
getProxyBypass
public java.lang.String getProxyBypass()
- Returns:
- Returns the proxyBypass.
-
-