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 HTTPInputBasic { private String path, method, Authorization, body, contentType; public HTTPInputBasic(String path, String method, String Authorization,String contentType, String body) { this.path = path;// w ww. j ava 2 s .co m this.body = body; this.method = method; this.Authorization = Authorization; this.contentType = contentType; } public String getPath() { return path; } public String getBody() { return body; } public String getMethod() { return method; } public String getAuthorization() { return Authorization; } public String getContentType() { return contentType; } }