Example usage for javax.net.ssl X509TrustManager interface-usage

List of usage examples for javax.net.ssl X509TrustManager interface-usage

Introduction

In this page you can find the example usage for javax.net.ssl X509TrustManager interface-usage.

Usage

From source file edu.vt.middleware.ldap.ssl.AggregateTrustManager.java

/**
 * Trust manager that delegates to multiple trust managers.
 *
 * @author  Middleware Services
 * @version  $Revision$
 */

From source file com.microsoft.tfs.core.config.httpclient.internal.SelfSignedX509TrustManager.java

/**
 * The default {@link X509TrustManager} for Team Foundation Server clients,
 * capable of accepting self-signed certificates.
 */
public class SelfSignedX509TrustManager implements X509TrustManager {
    private X509TrustManager standardTrustManager = null;

From source file org.xdi.util.EasyX509TrustManager.java

/**
 * <p>
 * EasyX509TrustManager unlike default {@link X509TrustManager} accepts
 * self-signed certificates.
 * </p>
 * <p>

From source file com.dtolabs.rundeck.jetty.jaas.HostnameVerifyingTrustManager.java

/**
 * A wrapper around an existing X509TrustManager that verifies the server
 * certificate against the remote host.
 * 
 * @author Kim Ho <kim.ho@salesforce.com>
 */

From source file org.apache.camel.component.mail.security.DummyTrustManager.java

/**
 *  DummyTrustManager that accepts any given certificate - <b>NOT SECURE</b>.
 */
public class DummyTrustManager implements X509TrustManager {

    private static final transient Log LOG = LogFactory.getLog(DummyTrustManager.class);

From source file org.openhealthtools.openatna.net.LoggedX509TrustManager.java

/**
 * X509TrustManager with log info.
 *
 * @author <a href="mailto:wenzhi.li@misys.com">Wenzhi Li</a>
 */
public class LoggedX509TrustManager implements X509TrustManager {

From source file com.lolay.android.security.OpenX509TrustManager.java

public class OpenX509TrustManager implements X509TrustManager {
    private static final String TAG = LolayLog.buildTag(OpenX509TrustManager.class);

    public void checkClientTrusted(X509Certificate[] certificates, String authType) throws CertificateException {
        // Assume everything is trusted
    }

From source file com.microsoft.tfs.core.config.httpclient.internal.DefaultX509TrustManager.java

/**
 * An {@link X509TrustManager} that includes some additional trusted
 * certificates (for example, the Microsoft Internet Authority CA cert.) These
 * additional certificates may be important for connecting to Team Foundation
 * Servers, particularly hosted (Azure) servers.
 *

From source file org.openhealthtools.openexchange.actorconfig.net.LoggedX509TrustManager.java

/**
 * X509TrustManager with log info.
 *
 * @author <a href="mailto:wenzhi.li@misys.com">Wenzhi Li</a>
 */
public class LoggedX509TrustManager implements X509TrustManager {

From source file com.ab.http.AuthSSLX509TrustManager.java

/***
 * <p>
 * AuthSSLX509TrustManager can be used to extend the default
 * {@link X509TrustManager} with additional trust decisions.
 * </p>
 *