Package org.wildfly.security.http.oidc
Class HttpClientBuilder.PassthroughTrustManager
- java.lang.Object
-
- org.wildfly.security.http.oidc.HttpClientBuilder.PassthroughTrustManager
-
- All Implemented Interfaces:
TrustManager
,X509TrustManager
- Enclosing class:
- HttpClientBuilder
private static class HttpClientBuilder.PassthroughTrustManager extends Object implements X509TrustManager
-
-
Constructor Summary
Constructors Modifier Constructor Description private
PassthroughTrustManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(X509Certificate[] chain, String authType)
void
checkServerTrusted(X509Certificate[] chain, String authType)
X509Certificate[]
getAcceptedIssuers()
-
-
-
Method Detail
-
checkClientTrusted
public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException
- Specified by:
checkClientTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
checkServerTrusted
public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException
- Specified by:
checkServerTrusted
in interfaceX509TrustManager
- Throws:
CertificateException
-
getAcceptedIssuers
public X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfaceX509TrustManager
-
-