statistics/src/main/java/cz/xelfi/quoridor/statistics/JAXBContextResolver.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 14 Sep 2010 08:56:13 +0200
changeset 264 d60370059c3c
parent 178 4b78d4f028b3
permissions -rw-r--r--
Changing headers to GPLv3
     1 /*
     2  * Quoridor server and related libraries
     3  * Copyright (C) 2009-2010 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://www.gnu.org/licenses/.
    17  */
    18 package cz.xelfi.quoridor.statistics;
    19 
    20 import com.sun.jersey.api.json.JSONConfiguration;
    21 import com.sun.jersey.api.json.JSONJAXBContext;
    22 import java.util.Arrays;
    23 import java.util.HashSet;
    24 import java.util.Set;
    25 import javax.ws.rs.ext.ContextResolver;
    26 import javax.ws.rs.ext.Provider;
    27 import javax.xml.bind.JAXBContext;
    28 
    29 /**
    30  *
    31  * @author Martin Rexa
    32  */
    33 @Provider
    34 public final class JAXBContextResolver implements ContextResolver<JAXBContext> {
    35 
    36     private final JAXBContext context;
    37 
    38     private final Set<Class> types;
    39 
    40     private final Class[] cTypes = {EloList.class, EloEntry.class, OpeningNodeView.class, OpeningNodeViewEntry.class};
    41 
    42     public JAXBContextResolver() throws Exception {
    43         this.types = new HashSet(Arrays.asList(cTypes));
    44         this.context = new JSONJAXBContext(JSONConfiguration.natural().build(), cTypes);
    45     }
    46 
    47     public JAXBContext getContext(Class<?> objectType) {
    48         return (types.contains(objectType)) ? context : null;
    49     }
    50 }