Package org.mariadb.jdbc.plugin
Interface TlsSocketPlugin
- All Known Implementing Classes:
DefaultTlsSocketPlugin
public interface TlsSocketPlugin
-
Method Summary
Modifier and TypeMethodDescriptiondefault SSLSocket
createSocket
(Socket socket, SSLSocketFactory sslSocketFactory) Returns a socket layered over an existing socket negotiating the use of SSL over an existing socket.getSocketFactory
(Configuration conf, ExceptionFactory exceptionFactory) Get socket factory.type()
plugin type.void
verify
(String host, SSLSession sslSession, long serverThreadId) Host name verifier implementation.
-
Method Details
-
type
String type()plugin type.- Returns:
- plugin type
-
getSocketFactory
SSLSocketFactory getSocketFactory(Configuration conf, ExceptionFactory exceptionFactory) throws SQLException Get socket factory.- Parameters:
conf
- connection string option. Non-standard option are stored in `nonMappedOptions` if any specific option is needed.exceptionFactory
- exception handler- Returns:
- custom SSL socket factory
- Throws:
SQLException
- if socket factory configuration failed.
-
createSocket
Returns a socket layered over an existing socket negotiating the use of SSL over an existing socket.- Parameters:
socket
- existing socketsslSocketFactory
- SSL socket factory- Returns:
- SSL socket
- Throws:
IOException
- if any socket error occurs.
-
verify
Host name verifier implementation.- Parameters:
host
- hostnamesslSession
- ssl sessionserverThreadId
- current server threadId- Throws:
SSLException
- if verification fail
-