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

restx.http.HttpModule Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package restx.http;

import restx.factory.Module;
import restx.factory.Provides;

import javax.inject.Named;

@Module(priority = 100)
public class HttpModule {
    @Provides @Named("CurrentLocaleResolver")
    public CurrentLocaleResolver currentLocaleResolver(){
        return new RequestBasedLocaleResolver();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy