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

com.hubspot.singularity.jersey.SingularityJerseyModule Maven / Gradle / Ivy

package com.hubspot.singularity.jersey;

import static com.hubspot.singularity.jersey.JerseyBinder.bindContainerRequestFilter;

import com.google.inject.Binder;
import com.google.inject.Module;
import com.google.inject.Scopes;

/**
 * Jersey specific code for Singularity.
 */
public class SingularityJerseyModule implements Module
{
  @Override
  public void configure(final Binder binder)
  {
    bindContainerRequestFilter(binder).to(ReplaceES419LanguageFilter.class).in(Scopes.SINGLETON);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy