Back to project page hitch-hiker.
The source code is released under:
MIT License
If you think the Android project hitch-hiker 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 autostoppista.core.http; public class HTTPOutput { int code;/* w w w .java 2 s. c o m*/ String message; String data; public HTTPOutput(int code, String message, String data) { this.code = code; this.message = message; this.data = data; } public int getCode() { return code; } public String getMessage() { return message; } public String getData() { return data; } }