Package org.minidns.dane
Class ExpectingTrustManager
- java.lang.Object
-
- org.minidns.dane.ExpectingTrustManager
-
- All Implemented Interfaces:
javax.net.ssl.TrustManager
,javax.net.ssl.X509TrustManager
public class ExpectingTrustManager extends java.lang.Object implements javax.net.ssl.X509TrustManager
-
-
Constructor Summary
Constructors Constructor Description ExpectingTrustManager(javax.net.ssl.X509TrustManager trustManager)
Creates a new instance of ExpectingTrustManager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)
void
checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)
java.security.cert.X509Certificate[]
getAcceptedIssuers()
java.security.cert.CertificateException
getException()
boolean
hasException()
-
-
-
Constructor Detail
-
ExpectingTrustManager
public ExpectingTrustManager(javax.net.ssl.X509TrustManager trustManager)
Creates a new instance of ExpectingTrustManager.- Parameters:
trustManager
- TheX509TrustManager
to be used for verification.null
to use the system default.
-
-
Method Detail
-
hasException
public boolean hasException()
-
getException
public java.security.cert.CertificateException getException()
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType) throws java.security.cert.CertificateException
- Specified by:
checkClientTrusted
in interfacejavax.net.ssl.X509TrustManager
- Throws:
java.security.cert.CertificateException
-
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType) throws java.security.cert.CertificateException
- Specified by:
checkServerTrusted
in interfacejavax.net.ssl.X509TrustManager
- Throws:
java.security.cert.CertificateException
-
getAcceptedIssuers
public java.security.cert.X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfacejavax.net.ssl.X509TrustManager
-
-