summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/store-android/src/services/ShoppingCartProxy.java
blob: 872db654a4a4fcc0fc56da39142834afd709fa2b (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
package services;

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

import services.json.rpc.JSONRpc;

public class ShoppingCartProxy {
	private static final String jsonRPCTotalServiceURI = "http://192.168.1.104: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; 
		
		try {
			json = JSONRpc.invoke(jsonRPCTotalServiceURI, jsonRPCTotalRequest);
			
			if(json != null) {
				total = json.getString("result");		
			}
		} catch (JSONException e) {
			e.printStackTrace();
		}
		
		return total;
	}
}