android inventory agent 1.0.0

Code documentation

--- layout: codeDocumentation --- --- layout: codeDocumentation --- EasyX509TrustManager
org.glpi.inventory.agent.utils

Class EasyX509TrustManager

  • java.lang.Object
    • org.glpi.inventory.agent.utils.EasyX509TrustManager
  • All Implemented Interfaces:
    javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager


    public class EasyX509TrustManager
    extends java.lang.Object
    implements javax.net.ssl.X509TrustManager
    • Constructor Summary

      Constructors 
      Constructor and Description
      EasyX509TrustManager(java.security.KeyStore keystore)
      Constructor for EasyX509TrustManager.
    • Method Summary

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

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

      • EasyX509TrustManager

        public EasyX509TrustManager(java.security.KeyStore keystore)
                             throws java.security.NoSuchAlgorithmException,
                                    java.security.KeyStoreException
        Constructor for EasyX509TrustManager.
        Throws:
        java.security.NoSuchAlgorithmException
        java.security.KeyStoreException
    • Method Detail

      • checkClientTrusted

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

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

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