public class ServerResponse extends Object implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<ServerResponse> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Constructor and Description |
---|
ServerResponse(int httpCode,
byte[] body,
LinkedHashMap<String,String> headers)
Creates a new server response object.
|
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
byte[] |
getBody()
Gets server response body.
|
String |
getBodyAsString()
Gets server response body as string.
|
LinkedHashMap<String,String> |
getHeaders()
Gets all the server response headers.
|
int |
getHttpCode()
Gets server HTTP response code.
|
void |
writeToParcel(Parcel parcel,
int flags) |
public static final Parcelable.Creator<ServerResponse> CREATOR
public ServerResponse(int httpCode, byte[] body, LinkedHashMap<String,String> headers)
httpCode
- HTTP response code got from the server. If you are implementing another
protocol, set this to UploadTask.TASK_COMPLETED_SUCCESSFULLY
to inform that the task has been completed successfully. Integer values
lower than 200 or greater that 299 indicates error response from server.body
- bytes read from server's response body. If your server does not
return anything, set this to UploadTask.EMPTY_RESPONSE
.headers
- contains all the headers sent by the server. Set this to null or
an empty map if the server has not sent any response header.public void writeToParcel(Parcel parcel, int flags)
writeToParcel
in interface Parcelable
public int describeContents()
describeContents
in interface Parcelable
public int getHttpCode()
public byte[] getBody()
getBodyAsString()
.
If the string is a JSON, you can parse it using a library such as org.json
(embedded in Android) or google's gsonpublic String getBodyAsString()
public LinkedHashMap<String,String> getHeaders()