public class CommonBuilder<T> extends Object implements Common<CommonBuilder<T>>
| Constructor and Description |
|---|
CommonBuilder() |
| Modifier and Type | Method and Description |
|---|---|
InputStream |
getEntityStream() |
Headers |
getHeaders() |
CommonBuilder<T> |
setContentCharset(String contentCharset)
Sets the charset for this object's entity, if any.
|
CommonBuilder<T> |
setContentType(String contentType)
Sets the IANA media type, for the current entity, if any.
|
CommonBuilder<T> |
setEntity(String entity)
Sets this object's entity stream from a string.
|
CommonBuilder<T> |
setEntityStream(InputStream entityStream)
Sets this object's entity as an input stream.
|
CommonBuilder<T> |
setEntityStream(InputStream entityStream,
String charset)
Sets this object's entity as an input stream, encoded with the specified charset.
|
CommonBuilder<T> |
setHeader(String name,
String value)
Sets an HTTP header on this object.
|
CommonBuilder<T> |
setHeaders(Map<String,String> headers)
Copies the specified map of HTTP headers into this object.
|
public CommonBuilder<T> setHeader(String name, String value)
CommonsetHeader in interface Common<CommonBuilder<T>>name - The name of the header to be setvalue - The value of the header to be setpublic CommonBuilder<T> setHeaders(Map<String,String> headers)
CommonsetHeaders in interface Common<CommonBuilder<T>>headers - A map of HTTP headerspublic CommonBuilder<T> setEntity(String entity)
CommonsetEntity in interface Common<CommonBuilder<T>>entity - An entity stringpublic CommonBuilder<T> setEntityStream(InputStream entityStream)
CommonhasReadEntity() 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.setEntityStream in interface Common<CommonBuilder<T>>entityStream - An entity input stream ready to be readpublic CommonBuilder<T> setContentCharset(String contentCharset)
CommonsetContentCharset in interface Common<CommonBuilder<T>>contentCharset - The entity's charset value, or nullpublic CommonBuilder<T> setContentType(String contentType)
CommoncontentType 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.setContentType in interface Common<CommonBuilder<T>>contentType - An IANA media type with optional charset informationpublic CommonBuilder<T> setEntityStream(InputStream entityStream, String charset)
CommonhasReadEntity() 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).setEntityStream in interface Common<CommonBuilder<T>>entityStream - An entity input stream ready to be readcharset - The charset in which the entity stream is encodedpublic InputStream getEntityStream()
public Headers getHeaders()
Copyright © 2012–2018 Atlassian. All rights reserved.