Example usage for org.apache.http.impl.conn DefaultClientConnectionOperator subclass-usage

List of usage examples for org.apache.http.impl.conn DefaultClientConnectionOperator subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.conn DefaultClientConnectionOperator subclass-usage.

Usage

From source file org.apache.droids.protocol.http.DroidsHttpConnectionOperator.java

class DroidsHttpConnectionOperator extends DefaultClientConnectionOperator {

    public DroidsHttpConnectionOperator(SchemeRegistry schemes) {
        super(schemes);
    }

From source file com.subgraph.vega.internal.http.requests.connection.SocksModeClientConnectionOperator.java

public class SocksModeClientConnectionOperator extends DefaultClientConnectionOperator {

    private final boolean isSocksMode;

    public SocksModeClientConnectionOperator(SchemeRegistry sr) {
        super(sr);

From source file org.apache.jmeter.protocol.http.sampler.JMeterClientConnectionOperator.java

/**
 * Custom implementation of {@link DefaultClientConnectionOperator} to fix SNI Issue
 * @see "https://bz.apache.org/bugzilla/show_bug.cgi?id=57935"
 * @since 3.0
 * TODO Remove it when full upgrade to 4.5.X is done and cleanup is made in the Socket Factory of JMeter that handles client certificates and Slow socket
 */

From source file com.android.mms.service.http.NetworkAwareClientConnectionOperator.java

/**
 * This is a subclass of {@link org.apache.http.impl.conn.DefaultClientConnectionOperator}
 * which allows us to use a custom name resolver and pick the address type when we resolve
 * the host name to connect.
 */
public class NetworkAwareClientConnectionOperator extends DefaultClientConnectionOperator {

From source file com.msopentech.thali.utilities.universal.HttpKeySocksProxyClientConnOperator.java

/**
 * This is all but copied and pasted from SocksProxyClientConnOperator in libnetcipher from the Guardian Project.
 * It's job is to put in a socket underneath the HttpKeySSLSocketFactory to properly handle talking to
 * Tor's SOCKS 4a proxy.
 */
public class HttpKeySocksProxyClientConnOperator extends DefaultClientConnectionOperator {