Interface I18NBeanFactory
-
- All Known Implementing Classes:
CachingI18NBeanFactory,DefaultI18NBeanFactory,DynamicI18NBeanFactory,UserI18NBeanFactory
public interface I18NBeanFactoryFactory interface for retrieving i18n support beans
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NonNull I18NBeangetI18NBean()@NonNull I18NBeangetI18NBean(@NonNull Locale locale)@NonNull StringgetStateHash()
-
-
-
Method Detail
-
getI18NBean
@NonNull I18NBean getI18NBean(@NonNull Locale locale)
- Parameters:
locale- locale for i18n- Returns:
- i18n bean for specified locale
-
getI18NBean
@NonNull I18NBean getI18NBean()
- Returns:
- i18n bean for the system default locale
-
getStateHash
@NonNull String getStateHash()
- Returns:
- a hash of the current state of this factory.
-
-