Interface HstSiteMenusConfiguration
public interface HstSiteMenusConfiguration
Implementations should return an unmodifiable map for
getSiteMenuConfigurations()
because clients should not
be able to modify the configuration-
Method Details
-
getSite
HstSite getSite()Return theHstSite
thisHstSiteMenusConfiguration
belongs to.- Returns:
- the site this
HstSiteMenusConfiguration
belongs to
-
getSiteMenuConfigurations
Map<String,HstSiteMenuConfiguration> getSiteMenuConfigurations()Returns the map containing allHstSiteMenuConfiguration
's and an empty map if there are noHstSiteMenuConfiguration
's. Note: implementation should better return an unmodifiable map to make sure clients cannot modify the map- Returns:
- map containing all
HstSiteMenuConfiguration
's and an empty map if there are noHstSiteMenuConfiguration
's
-
getSiteMenuConfiguration
- Parameters:
name
- the name of theHstSiteMenuConfiguration
- Returns:
- the
HstSiteMenuConfiguration
with this name andnull
if does not exist
-