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

io.dropwizard.vavr.jersey.LazyParamBinder Maven / Gradle / Ivy

There is a newer version: 4.0.0-2
Show newest version
package io.dropwizard.vavr.jersey;

import org.glassfish.hk2.utilities.binding.AbstractBinder;

import javax.inject.Singleton;
import javax.ws.rs.ext.ParamConverterProvider;

final class LazyParamBinder extends AbstractBinder {
    @Override
    protected void configure() {
        // Param converter providers
        bind(LazyParamConverterProvider.class).to(ParamConverterProvider.class).in(Singleton.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy