Example usage for org.apache.commons.httpclient.methods EntityEnclosingMethod subclass-usage

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

Introduction

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

Usage

From source file com.buzzdavidson.spork.webdav.WebDavMethod.java

/**
 * This class implements a basic WebDAV method object for HttpClient.
 *
 * @author steve
 */
@Data

From source file org.elasticsearch.hadoop.rest.commonshttp.DeleteMethodWithBody.java

public class DeleteMethodWithBody extends EntityEnclosingMethod {

    public DeleteMethodWithBody() {
    }

    public DeleteMethodWithBody(String uri) {

From source file org.elasticsearch.hadoop.rest.commonshttp.GetMethodWithBody.java

public class GetMethodWithBody extends EntityEnclosingMethod {

    public GetMethodWithBody() {
        // not supported out of the box for EntityEnclosingMethods
        setFollowRedirects(false);
    }

From source file org.apache.sling.maven.bundlesupport.MkColMethod.java

/**
 * Implements the WebDAV MKCOL method
 * 
 * @see <a href="http://www.webdav.org/specs/rfc4918.html#METHOD_MKCOL">RFC 4918, $9.3</a>
 *
 */

From source file org.apache.hadoop.fs.swift.http.CopyMethod.java

/**
 * Implementation for SwiftRestClient to make copy requests.
 * COPY is a method that came with WebDAV (RFC2518), and is not something that
 * can be handled by all proxies en-route to a filesystem.
 */
class CopyMethod extends EntityEnclosingMethod {

From source file com.gs.jrpip.client.BufferedPostMethod.java

public class BufferedPostMethod extends EntityEnclosingMethod implements RequestEntity {
    private final OutputStreamWriter writer;
    private byte[] result;

    public BufferedPostMethod(String uri, OutputStreamWriter writer) {
        super(uri);

From source file org.apache.cocoon.util.RequestForwardingHttpMethod.java

/**
 * This is a generic and externally configurable method, to forward any Request
 * to a server.
 * 
 * @author <a href="mailto:gianugo@apache.org">Gianugo Rabellino</a>
 * @version $Id: RequestForwardingHttpMethod.java 124700 2005-01-09 02:17:17Z antonio $

From source file org.zaproxy.zap.network.ZapDeleteMethod.java

/**
 * An HTTP DELETE method implementation that ignores malformed HTTP response header lines.
 * 
 * @see DeleteMethod
 */
public class ZapDeleteMethod extends EntityEnclosingMethod {

From source file com.gs.jrpip.client.StreamedPostMethod.java

public class StreamedPostMethod extends EntityEnclosingMethod {
    private final OutputStreamWriter writer;

    public StreamedPostMethod(String uri, OutputStreamWriter writer) {
        super(uri);
        this.writer = writer;

From source file smartrics.rest.client.MockHttpMethod.java

public class MockHttpMethod extends EntityEnclosingMethod {

    private String name;
    private int statusCode;
    private boolean connectionReleased = false;