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

dps.webapplication.i18n.Locales Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package dps.webapplication.i18n;

import javax.enterprise.context.ApplicationScoped;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;

@ApplicationScoped
public class Locales {

    Map locales = new HashMap<>();

    Locale getLocale(String languageTag)
    {
        Locale locale = locales.get(languageTag);
        if (locale == null) {
            locale = Locale.forLanguageTag(languageTag);
            locales.put(languageTag,locale);
        }
        return locale;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy