Class TrustAllX509TrustManager
- java.lang.Object
 - 
- com.inductiveautomation.ignition.common.util.TrustAllX509TrustManager
 
 
- 
- All Implemented Interfaces:
 javax.net.ssl.TrustManager,javax.net.ssl.X509TrustManager
public class TrustAllX509TrustManager extends java.lang.Object implements javax.net.ssl.X509TrustManagerSimple implementation ofX509TrustManagerthat trusts all certificates. Generally not recommended to use in production code unless you know what you're doing. 
- 
- 
Constructor Summary
Constructors Constructor Description TrustAllX509TrustManager() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)voidcheckServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)java.security.cert.X509Certificate[]getAcceptedIssuers() 
 - 
 
- 
- 
Method Detail
- 
checkClientTrusted
public void checkClientTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)- Specified by:
 checkClientTrustedin interfacejavax.net.ssl.X509TrustManager
 
- 
checkServerTrusted
public void checkServerTrusted(java.security.cert.X509Certificate[] chain, java.lang.String authType)- Specified by:
 checkServerTrustedin interfacejavax.net.ssl.X509TrustManager
 
- 
getAcceptedIssuers
@Nonnull public java.security.cert.X509Certificate[] getAcceptedIssuers()
- Specified by:
 getAcceptedIssuersin interfacejavax.net.ssl.X509TrustManager
 
 - 
 
 -