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

com.yammer.dropwizard.jersey.caching.CacheControlledResourceMethodDispatchAdapter Maven / Gradle / Ivy

package com.yammer.dropwizard.jersey.caching;

import com.sun.jersey.spi.container.ResourceMethodDispatchAdapter;
import com.sun.jersey.spi.container.ResourceMethodDispatchProvider;

public class CacheControlledResourceMethodDispatchAdapter implements ResourceMethodDispatchAdapter {
    @Override
    public ResourceMethodDispatchProvider adapt(ResourceMethodDispatchProvider provider) {
        return new CacheControlledResourceMethodDispatchProvider(provider);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy