/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.atteo.moonshine.jersey; import javax.ws.rs.ext.ContextResolver; import javax.ws.rs.ext.Provider; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import org.atteo.classindex.ClassIndex; import org.atteo.moonshine.jaxrs.ResourceModel; import com.google.common.collect.Iterables; import com.google.inject.Singleton; import com.sun.jersey.api.json.JSONConfiguration; import com.sun.jersey.api.json.JSONJAXBContext; @Provider @Singleton public final class JAXBContextResolver implements ContextResolver<JAXBContext> { private JAXBContext context; public JAXBContextResolver() { try { context = new JSONJAXBContext(JSONConfiguration.natural().usePrefixesAtNaturalAttributes() .rootUnwrapping(true).build(), Iterables.toArray(ClassIndex.getAnnotated(ResourceModel.class), Class.class)); } catch (JAXBException e) { throw new RuntimeException(e); } } @Override public JAXBContext getContext(Class<?> objectType) { return context; } }