Class PartBase
- java.lang.Object
-
- org.apache.commons.httpclient.methods.multipart.Part
-
- org.apache.commons.httpclient.methods.multipart.PartBase
-
- Direct Known Subclasses:
FilePart,StringPart
@Deprecated public abstract class PartBase extends Part
Deprecated.Jakarta Commons HttpClient 3.x is deprecated in the Jenkins project. It is not recommended to use it in any new code. Instead, use HTTP client API plugins as a dependency in your code. E.g. Apache HttpComponents Client API 4.x Plugin or Async HTTP Client Plugin.Provides setters and getters for the basic Part properties.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetCharSet()Deprecated.Return the character encoding of this part.StringgetContentType()Deprecated.Returns the content type of this part.StringgetName()Deprecated.Returns the name.StringgetTransferEncoding()Deprecated.Returns the transfer encoding of this part.voidsetCharSet(String charSet)Deprecated.Sets the character encoding.voidsetContentType(String contentType)Deprecated.Sets the content type.voidsetName(String name)Deprecated.Sets the part name.voidsetTransferEncoding(String transferEncoding)Deprecated.Sets the transfer encoding.-
Methods inherited from class org.apache.commons.httpclient.methods.multipart.Part
getBoundary, getLengthOfParts, getLengthOfParts, isRepeatable, length, send, sendParts, sendParts, toString
-
-
-
-
Method Detail
-
getName
public String getName()
Deprecated.Returns the name.- Specified by:
getNamein classPart- Returns:
- The name.
- See Also:
Part.getName()
-
getContentType
public String getContentType()
Deprecated.Returns the content type of this part.- Specified by:
getContentTypein classPart- Returns:
- String The name.
-
getCharSet
public String getCharSet()
Deprecated.Return the character encoding of this part.- Specified by:
getCharSetin classPart- Returns:
- String The name.
-
getTransferEncoding
public String getTransferEncoding()
Deprecated.Returns the transfer encoding of this part.- Specified by:
getTransferEncodingin classPart- Returns:
- String The name.
-
setCharSet
public void setCharSet(String charSet)
Deprecated.Sets the character encoding.- Parameters:
charSet- the character encoding, ornullto exclude the character encoding header
-
setContentType
public void setContentType(String contentType)
Deprecated.Sets the content type.- Parameters:
contentType- the content type, ornullto exclude the content type header
-
setName
public void setName(String name)
Deprecated.Sets the part name.- Parameters:
name-
-
setTransferEncoding
public void setTransferEncoding(String transferEncoding)
Deprecated.Sets the transfer encoding.- Parameters:
transferEncoding- the transfer encoding, ornullto exclude the transfer encoding header
-
-