Class NonValidatingTrustManager
- java.lang.Object
-
- com.impossibl.postgres.protocol.ssl.NonValidatingTrustManager
-
- All Implemented Interfaces:
TrustManager
,X509TrustManager
public class NonValidatingTrustManager extends Object implements X509TrustManager
-
-
Constructor Summary
Constructors Constructor Description NonValidatingTrustManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClientTrusted(X509Certificate[] certs, String authType)
void
checkServerTrusted(X509Certificate[] certs, String authType)
X509Certificate[]
getAcceptedIssuers()
-
-
-
Method Detail
-
getAcceptedIssuers
public X509Certificate[] getAcceptedIssuers()
- Specified by:
getAcceptedIssuers
in interfaceX509TrustManager
-
checkClientTrusted
public void checkClientTrusted(X509Certificate[] certs, String authType)
- Specified by:
checkClientTrusted
in interfaceX509TrustManager
-
checkServerTrusted
public void checkServerTrusted(X509Certificate[] certs, String authType)
- Specified by:
checkServerTrusted
in interfaceX509TrustManager
-
-