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.fcrepo.client.utils.HttpCopy.java

/**
 * HTTP copy
 * 
 * @author sleroux
 * @since 2015-06-03
 **/

From source file org.fcrepo.client.utils.HttpMove.java

/**
 * HTTP move
 * 
 * @author sleroux
 * @since 2015-06-03
 **/

From source file cn.com.loopj.android.http.HttpDelete.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * a HttpEntityEnclosingRequestBase type of HTTP DELETE method.
 * Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */

From source file cn.com.loopj.android.http.HttpPatch.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * the HTTP PATCH method. Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */
public final class HttpPatch extends HttpEntityEnclosingRequestBase {

From source file com.jesse.library.net.http.HttpDelete.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * a HttpEntityEnclosingRequestBase type of HTTP DELETE method.
 * Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */

From source file com.jesse.library.net.http.HttpPatch.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * the HTTP PATCH method. Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */
public final class HttpPatch extends HttpEntityEnclosingRequestBase {

From source file cn.com.loopj.android.http.HttpGet.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * a HttpEntityEnclosingRequestBase type of HTTP GET method.
 * Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */

From source file com.jesse.library.net.http.HttpGet.java

/**
 * The current Android (API level 21) bundled version of the Apache Http Client does not implement
 * a HttpEntityEnclosingRequestBase type of HTTP GET method.
 * Until the Android version is updated this can serve in it's stead.
 * This implementation can and should go away when the official solution arrives.
 */

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

public class HttpReport extends HttpEntityEnclosingRequestBase {
    private static final String TAG = "DavHttpReport";

    HttpReport(URI uri, String entity) {
        setURI(uri);

From source file com.jayway.restassured.internal.http.HttpDeleteWithBody.java

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

    public String getMethod() {
        return METHOD_NAME;