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

io.dropwizard.jersey.optional.OptionalParamFeature Maven / Gradle / Ivy

package io.dropwizard.jersey.optional;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy