Package org.eclipse.jetty.util.ssl
Class SslContextFactory.X509ExtendedTrustManagerWrapper
- java.lang.Object
-
- javax.net.ssl.X509ExtendedTrustManager
-
- org.eclipse.jetty.util.ssl.SslContextFactory.X509ExtendedTrustManagerWrapper
-
- All Implemented Interfaces:
javax.net.ssl.TrustManager
,javax.net.ssl.X509TrustManager
- Enclosing class:
- SslContextFactory
@Deprecated(since="2021-05-27") public static class SslContextFactory.X509ExtendedTrustManagerWrapper extends javax.net.ssl.X509ExtendedTrustManager
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A wrapper that delegates to another (if not
null
) X509ExtendedTrustManager.
-
-
Constructor Summary
Constructors Constructor Description X509ExtendedTrustManagerWrapper(javax.net.ssl.X509ExtendedTrustManager trustManager)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
checkClientTrusted(java.security.cert.X509Certificate[] certs, java.lang.String authType)
Deprecated.void
checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, java.net.Socket socket)
Deprecated.void
checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, javax.net.ssl.SSLEngine engine)
Deprecated.void
checkServerTrusted(java.security.cert.X509Certificate[] certs, java.lang.String authType)
Deprecated.void
checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, java.net.Socket socket)
Deprecated.void
checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, javax.net.ssl.SSLEngine engine)
Deprecated.java.security.cert.X509Certificate[]
getAcceptedIssuers()
Deprecated.
-
-
-
Method Detail
-
getAcceptedIssuers
public java.security.cert.X509Certificate[] getAcceptedIssuers()
Deprecated.
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] certs, java.lang.String authType) throws java.security.cert.CertificateException
Deprecated.- Throws:
java.security.cert.CertificateException
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, java.net.Socket socket) throws java.security.cert.CertificateException
Deprecated.- Specified by:
checkClientTrusted
in classjavax.net.ssl.X509ExtendedTrustManager
- Throws:
java.security.cert.CertificateException
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, javax.net.ssl.SSLEngine engine) throws java.security.cert.CertificateException
Deprecated.- Specified by:
checkClientTrusted
in classjavax.net.ssl.X509ExtendedTrustManager
- Throws:
java.security.cert.CertificateException
-
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] certs, java.lang.String authType) throws java.security.cert.CertificateException
Deprecated.- Throws:
java.security.cert.CertificateException
-
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, java.net.Socket socket) throws java.security.cert.CertificateException
Deprecated.- Specified by:
checkServerTrusted
in classjavax.net.ssl.X509ExtendedTrustManager
- Throws:
java.security.cert.CertificateException
-
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType, javax.net.ssl.SSLEngine engine) throws java.security.cert.CertificateException
Deprecated.- Specified by:
checkServerTrusted
in classjavax.net.ssl.X509ExtendedTrustManager
- Throws:
java.security.cert.CertificateException
-
-