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

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

package io.dropwizard.vavr.jersey;

import javax.ws.rs.core.Feature;
import javax.ws.rs.core.FeatureContext;

public class OptionParamFeature implements Feature {
    @Override
    public boolean configure(final FeatureContext context) {
        context.register(new OptionParamBinder());
        return true;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy