All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fabric3.binding.rs.runtime.provider.ProxyObjectMapperContextResolver Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.fabric3.binding.rs.runtime.provider;

import javax.ws.rs.ext.ContextResolver;
import javax.ws.rs.ext.Provider;

import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * Dispatches to a component-based Context resolver for Jackson ObjectMapper instances.
 * 

* This implementation performs a lazy lookup of the component instance since resolvers are provisioned with composite resources, which occurs before components * are provisioned. */ @Provider public class ProxyObjectMapperContextResolver extends AbstractProxyProvider> implements ContextResolver { public ObjectMapper getContext(Class type) { return getDelegate().getContext(type); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy