Back to project page on-the-hook.
The source code is released under:
MIT License
If you think the Android project on-the-hook listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yoandinkov.onthehook.models; /*from w w w. jav a 2s .c o m*/ public class HttpResponseWrapper { private HttpType type; private Response response; private RequestPurpose purpose; public HttpType getType() { return type; } public void setType(HttpType type) { this.type = type; } public Response getResponse() { return response; } public void setResponse(Response response) { this.response = response; } public HttpResponseWrapper(HttpType type, Response response) { this.type = type; this.response = response; } public HttpResponseWrapper() { } public RequestPurpose getPurpose() { return this.purpose; } public void setPurpose(RequestPurpose purpose) { this.purpose = purpose; } }