Example usage for org.apache.http.client HttpClient interface-usage

List of usage examples for org.apache.http.client HttpClient interface-usage

Introduction

In this page you can find the example usage for org.apache.http.client HttpClient interface-usage.

Usage

From source file com.microsoft.live.mock.MockHttpClient.java

public class MockHttpClient implements HttpClient {

    private ClientProtocolException clientProtocolException;
    private Queue<HttpResponse> responseQueue;
    private IOException ioException;

From source file com.google.android.net.GoogleHttpClient.java

/**
 * {@link AndroidHttpClient} wrapper that uses {@link UrlRules} to rewrite URLs
 * and otherwise tweak HTTP requests.
 */
public class GoogleHttpClient implements HttpClient {
    private static final String TAG = "GoogleHttpClient";

From source file playn.android.AndroidHttpClient.java

/**
 * <p>
 * Subclass of the Apache {@link DefaultHttpClient} that is configured with
 * reasonable default settings and registered schemes for Android, and also lets
 * the user add {@link HttpRequestInterceptor} classes. Don't create this
 * directly, use the {@link #newInstance} factory method.

From source file org.zywx.wbpalmstar.plugin.uexzxing.client.android.AndroidHttpClient.java

/**
 * <p>Subclass of the Apache {@link DefaultHttpClient} that is configured with
 * reasonable default settings and registered schemes for Android, and
 * also lets the user add {@link HttpRequestInterceptor} classes.
 * Don't create this directly, use the {@link #newInstance} factory method.</p>
 * <p/>

From source file ls.accounting.barcode.AndroidHttpClient.java

/**
 * <p>Subclass of the Apache {@link DefaultHttpClient} that is configured with
 * reasonable default settings and registered schemes for Android, and
 * also lets the user add {@link HttpRequestInterceptor} classes.
 * Don't create this directly, use the {@link #newInstance} factory method.</p>
 * <p/>

From source file com.esri.geoportal.commons.http.BotsHttpClient.java

/**
 * Bots http client.
 */
public class BotsHttpClient implements HttpClient, Closeable {
    private static final Logger LOG = LoggerFactory.getLogger(BotsHttpClient.class);
    private final CloseableHttpClient client;

From source file org.apache.http.impl.client.AutoRetryHttpClient.java

/**
 * {@link HttpClient} implementation that can automatically retry the request in case of
 * a non-2xx response using the {@link ServiceUnavailableRetryStrategy} interface.
 *
 * @since 4.2
 *

From source file com.androidrocks.bex.zxing.client.android.AndroidHttpClient.java

/**
 * <p>Subclass of the Apache {@link DefaultHttpClient} that is configured with
 * reasonable default settings and registered schemes for Android, and
 * also lets the user add {@link HttpRequestInterceptor} classes.
 * Don't create this directly, use the {@link #newInstance} factory method.</p>
 * <p/>

From source file org.apache.http.impl.client.CloseableHttpClient.java

/**
 * Base implementation of {@link HttpClient} that also implements {@link Closeable}.
 *
 * @since 4.3
 */
@ThreadSafe

From source file org.sonatype.nexus.repository.httpclient.FilteredHttpClient.java

/**
 * @since 3.0
 */
public class FilteredHttpClient extends ComponentSupport implements HttpClient, Closeable {

    private final HttpClient delegate;