net.contextfw.web.commons.i18n.LocaleModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-commons Show documentation
Show all versions of web-commons Show documentation
Context Web Application Framework
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