Interface AsCategoryFacade
-
- All Known Implementing Classes:
DefaultAsCategoryFacade
public interface AsCategoryFacade
Facade to retrieve category related information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<AsCategoryData>
buildCategoryBreadcrumbs(java.lang.String catalogId, java.lang.String catalogVersionName, java.util.List<java.lang.String> categoryPath)
Returns breadcrumbs for the category path sent.java.util.List<AsCategoryData>
buildCategoryBreadcrumbs(java.util.List<java.lang.String> categoryPath)
Returns breadcrumbs for the category path sent.AsCategoryData
getCategoryHierarchy()
Returns the category hierarchy when no catalog version is available.AsCategoryData
getCategoryHierarchy(java.lang.String catalogId, java.lang.String catalogVersionName)
Returns the category hierarchy for a given catalog version.
-
-
-
Method Detail
-
getCategoryHierarchy
AsCategoryData getCategoryHierarchy()
Returns the category hierarchy when no catalog version is available.- Returns:
- the category hierarchy
-
getCategoryHierarchy
AsCategoryData getCategoryHierarchy(java.lang.String catalogId, java.lang.String catalogVersionName)
Returns the category hierarchy for a given catalog version.- Parameters:
catalogId
- - the catalog idcatalogVersionName
- - the catalog version name- Returns:
- the category hierarchy
-
buildCategoryBreadcrumbs
java.util.List<AsCategoryData> buildCategoryBreadcrumbs(java.util.List<java.lang.String> categoryPath)
Returns breadcrumbs for the category path sent.- Parameters:
categoryPath
- - list of category codes- Returns:
- the category bread crumb
-
buildCategoryBreadcrumbs
java.util.List<AsCategoryData> buildCategoryBreadcrumbs(java.lang.String catalogId, java.lang.String catalogVersionName, java.util.List<java.lang.String> categoryPath)
Returns breadcrumbs for the category path sent.- Parameters:
catalogId
- - the catalog idcatalogVersionName
- - the catalog version namecategoryPath
- - list of category codes- Returns:
- the category bread crumb
-
-