com.elixirtech.ers2.client
Class AuthSSLX509TrustManager
java.lang.Object
com.elixirtech.ers2.client.AuthSSLX509TrustManager
- All Implemented Interfaces:
- javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager
public class AuthSSLX509TrustManager
- extends java.lang.Object
- implements javax.net.ssl.X509TrustManager
AuthSSLX509TrustManager can be used to extend the default X509TrustManager
with additional trust decisions.
Constructor Summary |
AuthSSLX509TrustManager(javax.net.ssl.X509TrustManager defaultTrustManager)
Constructor for AuthSSLX509TrustManager. |
Method Summary |
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 |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AuthSSLX509TrustManager
public AuthSSLX509TrustManager(javax.net.ssl.X509TrustManager defaultTrustManager)
- Constructor for AuthSSLX509TrustManager.
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()