public class RequestEntity extends Object implements org.apache.http.HttpEntity
| Constructor and Description |
|---|
RequestEntity() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(org.apache.http.NameValuePair kv)
Adds a new KV pair to the entity
|
void |
add(String key,
String value)
Adds a new KV pair to the entity
|
void |
consumeContent() |
InputStream |
getContent() |
org.apache.http.Header |
getContentEncoding() |
long |
getContentLength() |
org.apache.http.Header |
getContentType() |
boolean |
isChunked() |
boolean |
isRepeatable() |
boolean |
isStreaming() |
void |
writeTo(OutputStream outstream) |
public void add(String key, String value)
key - The key to addvalue - The value to addpublic void add(org.apache.http.NameValuePair kv)
kv - The KV pair objectpublic void consumeContent()
throws IOException
consumeContent in interface org.apache.http.HttpEntityIOExceptionpublic InputStream getContent() throws IOException, IllegalStateException
getContent in interface org.apache.http.HttpEntityIOExceptionIllegalStateExceptionpublic org.apache.http.Header getContentEncoding()
getContentEncoding in interface org.apache.http.HttpEntitypublic long getContentLength()
getContentLength in interface org.apache.http.HttpEntitypublic org.apache.http.Header getContentType()
getContentType in interface org.apache.http.HttpEntitypublic boolean isChunked()
isChunked in interface org.apache.http.HttpEntitypublic boolean isRepeatable()
isRepeatable in interface org.apache.http.HttpEntitypublic boolean isStreaming()
isStreaming in interface org.apache.http.HttpEntitypublic void writeTo(OutputStream outstream) throws IOException
writeTo in interface org.apache.http.HttpEntityIOException