Back to project page Mamytas.
The source code is released under:
GNU General Public License
If you think the Android project Mamytas 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 mn.aug.restfulandroid.rest; /* w w w . j av a2s. c o m*/ import java.util.List; import java.util.Map; public class Response { /** * The HTTP status code */ public int status; /** * The HTTP headers received in the response */ public Map<String, List<String>> headers; /** * The response body, if any */ public byte[] body; protected Response(int status, Map<String, List<String>> headers, byte[] body) { this.status = status; this.headers = headers; this.body = body; } }