android inventory agent 1.0.0

Code documentation

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

Class CustomX509TrustManager

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


    public class CustomX509TrustManager
    extends java.lang.Object
    implements javax.net.ssl.X509TrustManager
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      void checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType) 
      void checkServerTrusted(java.security.cert.X509Certificate[] certs, 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

      • CustomX509TrustManager

        public CustomX509TrustManager()
    • Method Detail

      • checkClientTrusted

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

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

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