org.apache.commons.httpclient.methods.multipart
public abstract class PartBase extends Part
BOUNDARY, BOUNDARY_BYTES, CHARSET, CHARSET_BYTES, CONTENT_DISPOSITION, CONTENT_DISPOSITION_BYTES, CONTENT_TRANSFER_ENCODING, CONTENT_TRANSFER_ENCODING_BYTES, CONTENT_TYPE, CONTENT_TYPE_BYTES, CRLF, CRLF_BYTES, EXTRA, EXTRA_BYTES, QUOTE, QUOTE_BYTES| Constructor and Description |
|---|
PartBase(java.lang.String name,
java.lang.String contentType,
java.lang.String charSet,
java.lang.String transferEncoding)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCharSet()
Return the character encoding of this part.
|
java.lang.String |
getContentType()
Returns the content type of this part.
|
java.lang.String |
getName()
Returns the name.
|
java.lang.String |
getTransferEncoding()
Returns the transfer encoding of this part.
|
void |
setCharSet(java.lang.String charSet)
Sets the character encoding.
|
void |
setContentType(java.lang.String contentType)
Sets the content type.
|
void |
setName(java.lang.String name)
Sets the part name.
|
void |
setTransferEncoding(java.lang.String transferEncoding)
Sets the transfer encoding.
|
getBoundary, getLengthOfParts, getLengthOfParts, getPartBoundary, isRepeatable, length, lengthOfData, send, sendContentTypeHeader, sendData, sendDispositionHeader, sendEnd, sendEndOfHeader, sendParts, sendParts, sendStart, sendTransferEncodingHeader, toStringpublic PartBase(java.lang.String name,
java.lang.String contentType,
java.lang.String charSet,
java.lang.String transferEncoding)
name - The name of the partcontentType - The content type, or nullcharSet - The character encoding, or nulltransferEncoding - The transfer encoding, or nullpublic java.lang.String getName()
getName in class PartPart.getName()public java.lang.String getContentType()
getContentType in class Partpublic java.lang.String getCharSet()
getCharSet in class Partpublic java.lang.String getTransferEncoding()
getTransferEncoding in class Partpublic void setCharSet(java.lang.String charSet)
charSet - the character encoding, or null to exclude the character
encoding headerpublic void setContentType(java.lang.String contentType)
contentType - the content type, or null to exclude the content type headerpublic void setName(java.lang.String name)
name - public void setTransferEncoding(java.lang.String transferEncoding)
transferEncoding - the transfer encoding, or null to exclude the
transfer encoding header