Example usage for org.apache.http.impl.client AbstractHttpClient subclass-usage

List of usage examples for org.apache.http.impl.client AbstractHttpClient subclass-usage

Introduction

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

Usage

From source file org.kaaproject.kaa.client.transport.AndroidHttpClient.java

public class AndroidHttpClient extends AbstractHttpClient {

    /**
     * The Constant LOG.
     */
    public static final Logger LOG = LoggerFactory // NOSONAR

From source file org.kaaproject.kaa.client.transport.DesktopHttpClient.java

public class DesktopHttpClient extends AbstractHttpClient {

    /**
     * The Constant LOG.
     */
    public static final Logger LOG = LoggerFactory // NOSONAR

From source file org.yamj.api.common.http.AbstractPoolingHttpClient.java

public abstract class AbstractPoolingHttpClient extends AbstractHttpClient implements CommonHttpClient {

    private static final Logger LOG = LoggerFactory.getLogger(AbstractPoolingHttpClient.class);
    // Default settings for the connections
    private static final int DEFAULT_TIMEOUT_CONNECTION = 25000;
    private static final int DEFAULT_TIMEOUT_SOCKET = 90000;

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

/**
 * {@link HttpClient} implementation optimized specifically for web crawling.
 * This HTTP agent has no support for HTTP state management and authentication
 * and is expected to be used for retrieving information from publicly 
 * accessible sites using stateless, idempotent HTTP methods. 
 */

From source file org.vietspider.net.client.impl.AnonymousHttpClient.java

public class AnonymousHttpClient extends AbstractHttpClient {

    private volatile Proxies proxies;

    public AnonymousHttpClient(final ClientConnectionManager conman, final HttpParams params) {
        super(conman, params);