Example usage for org.apache.http.conn.socket LayeredConnectionSocketFactory interface-usage

List of usage examples for org.apache.http.conn.socket LayeredConnectionSocketFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.http.conn.socket LayeredConnectionSocketFactory interface-usage.

Usage

From source file com.leetchi.api.client.ssl.SSLConnectionSocketFactory.java

@ThreadSafe
public class SSLConnectionSocketFactory implements LayeredConnectionSocketFactory {

    public static final String TLS = "TLS";
    public static final String SSL = "SSL";
    public static final String SSLV2 = "SSLv2";

From source file de.vanita5.twittnuker.util.net.ssl.HostResolvedSSLConnectionSocketFactory.java

@ThreadSafe
public class HostResolvedSSLConnectionSocketFactory implements LayeredConnectionSocketFactory {

    private static final String TAG = "HttpClient";

    public static final String HTTP_CONTEXT_KEY_ORIGINAL_HOST = "original_host";

From source file org.mariotaku.twidere.util.net.ssl.HostResolvedSSLConnectionSocketFactory.java

@ThreadSafe
public class HostResolvedSSLConnectionSocketFactory implements LayeredConnectionSocketFactory {

    private static final String TAG = "HttpClient";

    public static final String HTTP_CONTEXT_KEY_ORIGINAL_HOST = "original_host";

From source file org.opensaml.security.httpclient.impl.TrustEngineTLSSocketFactory.java

/**
 * An implementation of HttpClient's {@link LayeredConnectionSocketFactory}, which supports
 * verifying the server TLS certificate and chain via a {@link TrustEngine<Credential>}
 * and {@link CriteriaSet} supplied by the HttpClient caller via the {@link HttpContext}.
 * 
 * <p>

From source file org.opensaml.security.httpclient.impl.SecurityEnhancedTLSSocketFactory.java

/**
 * An security-enhanced implementation of HttpClient's TLS-capable {@link LayeredConnectionSocketFactory}.
 * 
 * <p>
 * This implementation wraps an existing TLS socket factory instance, decorating it with additional support for:
 * <ul>

From source file org.dcache.srm.client.FlexibleCredentialSSLConnectionSocketFactory.java

/**
 * Layered socket factory for TLS/SSL connections.
 * <p>
 * FlexibleCredentialConnectionSocketFactory can be used to validate the identity of the
 * HTTPS server against a list of trusted certificates and to authenticate to the HTTPS
 * server using a private key.

From source file org.apache.http.conn.ssl.SSLConnectionSocketFactory.java

/**
 * Layered socket factory for TLS/SSL connections.
 * <p>
 * SSLSocketFactory can be used to validate the identity of the HTTPS server against a list of
 * trusted certificates and to authenticate to the HTTPS server using a private key.
 * <p>