Return to Simple HTTP service HTTPResult
1: package com.voipplus.mmsclient.httpService;
2:
3: public class HTTPResult {
4: private final String json;
5: private final boolean success;
6:
7: public HTTPResult(String json, boolean success) {
8: this.json = json;
9: this.success = success;
10: }public String getJson() {
11: return json;
12: }
13:
14: public boolean isSuccess() {
15: return success;
16: }
17: }
18:
Return to Simple HTTP service
AndroidMosaic context:
Comments (
)
)
Link to this page:
http://www.vb-net.com/AndroidMosaic/HTTPResult.htm
|
|