Package org.forgerock.openam.http
Interface SslConnectionManager
-
@SupportedAll public interface SslConnectionManager
This interface exposes the key components necessary to establish secure HTTPS connections.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostnameVerifier
getHostnameVerifier()
Returns the hostname verifier to be used when establishing a connection.SSLSocketFactory
getSocketFactory()
Returns the SSL socket factory to be used when establishing a connection.
-
-
-
Method Detail
-
getSocketFactory
SSLSocketFactory getSocketFactory()
Returns the SSL socket factory to be used when establishing a connection.- Returns:
- The SSL socket factory.
-
getHostnameVerifier
HostnameVerifier getHostnameVerifier()
Returns the hostname verifier to be used when establishing a connection.- Returns:
- The hostname verifier.
-
-