Class NaiveX509TrustManager
- java.lang.Object
-
- com.taskadapter.redmineapi.internal.comm.naivessl.NaiveX509TrustManager
-
- All Implemented Interfaces:
javax.net.ssl.TrustManager
,javax.net.ssl.X509TrustManager
public class NaiveX509TrustManager extends java.lang.Object implements javax.net.ssl.X509TrustManager
The goal of this trust manager is to do nothing - it will authorize any TSL/SSL secure connection.
-
-
Constructor Summary
Constructors Constructor Description NaiveX509TrustManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(java.security.cert.X509Certificate[] certs, java.lang.String str)
void
checkServerTrusted(java.security.cert.X509Certificate[] certs, java.lang.String str)
java.security.cert.X509Certificate[]
getAcceptedIssuers()
-
-
-
Method Detail
-
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] certs, java.lang.String str) 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[] certs, java.lang.String str) 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
-
-