Package de.hybris.platform.catalog.model
Class CatalogTerritoriesHandler
- java.lang.Object
-
- de.hybris.platform.catalog.model.CatalogTerritoriesHandler
-
- All Implemented Interfaces:
DynamicAttributeHandler<java.util.Collection<CountryModel>,CatalogModel>
public class CatalogTerritoriesHandler extends java.lang.Object implements DynamicAttributeHandler<java.util.Collection<CountryModel>,CatalogModel>
-
-
Constructor Summary
Constructors Constructor Description CatalogTerritoriesHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<CountryModel>get(CatalogModel model)Holds logic behind getter for dynamic attribute.voidset(CatalogModel model, java.util.Collection<CountryModel> countryModels)Holds logic behind setter for dynamic attribute.
-
-
-
Method Detail
-
get
public java.util.Collection<CountryModel> get(CatalogModel model)
Description copied from interface:DynamicAttributeHandlerHolds logic behind getter for dynamic attribute.- Specified by:
getin interfaceDynamicAttributeHandler<java.util.Collection<CountryModel>,CatalogModel>- Parameters:
model- model for which dynamic attribute is declared.- Returns:
- computed value.
-
set
public void set(CatalogModel model, java.util.Collection<CountryModel> countryModels)
Description copied from interface:DynamicAttributeHandlerHolds logic behind setter for dynamic attribute.- Specified by:
setin interfaceDynamicAttributeHandler<java.util.Collection<CountryModel>,CatalogModel>- Parameters:
model- model for which dynamic attribute is declared.countryModels- the value which will be used by setter logic.
-
-