Class StringRequestEntity
- java.lang.Object
-
- org.apache.commons.httpclient.methods.StringRequestEntity
-
- All Implemented Interfaces:
RequestEntity
@Deprecated public class StringRequestEntity extends java.lang.Object implements RequestEntity
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.A RequestEntity that contains a String.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description StringRequestEntity(java.lang.String content)
Deprecated.useStringRequestEntity(String, String, String)
insteadStringRequestEntity(java.lang.String content, java.lang.String contentType, java.lang.String charset)
Deprecated.Creates a new entity with the given content, content type, and charset.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getCharset()
Deprecated.java.lang.String
getContent()
Deprecated.long
getContentLength()
Deprecated.Gets the request entity's length.java.lang.String
getContentType()
Deprecated.Gets the entity's content type.boolean
isRepeatable()
Deprecated.Tests ifRequestEntity.writeRequest(OutputStream)
can be called more than once.void
writeRequest(java.io.OutputStream out)
Deprecated.Writes the request entity to the given stream.
-
-
-
Constructor Detail
-
StringRequestEntity
public StringRequestEntity(java.lang.String content)
Deprecated.useStringRequestEntity(String, String, String)
insteadCreates a new entity with the given content. This constructor will use the default platform charset to convert the content string and will provide no content type.
- Parameters:
content
- The content to set.- See Also:
StringRequestEntity(String, String, String)
-
StringRequestEntity
public StringRequestEntity(java.lang.String content, java.lang.String contentType, java.lang.String charset) throws java.io.UnsupportedEncodingException
Deprecated.Creates a new entity with the given content, content type, and charset.- Parameters:
content
- The content to set.contentType
- The type of the content, ornull
. The value retured bygetContentType()
. If this content type contains a charset and the charset parameter is null, the content's type charset will be used.charset
- The charset of the content, ornull
. Used to convert the content to bytes. If the content type does not contain a charset and charset is not null, then the charset will be appended to the content type.- Throws:
java.io.UnsupportedEncodingException
-
-
Method Detail
-
getContentType
public java.lang.String getContentType()
Deprecated.Description copied from interface:RequestEntity
Gets the entity's content type. This content type will be used as the value for the "Content-Type" header.- Specified by:
getContentType
in interfaceRequestEntity
- Returns:
- the entity's content type
- See Also:
HttpMethod.setRequestHeader(String, String)
-
isRepeatable
public boolean isRepeatable()
Deprecated.Description copied from interface:RequestEntity
Tests ifRequestEntity.writeRequest(OutputStream)
can be called more than once.- Specified by:
isRepeatable
in interfaceRequestEntity
- Returns:
true
-
writeRequest
public void writeRequest(java.io.OutputStream out) throws java.io.IOException
Deprecated.Description copied from interface:RequestEntity
Writes the request entity to the given stream.- Specified by:
writeRequest
in interfaceRequestEntity
- Throws:
java.io.IOException
-
getContentLength
public long getContentLength()
Deprecated.Description copied from interface:RequestEntity
Gets the request entity's length. This method should return a non-negative value if the content length is known or a negative value if it is not. In the latter case theEntityEnclosingMethod
will use chunk encoding to transmit the request entity.- Specified by:
getContentLength
in interfaceRequestEntity
- Returns:
- The length of the content.
-
getContent
public java.lang.String getContent()
Deprecated.- Returns:
- Returns the content.
-
getCharset
public java.lang.String getCharset()
Deprecated.- Returns:
- Returns the charset used to convert the content to bytes.
null
if no charset as been specified.
-
-