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

net.contextfw.web.commons.i18n.LocaleModule Maven / Gradle / Ivy

The newest version!
package net.contextfw.web.commons.i18n;

import net.contextfw.web.application.configuration.Configuration;

import com.google.inject.AbstractModule;

public class LocaleModule extends AbstractModule {

    private final Configuration conf;

    public LocaleModule(Configuration conf) {
        this.conf = conf;
    }
    
    @Override
    protected void configure() {
        bind(LocaleService.class).toInstance(new LocaleServiceImpl(conf));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy