Class CommonX509TrustManager

  • All Implemented Interfaces:
    javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager

    public class CommonX509TrustManager
    extends java.lang.Object
    implements javax.net.ssl.X509TrustManager
    This class wraps X509CertChainValidator so it can be easily used in the standard Java SSL API.
    Author:
    K. Benedyczak
    • Constructor Detail

      • CommonX509TrustManager

        public CommonX509TrustManager​(X509CertChainValidator validator)
        The constructor.
        Parameters:
        validator - wrapped implementation that performs an actual validation
    • Method Detail

      • checkClientTrusted

        public void checkClientTrusted​(java.security.cert.X509Certificate[] chain,
                                       java.lang.String authType)
                                throws java.security.cert.CertificateException
        Specified by:
        checkClientTrusted in interface javax.net.ssl.X509TrustManager
        Throws:
        java.security.cert.CertificateException
      • checkServerTrusted

        public void checkServerTrusted​(java.security.cert.X509Certificate[] chain,
                                       java.lang.String authType)
                                throws java.security.cert.CertificateException
        Specified by:
        checkServerTrusted in interface javax.net.ssl.X509TrustManager
        Throws:
        java.security.cert.CertificateException
      • getAcceptedIssuers

        public java.security.cert.X509Certificate[] getAcceptedIssuers()
        Specified by:
        getAcceptedIssuers in interface javax.net.ssl.X509TrustManager