Java javax.net.ssl X509TrustManager fields, constructors, methods, implement or subclass

Example usage for Java javax.net.ssl X509TrustManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.net.ssl X509TrustManager.

The text is from its open source code.

Implementation

javax.net.ssl.X509TrustManager has the following implementations.
Click this link to see all its implementation.

Constructor

Method

voidcheckClientTrusted(X509Certificate[] chain, String authType)
Given the partial or complete certificate chain provided by the peer, build a certificate path to a trusted root and return if it can be validated and is trusted for client SSL authentication based on the authentication type.
voidcheckServerTrusted(X509Certificate[] chain, String authType)
Given the partial or complete certificate chain provided by the peer, build a certificate path to a trusted root and return if it can be validated and is trusted for server SSL authentication based on the authentication type.
X509Certificate[]getAcceptedIssuers()
Return an array of certificate authority certificates which are trusted for authenticating peers.