Package de.hybris.platform.catalog.daos
Interface KeywordDao
-
- All Known Implementing Classes:
DefaultKeywordDao
public interface KeywordDaoInterface define routine of getting keywords from DB.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<KeywordModel>getKeywords(CatalogVersionModel catalogVersion, java.lang.String keywordValue)Returns the Keyword for the specified keyword value andCatalogVersion.java.util.List<KeywordModel>getKeywords(java.lang.String typeCode, CatalogVersionModel catalogVersion, java.lang.String keywordValue)Returns the Keyword for the specified keyword value andCatalogVersion.
-
-
-
Method Detail
-
getKeywords
java.util.List<KeywordModel> getKeywords(CatalogVersionModel catalogVersion, java.lang.String keywordValue)
Returns the Keyword for the specified keyword value andCatalogVersion.- Parameters:
catalogVersion- TheCatalogVersiontheKeywordbelongs to.keywordValue- The value of the searchedKeyword.- Returns:
- All matching
Keywords.
-
getKeywords
java.util.List<KeywordModel> getKeywords(java.lang.String typeCode, CatalogVersionModel catalogVersion, java.lang.String keywordValue)
Returns the Keyword for the specified keyword value andCatalogVersion.- Parameters:
typeCode- Code of type (or subtype) of keyword to allow to search for subclassescatalogVersion- TheCatalogVersiontheKeywordbelongs to.keywordValue- The value of the searchedKeyword.- Returns:
- All matching
Keywords.
-
-