public class Response extends Object
Constructor and Description |
---|
Response(int code)
Constructor
|
Response(int code,
org.apache.commons.httpclient.Header[] headers)
Constructor
|
Response(int code,
org.apache.commons.httpclient.Header[] headers,
byte[] body)
Constructor
|
Modifier and Type | Method and Description |
---|---|
byte[] |
getBody() |
int |
getCode() |
String |
getHeader(String key) |
org.apache.commons.httpclient.Header[] |
getHeaders() |
String |
getLocation() |
boolean |
hasBody() |
void |
setBody(byte[] body) |
void |
setCode(int code) |
void |
setHeaders(org.apache.commons.httpclient.Header[] headers) |
public Response(int code)
code
- the HTTP response codepublic Response(int code, org.apache.commons.httpclient.Header[] headers)
code
- the HTTP response codeheaders
- the HTTP response headerspublic Response(int code, org.apache.commons.httpclient.Header[] headers, byte[] body)
code
- the HTTP response codeheaders
- the HTTP response headersbody
- the response body, can be nullpublic int getCode()
public org.apache.commons.httpclient.Header[] getHeaders()
public String getLocation()
public boolean hasBody()
public byte[] getBody()
public void setCode(int code)
code
- the HTTP response codepublic void setHeaders(org.apache.commons.httpclient.Header[] headers)
headers
- the HTTP response headerspublic void setBody(byte[] body)
body
- the response bodyCopyright © 2016. All rights reserved.