Interface LocalizedRelationChanges
-
- All Superinterfaces:
RelationChanges
- All Known Implementing Classes:
DefaultLocalizedRelationChanges
public interface LocalizedRelationChanges extends RelationChanges
Localized relation changes groups changes for all languages by the relation type
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface de.hybris.platform.directpersistence.record.RelationChanges
RelationChanges.RelationChangesVisitor<V>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DefaultRelationChangesgetRelationChangeForLanguage(java.util.Locale locale)returns all relation changes for a given localejava.util.Map<java.util.Locale,DefaultRelationChanges>getRelationChanges()returns the localized relation changesvoidput(java.util.Locale locale, DefaultRelationChanges relationChanges)Allows to add or change the relation changes for a given locale-
Methods inherited from interface de.hybris.platform.directpersistence.record.RelationChanges
accept, getRelationMetaInfo, groupOrderInformation
-
-
-
-
Method Detail
-
getRelationChanges
java.util.Map<java.util.Locale,DefaultRelationChanges> getRelationChanges()
returns the localized relation changes- Returns:
- a map containing locales with corresponding relation changes
-
getRelationChangeForLanguage
DefaultRelationChanges getRelationChangeForLanguage(java.util.Locale locale)
returns all relation changes for a given locale- Parameters:
locale- locale, for which the lookup will be executed- Returns:
- relation changes for given locale
-
put
void put(java.util.Locale locale, DefaultRelationChanges relationChanges)Allows to add or change the relation changes for a given locale- Parameters:
locale- locale, for which the relation changes will be associated withrelationChanges- relation changes to be associated with the given locale
-
-