Example usage for org.apache.commons.httpclient HttpClient subclass-usage

List of usage examples for org.apache.commons.httpclient HttpClient subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient HttpClient subclass-usage.

Usage

From source file com.owncloud.android.oc_framework.network.webdav.WebdavClient.java

public class WebdavClient extends HttpClient {
    private static final int MAX_REDIRECTIONS_COUNT = 3;

    private Uri mUri;
    private Credentials mCredentials;
    private boolean mFollowRedirects;

From source file eu.alefzero.webdav.WebdavClient.java

public class WebdavClient extends HttpClient {
    private static final int MAX_REDIRECTIONS_COUNT = 3;

    private Uri mUri;
    private Credentials mCredentials;
    private boolean mFollowRedirects;

From source file net.praqma.jenkins.rqm.request.RQMHttpClient.java

/**
 *
 * @author Praqma
 */
public class RQMHttpClient extends HttpClient {

From source file fr.cls.atoll.motu.library.cas.HttpClientCAS.java

/**
 * 
 * (C) Copyright 2009-2010, by CLS (Collecte Localisation Satellites)
 * 
 * @version $Revision: 1.1 $ - $Date: 2009-03-18 12:18:22 $
 * @author <a href="mailto:dearith@cls.fr">Didier Earith</a>

From source file com.owncloud.android.lib.common.OwnCloudClient.java

@SuppressWarnings("ALL")
@SuppressLint("DefaultLocale")
public class OwnCloudClient extends HttpClient {

    private static final String TAG = OwnCloudClient.class.getSimpleName();
    public static final String USER_AGENT = "Android-ownCloud";

From source file ir.keloud.android.lib.common.KeloudClient.java

public class KeloudClient extends HttpClient {

    private static final String TAG = KeloudClient.class.getSimpleName();
    private static final int MAX_REDIRECTIONS_COUNT = 3;
    private static final String PARAM_SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
    private static final boolean PARAM_SINGLE_COOKIE_HEADER_VALUE = true;

From source file com.cerema.cloud2.lib.common.OwnCloudClient.java

public class OwnCloudClient extends HttpClient {

    private static final String TAG = OwnCloudClient.class.getSimpleName();
    public static final int MAX_REDIRECTIONS_COUNT = 3;
    private static final String PARAM_SINGLE_COOKIE_HEADER = "http.protocol.single-cookie-header";
    private static final boolean PARAM_SINGLE_COOKIE_HEADER_VALUE = true;

From source file org.openadaptor.auxil.connector.http.HttpReadConnectorUnitTestCase.java

/**
 * Mock version of the HttpClient class.
 * executeMethod returns status==OK
 */
class MockHttpClient extends HttpClient {
    protected int hostConfigurationCounter = 0;