Class SocketFactoryUtil
java.lang.Object
com.databricks.jdbc.common.util.SocketFactoryUtil
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.apache.http.config.Registry<org.apache.http.conn.socket.ConnectionSocketFactory> Builds a registry of connection socket factories that trusts all SSL certificates.static TrustManager[]Creates a TrustManager array that accepts all certificates without validation.
-
Constructor Details
-
SocketFactoryUtil
public SocketFactoryUtil()
-
-
Method Details
-
getTrustAllSocketFactoryRegistry
public static org.apache.http.config.Registry<org.apache.http.conn.socket.ConnectionSocketFactory> getTrustAllSocketFactoryRegistry()Builds a registry of connection socket factories that trusts all SSL certificates. This should only be used in testing environments or when explicitly configured to allow self-signed certificates.- Returns:
- A registry of connection socket factories.
-
getTrustManagerThatTrustsAllCertificates
Creates a TrustManager array that accepts all certificates without validation. This should only be used in testing environments or when explicitly configured to allow self-signed certificates.- Returns:
- An array containing a single TrustManager that trusts all certificates.
-