com.microsoft.tfs.core.config.httpclient.internal
Class SelfSignedX509TrustManager

java.lang.Object
  extended by com.microsoft.tfs.core.config.httpclient.internal.SelfSignedX509TrustManager
All Implemented Interfaces:
javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager

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

The default X509TrustManager for Team Foundation Server clients, capable of accepting self-signed certificates.


Constructor Summary
SelfSignedX509TrustManager(java.security.KeyStore keyStore)
          Creates a trust manager capable of accepting self-signed certificates.
 
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

SelfSignedX509TrustManager

public SelfSignedX509TrustManager(java.security.KeyStore keyStore)
                           throws java.security.NoSuchAlgorithmException,
                                  java.security.KeyStoreException
Creates a trust manager capable of accepting self-signed certificates.

Parameters:
keyStore - The KeyStore to use for user-specified keys (or null)
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


© 2015 Microsoft. All rights reserved.