com.xebialabs.deployit.client.ssl
Class SelfSignedCertificateTrustManager

java.lang.Object
  extended by com.xebialabs.deployit.client.ssl.SelfSignedCertificateTrustManager
All Implemented Interfaces:
javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager

public class SelfSignedCertificateTrustManager
extends java.lang.Object
implements javax.net.ssl.X509TrustManager

jvanerp: Renamed from EasyX509TrustManager.

Oringinal documentation below:

EasyX509TrustManager unlike default X509TrustManager accepts self-signed certificates.

This trust manager SHOULD NOT be used for productive systems due to security reasons, unless it is a concious decision and you are perfectly aware of security implications of accepting self-signed certificates


Constructor Summary
SelfSignedCertificateTrustManager(java.security.KeyStore keystore)
           
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SelfSignedCertificateTrustManager

public SelfSignedCertificateTrustManager(java.security.KeyStore keystore)
                                  throws java.security.NoSuchAlgorithmException,
                                         java.security.KeyStoreException
Throws:
java.security.NoSuchAlgorithmException
java.security.KeyStoreException
Method Detail

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

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

getAcceptedIssuers

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