1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.jute.json;
17
18 import java.io.File;
19 import java.io.IOException;
20 import java.net.URL;
21
22 import com.fasterxml.jackson.core.type.TypeReference;
23 import com.google.common.io.ByteSink;
24 import com.google.common.io.ByteSource;
25
26 public interface JsonService {
27
28 <T> T readString(String json, Class<T> type);
29
30 <T> T readString(String json, TypeReference<T> type);
31
32 <T> T read(File file, Class<T> type) throws IOException;
33
34 <T> T read(File file, TypeReference<T> type) throws IOException;
35
36 <T> T read(ByteSource source, Class<T> type) throws IOException;
37
38 <T> T read(ByteSource source, TypeReference<T> type) throws IOException;
39
40 <T> T read(String url, Class<T> type) throws IOException;
41
42 <T> T read(String url, TypeReference<T> type) throws IOException;
43
44 <T> T read(URL url, Class<T> type) throws IOException;
45
46 <T> T read(URL url, TypeReference<T> type) throws IOException;
47
48 <T> String writeString(T reference);
49
50 <T> void write(File file, T reference) throws IOException;
51
52 <T> void write(ByteSink sink, T reference) throws IOException;
53
54 }