Package net.snowflake.client.core
Class HttpClientSettingsKey
- java.lang.Object
-
- net.snowflake.client.core.HttpClientSettingsKey
-
- All Implemented Interfaces:
Serializable
public class HttpClientSettingsKey extends Object implements Serializable
This class defines all non-static parameters needed to create an HttpClient object. It is used as the key for the static hashmap of reusable http clients.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(Object obj)BooleangetGzipDisabled()StringgetNonProxyHosts()OCSPModegetOcspMode()StringgetProxyHost()HttpProtocolgetProxyHttpProtocol()StringgetProxyPassword()Be careful of using this! Should only be called when password is later masked.intgetProxyPort()com.amazonaws.ProtocolgetProxyProtocol()Deprecated.StringgetProxyUser()StringgetUserAgentSuffix()inthashCode()booleanusesProxy()
-
-
-
Method Detail
-
getOcspMode
public OCSPMode getOcspMode()
-
usesProxy
public boolean usesProxy()
-
getProxyHost
public String getProxyHost()
-
getProxyPort
public int getProxyPort()
-
getProxyUser
public String getProxyUser()
-
getUserAgentSuffix
public String getUserAgentSuffix()
-
getProxyPassword
public String getProxyPassword()
Be careful of using this! Should only be called when password is later masked.
-
getNonProxyHosts
public String getNonProxyHosts()
-
getProxyProtocol
@Deprecated public com.amazonaws.Protocol getProxyProtocol()
Deprecated.- Returns:
- ProxyProtocol
-
getProxyHttpProtocol
public HttpProtocol getProxyHttpProtocol()
-
getGzipDisabled
public Boolean getGzipDisabled()
-
-