public interface Common<B extends Common<B>>
| Modifier and Type | Method and Description |
|---|---|
B |
setContentCharset(String contentCharset)
Sets the charset for this object's entity, if any.
|
B |
setContentType(String contentType)
Sets the IANA media type, for the current entity, if any.
|
B |
setEntity(String entity)
Sets this object's entity stream from a string.
|
B |
setEntityStream(InputStream entityStream)
Sets this object's entity as an input stream.
|
B |
setEntityStream(InputStream entityStream,
String charset)
Sets this object's entity as an input stream, encoded with the specified charset.
|
B |
setHeader(String name,
String value)
Sets an HTTP header on this object.
|
B |
setHeaders(Map<String,String> headers)
Copies the specified map of HTTP headers into this object.
|
B setHeader(String name, String value)
name - The name of the header to be setvalue - The value of the header to be setB setHeaders(Map<String,String> headers)
headers - A map of HTTP headersB setEntity(String entity)
entity - An entity stringB setEntityStream(InputStream entityStream)
hasReadEntity() state to false. It is recommended to also set this
object's content charset property when setting an entity stream for a textual media type (or
using the overloaded form that takes both the entity stream and charset in the same call).
Clients of this object should assume the HTTP standard of ISO-8859-1 (latin-1)
for the content charset property if a textual media type is set but no explcit charset was
provided for this message. A charset should NOT be provided for entity streams targetting
binary media types.entityStream - An entity input stream ready to be readB setContentCharset(String contentCharset)
contentCharset - The entity's charset value, or nullB setContentType(String contentType)
contentType argument
also contains charset information, this method will have the side effect of parsing the charset
out and storing the component parts independently. The method getContentCharset() can
be used to retrieve extracted content charset, if present, and getHeader("Content-Type")
can be used to retrieve the entire Content-Type header, complete with charset information, if set.
The content type property is required when an entity is present.contentType - An IANA media type with optional charset informationB setEntityStream(InputStream entityStream, String charset)
hasReadEntity() state to false. This
method should only be called for entity streams targetting textual media types -- that is, it's
nonsensical to set the charset of an entity stream for binary media types (e.g. image/*, etc).entityStream - An entity input stream ready to be readcharset - The charset in which the entity stream is encodedCopyright © 2012–2018 Atlassian. All rights reserved.