blob: 3dc9e04e43127677be7c8ca35abfafc28f909225 (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.juick.json;
import java.text.ParseException;
import java.util.Iterator;
import java.util.List;
import org.json.JSONObject;
/**
*
* @author vt
* @param <T>
*/
public abstract class JSONSerializer<T> {
public enum URIScheme {
Plain,
Secure
}
private URIScheme uriScheme;
public URIScheme getUriScheme() {
return uriScheme;
}
public void setUriScheme(URIScheme uriScheme) {
this.uriScheme = uriScheme;
}
public JSONSerializer() {
this.uriScheme = URIScheme.Plain;
}
/**
*
* @param json
* @return
*/
public abstract T deserialize(JSONObject json) throws ParseException;
/**
*
* @param obj
* @return
*/
public abstract JSONObject serialize(T obj);
/**
*
* @param objs
* @return
*/
public String serializeList(List<T> objs) {
String json = "[";
Iterator<T> i = objs.iterator();
while (i.hasNext()) {
T m = i.next();
if (json.length() > 1) {
json += ",";
}
json += serialize(m).toString();
}
json += "]";
return json;
}
}
|