View Javadoc
1   /**
2    * Copyright 2014-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }