Class TrustAllTrustManager

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

    public class TrustAllTrustManager
    extends java.lang.Object
    implements javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager
    Custom TrustManager implementation to ignore all certificate validations
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void checkClientTrusted​(java.security.cert.X509Certificate[] certs, java.lang.String authType)  
      void checkServerTrusted​(java.security.cert.X509Certificate[] certs, java.lang.String authType)  
      java.security.cert.X509Certificate[] getAcceptedIssuers()  
      boolean isClientTrusted​(java.security.cert.X509Certificate[] certs)  
      boolean isServerTrusted​(java.security.cert.X509Certificate[] certs)  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TrustAllTrustManager

        public TrustAllTrustManager()
    • Method Detail

      • getAcceptedIssuers

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

        public boolean isServerTrusted​(java.security.cert.X509Certificate[] certs)
      • isClientTrusted

        public boolean isClientTrusted​(java.security.cert.X509Certificate[] certs)
      • checkServerTrusted

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

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