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

br.com.jarch.faces.controller.LocaleController Maven / Gradle / Ivy

package br.com.jarch.faces.controller;

import br.com.jarch.core.annotation.JArchSessionScoped;

import java.io.Serializable;
import java.util.Locale;

@JArchSessionScoped
public class LocaleController implements Serializable {

    public Locale getLocale() {
        return Locale.getDefault();
    }

    public String getCountry() {
        return Locale.getDefault().getCountry();
    }

    public String getLanguage() {
        return Locale.getDefault().getLanguage();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy