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.apache.abdera.protocol.client.util.EntityProviderRequestEntity.java

public class EntityProviderRequestEntity implements RequestEntity {

    private final Abdera abdera;
    private final EntityProvider provider;
    private byte[] buf = null;
    private boolean use_chunked = true;

From source file com.trsst.client.MultiPartRequestEntity.java

/**
 * A RequestEntity that handles an Entry or a Feed and supports multiple
 * attachments. Per convention, each content id should match an id referenced in
 * an entry with a corresponding digest or the server must reject.
 * 
 * @author mpowers

From source file org.aksonov.mages.connection.CustomTypesRequestEntity.java

/**
 * The Class CustomTypesRequestEntity.
 */
public class CustomTypesRequestEntity implements RequestEntity {

    /** The custom types. */

From source file org.apache.abdera.protocol.client.util.MultipartRelatedRequestEntity.java

public class MultipartRelatedRequestEntity implements RequestEntity {

    static final int BUFF_SIZE = 1024;
    static final byte[] buffer = new byte[BUFF_SIZE];
    private final Entry entry;
    private final InputStream input;

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

/**
 * A RequestEntity that represents a PIECE of a file.
 * 
 * @author David A. Velasco
 */
public class ChunkFromFileChannelRequestEntity implements RequestEntity, ProgressiveDataTransferer {

From source file ome.formats.importer.util.FileUploadCounter.java

/**
 * @author "Brian W. Loranger"
 */
public class FileUploadCounter implements RequestEntity {

    private final RequestEntity entity;

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

/**
 * A RequestEntity that represents a PIECE of a file.
 * 
 * @author David A. Velasco
 */
public class ChunkFromFileChannelRequestEntity implements RequestEntity, ProgressiveDataTransferer {

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

/**
 * A RequestEntity that represents a File.
 * 
 */
public class FileRequestEntity implements RequestEntity, ProgressiveDataTransferer {

From source file org.apache.axis2.transport.http.AxisRequestEntity.java

/**
 * This Request Entity is used by the HTTPCommonsTransportSender. This wraps the
 * Axis2 message formatter object.
 */
public class AxisRequestEntity implements RequestEntity {

From source file org.apache.axis2.transport.http.RESTRequestEntity.java

public class RESTRequestEntity implements RequestEntity {
    private byte[] bytes;
    private String charSetEnc;
    private boolean chunked;
    private OMElement element;
    private MessageContext msgCtxt;