List of usage examples for javax.net.ssl X509TrustManager interface-usage
From source file be.fedict.eid.idp.sp.protocol.openid.OpenIDTrustManager.java
/**
* OpenID Trust Manager to install to override the default set of trusted SSL
* certificates. Used by {@link OpenIDSSLSocketFactory}.
*
* @author Frank Cornelis
*/
From source file net.jradius.radsec.SimpleTrustManager.java
public class SimpleTrustManager implements X509TrustManager, InitializingBean { private Boolean trustAll = Boolean.FALSE; private String certFile; private String certFileType; private String certFilePassword;
From source file org.jivesoftware.sparkimpl.updater.EasyX509TrustManager.java
/**
* <p/>
* EasyX509TrustManager unlike default {@link X509TrustManager} accepts
* self-signed certificates.
* </p>
* <p/>
From source file test.integ.be.fedict.trust.util.SSLTrustManager.java
/**
* Test SSL Trust Manager that accepts all.
*
* @author wvdhaute
*
*/
From source file be.fgov.kszbcss.rhq.websphere.connector.agent.AutoImportTrustManager.java
class AutoImportTrustManager implements X509TrustManager { private static final Log log = LogFactory.getLog(AutoImportTrustManager.class); private final String alias; AutoImportTrustManager(String importAlias) {
From source file com.qpark.eip.core.spring.security.https.EipX509TrustManager.java
/**
* If the SSL/TLS implementation's hostname verification logic (TrustManager)
* fails, the verify method (HostnameVerifier) returns <code>false</code>.
*
* <pre>
* http://docs.oracle.com/javase/1.5.0/docs/guide/security/jsse/JSSERefGuide.html#TrustManager
From source file org.apache.hadoop.fs.swift.ssl.EasyX509TrustManager.java
/**
* <p>
* EasyX509TrustManager unlike default {@link X509TrustManager} accepts
* self-signed certificates.
* </p>
* <p>
From source file cloudfoundry.norouter.f5.client.NaiveTrustManager.java
/** * Provides a {@code SocketFactory} that naively ignores any TLS certificate problems. */ class NaiveTrustManager implements X509TrustManager { private static final TrustManager[] TRUST_MANAGERS = { new NaiveTrustManager() };
From source file com.cazoodle.crawl.DummyX509TrustManager.java
/** * Create dummy Trust Manager */ public class DummyX509TrustManager implements X509TrustManager { private X509TrustManager standardTrustManager = null;
From source file org.apache.nutch.protocol.httpclient.DummyX509TrustManager.java
public class DummyX509TrustManager implements X509TrustManager { private X509TrustManager standardTrustManager = null; /** Log object for this class. */ private static final Log LOG = LogFactory.getLog(DummyX509TrustManager.class);