Example usage for org.apache.http.client.methods HttpEntityEnclosingRequestBase subclass-usage

List of usage examples for org.apache.http.client.methods HttpEntityEnclosingRequestBase subclass-usage

Introduction

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

Usage

From source file org.gege.caldavsyncadapter.caldav.http.HttpPropFind.java

public class HttpPropFind extends HttpEntityEnclosingRequestBase implements HttpUriRequest {

    @Override
    public String getMethod() {
        return "PROPFIND";
    }

From source file org.gege.caldavsyncadapter.caldav.http.HttpReport.java

public class HttpReport extends HttpEntityEnclosingRequestBase implements HttpUriRequest {

    @Override
    public String getMethod() {
        return "REPORT";
    }

From source file com.temenos.useragent.generic.http.HttpDeleteWithBody.java

/**
 * HttpDelete will not support Delete with an Entity, Hence this class will override this functionality.
 *
 * @author mohamednazir
 *
 */

From source file org.olat.core.commons.services.webdav.HttpLock.java

/**
 * 
 * Initial date: 11.11.2013<br>
 * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com
 *
 */

From source file org.olat.core.commons.services.webdav.HttpPropPatch.java

/**
 * 
 * Initial date: 11.11.2013<br>
 * @author srosse, stephane.rosse@frentix.com, http://www.frentix.com
 *
 */

From source file at.bitfire.davdroid.webdav.HttpPropfind.java

public class HttpPropfind extends HttpEntityEnclosingRequestBase {
    private static final String TAG = "davdroid.HttpPropfind";

    public enum Mode {
        CURRENT_USER_PRINCIPAL, HOME_SETS, MEMBERS_COLLECTIONS, COLLECTION_CTAG, MEMBERS_ETAG
    }

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

/**
 * WebDav request
 *
 * @since 2.12
 */
public final class HttpWebdav extends HttpEntityEnclosingRequestBase {

From source file com.mashape.client.http.HttpDeleteWithBody.java

class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {
    public static final String METHOD_NAME = "DELETE";

    public String getMethod() {
        return METHOD_NAME;
    }

From source file org.blocks4j.reconf.infra.http.layer.SimpleHttpRequest.java

public class SimpleHttpRequest extends HttpEntityEnclosingRequestBase {

    private final String httpMethod;
    private int queryParams = -1;

    SimpleHttpRequest(String method, String pathBase, String... pathParam) throws URISyntaxException {

From source file io.milton.httpclient.PropFindMethod.java

/**
 *
 * @author mcevoyb
 */
public class PropFindMethod extends HttpEntityEnclosingRequestBase {