summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/src/services/ShoppingCartProxy.java
blob: a451f00060e22257fbfad984fbb9d6986bbc69be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package services;

import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

import services.json.rpc.JSONRpc;

public class ShoppingCartProxy {
	private static final String jsonRPCTotalServiceURI = "http://192.168.1.102:8080/ShoppingCart/Total";
    private static final String jsonRPCTotalRequest = "{\"id\": 4, \"method\": \"Service.getTotal\", \"params\": []}";

	public Item[] getItems() {
		return null;
	}
	
	public void addItem(Item item) {
		
	}
	
	public void removeItem(Item item) {
		
	}
	
	public void checkOut() {
		
	}
	
	public String getTotal() {
		String total = "";
		JSONObject json = null; 
		Log.e("TUSC", "getting total");
		
		try {
			json = JSONRpc.invoke(jsonRPCTotalServiceURI, jsonRPCTotalRequest);
			Log.e("TUSC", "Request OK");
			
			if(json != null) {
				total = json.getString("result");
				Log.e("TUSC", "Total: "+total);
			}
		} catch (JSONException e) {
			Log.e("TUSC",e.getMessage());
		}
		
		return total;
	}
}