Example usage for org.apache.commons.httpclient.methods RequestEntity interface-usage

List of usage examples for org.apache.commons.httpclient.methods RequestEntity interface-usage

Introduction

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

Usage

From source file org.mule.transport.http.StreamPayloadRequestEntity.java

public class StreamPayloadRequestEntity implements RequestEntity {
    private OutputHandler outputHandler;
    private MuleEvent event;

    public StreamPayloadRequestEntity(OutputHandler outputHandler, MuleEvent event) {
        this.outputHandler = outputHandler;

From source file org.nuxeo.ecm.core.storage.sql.net.BinaryRequestEntity.java

/**
 * Class defining a {@link RequestEntity} that writes from a {@link Binary}.
 */
public class BinaryRequestEntity implements RequestEntity {

    protected final Binary binary;

From source file org.eclipse.ecr.core.storage.sql.net.BinaryRequestEntity.java

/**
 * Class defining a {@link RequestEntity} that writes from a {@link Binary}.
 */
public class BinaryRequestEntity implements RequestEntity {

    protected final Binary binary;

From source file org.nuxeo.ecm.core.storage.sql.net.ObjectWriterRequestEntity.java

/**
 * Class defining a {@link RequestEntity} that writes a list of object through
 * an {@link ObjectOutputStream}.
 */
public class ObjectWriterRequestEntity implements RequestEntity {

From source file org.eclipse.ecr.core.storage.sql.net.ObjectWriterRequestEntity.java

/**
 * Class defining a {@link RequestEntity} that writes a list of object through
 * an {@link ObjectOutputStream}.
 */
public class ObjectWriterRequestEntity implements RequestEntity {

From source file smartrics.jmeter.sampler.MyRequestEntity.java

/**
 * Holds the body content of a PUT/POST as requested by the apache HttpClient.
 */
public class MyRequestEntity implements RequestEntity {

    private String data;

From source file org.eclipse.rtp.httpdeployer.client.JdomRequestEntity.java

public class JdomRequestEntity implements RequestEntity {

    private String result;

    public JdomRequestEntity(Document document) {
        XMLOutputter outputter = new XMLOutputter();

From source file org.elasticsearch.hadoop.rest.JsonByteArrayRequestEntity.java

/**
 * Wrapper around byte arrays that are not fully filled up.
 */
class JsonByteArrayRequestEntity implements RequestEntity {

    private byte[] content;

From source file org.kei.android.phone.cellhistory.towers.request.OpenCellIdRequestEntity.java

/**
 *******************************************************************************
 * @file OpenCellIdRequestEntity.java
 * @author Keidan
 * @date 01/12/2015
 * @par Project CellHistory

From source file org.opensaml.ws.transport.http.httpclient.OutputStreamRequestEntity.java

/**
 * @author Mandus Elfving
 */
public class OutputStreamRequestEntity implements RequestEntity {

    private final ByteArrayOutputStream outputStream;