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

com.commercetools.sunrise.framework.localization.UserLanguage Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.framework.localization;

import com.google.inject.ImplementedBy;

import java.util.List;
import java.util.Locale;

/**
 * Contains information about the user's supported locales.
 */
@ImplementedBy(UserLanguageImpl.class)
public interface UserLanguage {

    /**
     * Primary locale accepted by the user.
     * @return the supported locale
     */
    Locale locale();

    /**
     * List of distinct locales accepted by the user.
     * @return the supported locales
     */
    List locales();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy