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 Modifier and Type Method Description booleanequals(Object obj)BooleangetGzipDisabled()StringgetNonProxyHosts()OCSPModegetOcspMode()StringgetProxyHost()intgetProxyPort()com.amazonaws.ProtocolgetProxyProtocol()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()
-
getNonProxyHosts
public String getNonProxyHosts()
-
getProxyProtocol
public com.amazonaws.Protocol getProxyProtocol()
-
getGzipDisabled
public Boolean getGzipDisabled()
-
-