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 boolean
equals(Object obj)
Boolean
getGzipDisabled()
String
getNonProxyHosts()
OCSPMode
getOcspMode()
String
getProxyHost()
int
getProxyPort()
com.amazonaws.Protocol
getProxyProtocol()
String
getProxyUser()
String
getUserAgentSuffix()
int
hashCode()
boolean
usesProxy()
-
-
-
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()
-
-