Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.commons.httpclient.methods.multipart.Part

Uses of Part in org.apache.commons.httpclient.methods.multipart
 

Subclasses of Part in org.apache.commons.httpclient.methods.multipart
 class FilePart
          This class implements a part of a Multipart post object that consists of a file.
 class PartBase
          Provides setters and getters for the basic Part properties.
 class StringPart
          Simple string parameter for a multipart post
 

Fields in org.apache.commons.httpclient.methods.multipart declared as Part
private  Part[] MultipartRequestEntity.parts
           
 

Methods in org.apache.commons.httpclient.methods.multipart with parameters of type Part
static void Part.sendParts(java.io.OutputStream out, Part[] parts)
          Write all parts and the last boundary to the specified output stream.
static void Part.sendParts(java.io.OutputStream out, Part[] parts, byte[] partBoundary)
          Write all parts and the last boundary to the specified output stream.
static long Part.getLengthOfParts(Part[] parts)
          Return the total sum of all parts and that of the last boundary
static long Part.getLengthOfParts(Part[] parts, byte[] partBoundary)
          Gets the length of the multipart message including the given parts.
 

Constructors in org.apache.commons.httpclient.methods.multipart with parameters of type Part
MultipartRequestEntity(Part[] parts, org.apache.commons.httpclient.params.HttpMethodParams params)
          Creates a new multipart entity containing the given parts.