Java Web Services via REST bereitstellen
ulrich
2014-11-11 ca8e1edfcf465532d97d98f2a4a8ce43e472d588
commit | author | age
ca8e1e 1 /*
U 2     Transit - Remote procedure calls made simple
3     Copyright (c) 2012  Ulrich Hilger
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU Affero General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU Affero General Public License for more details.
14
15     You should have received a copy of the GNU Affero General Public License
16     along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package de.uhilger.transit;
20
21 import java.util.List;
22
23 import com.thoughtworks.xstream.XStream;
24 import com.thoughtworks.xstream.io.json.JettisonMappedXmlDriver;
25 import com.thoughtworks.xstream.io.json.JsonHierarchicalStreamDriver;
26
27 /**
28  * Java-Objekte in die JavaScript Object Notation (JSON) 
29  * verwandeln und umgekehrt
30  * 
31  * <p>Diese Klasse benoetigt die Java-Klassenbibliotheken 
32  * <a href="http://xstream.codehaus.org/">XStream</a>  
33  * und <a href="http://jettison.codehaus.org/">Jettison</a> 
34  * im Classpath.</p>
35  * 
36  * @author Copyright (c) Ulrich Hilger, http://uhilger.de
37  * @author Published under the terms and conditions of
38  * the <a href="http://www.gnu.org/licenses/agpl-3.0" target="_blank">GNU Affero General Public License</a>
39  * 
40  * @version 1, September 16, 2012
41  */
42 public class JsonWandler extends AbstractWandler {
43         
44   /** Bezeichnerdes Formats, das dieser Wandler unterstuetzt */
45   public static final String FORMAT_JSON = "JSON";
46
47   protected XStream getXStream() {
48     return new XStream(new JettisonMappedXmlDriver());
49   }
50
51     /**
52      * Das Format ermitteln, das dieser Wandler verarbeitet
53      * @return das Format, das dieser Wandler verarbeitet
54      */
55     @Override
56     public String getFormat() {
57         return FORMAT_JSON;
58     }
59   
60 }