List of usage examples for org.apache.http.impl.client DefaultHttpClient subclass-usage
From source file eu.prestoprime.p4gui.connection.P4HttpClient.java
public class P4HttpClient extends DefaultHttpClient { private static final Logger logger = LoggerFactory.getLogger(P4HttpClient.class); private static final List<Integer> redirectCodes = Arrays.asList(301, 302, 303, 305, 307); private String userID;
From source file cz.zcu.kiv.eegdatabase.logic.util.BasicAuthHttpClient.java
/** * HttpClient with the Basic Authentication support. * User: Jan Koren * Date: 13.5.13 */ class BasicAuthHttpClient extends DefaultHttpClient {
From source file org.dataconservancy.archive.impl.fcrepo.ri.MultiThreadedHttpClient.java
/** * A multi-threaded <code>HttpClient</code> that's easy to construct. */ class MultiThreadedHttpClient extends DefaultHttpClient { private final HttpClientConfig config;
From source file com.netflix.http4.NFHttpClient.java
/**
* Netflix extension of Apache 4.0 HttpClient
* Just so we can wrap around some features.
*
* @author stonse
*
From source file com.underhilllabs.dccsched.io.StubHttpClient.java
/** * Stub {@link HttpClient} that will provide a single {@link HttpResponse} to * any incoming {@link HttpRequest}. This single response can be set using * {@link #setResponse(HttpResponse)}. */ class StubHttpClient extends DefaultHttpClient {
From source file com.google.android.apps.iosched.io.StubHttpClient.java
/** * Stub {@link HttpClient} that will provide a single {@link HttpResponse} to * any incoming {@link HttpRequest}. This single response can be set using * {@link #setResponse(HttpResponse)}. */ class StubHttpClient extends DefaultHttpClient {
From source file com.lullabot.android.apps.iosched.io.StubHttpClient.java
/** * Stub {@link HttpClient} that will provide a single {@link HttpResponse} to * any incoming {@link HttpRequest}. This single response can be set using * {@link #setResponse(HttpResponse)}. */ class StubHttpClient extends DefaultHttpClient {
From source file com.lugia.timetable.SSLHttpClient.java
/** * Core class file for authenticate and handshake with HTTPS Server */ public final class SSLHttpClient extends DefaultHttpClient { private final HttpContext mHttpContext = new BasicHttpContext(); private final CookieStore mCookieStore = new BasicCookieStore();
From source file org.surveydroid.android.coms.SDHttpClient.java
/**
* Custom version of the <a href="http://hc.apache.org/httpclient-3.x/">
* Apache http client</a>.
*
* @author Tony Xiao
* @author Austin Walker
From source file com.deadpeace.potlatch.unsafe.EasyHttpClient.java
/**
* Easy to use Http and Https client, that transparently adds gzip compression
* and ignores all Https certificates. It can also be used for using credentials
* in your connection.
*
* This class was created for Android applications, where the appropriate apache libraries