Package org.apache.tomcat.util.net
Class SSLImplementation
- java.lang.Object
-
- org.apache.tomcat.util.net.SSLImplementation
-
- Direct Known Subclasses:
JSSEImplementation,OpenSSLImplementation
public abstract class SSLImplementation extends java.lang.ObjectProvides a factory and base implementation for the Tomcat specific mechanism that allows alternative SSL/TLS implementations to be used without requiring the implementation of a full JSSE provider.
-
-
Constructor Summary
Constructors Constructor Description SSLImplementation()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static SSLImplementationgetInstance(java.lang.String className)Obtain an instance (not a singleton) of the implementation with the given class name.abstract SSLSupportgetSSLSupport(javax.net.ssl.SSLSession session)abstract SSLUtilgetSSLUtil(SSLHostConfigCertificate certificate)abstract booleanisAlpnSupported()
-
-
-
Method Detail
-
getInstance
public static SSLImplementation getInstance(java.lang.String className) throws java.lang.ClassNotFoundException
Obtain an instance (not a singleton) of the implementation with the given class name.- Parameters:
className- The class name of the required implementation or null to use the default (currentlyJSSEImplementation.- Returns:
- An instance of the required implementation
- Throws:
java.lang.ClassNotFoundException- If an instance of the requested class cannot be created
-
getSSLSupport
public abstract SSLSupport getSSLSupport(javax.net.ssl.SSLSession session)
-
getSSLUtil
public abstract SSLUtil getSSLUtil(SSLHostConfigCertificate certificate)
-
isAlpnSupported
public abstract boolean isAlpnSupported()
-
-