Interface SolrFacetSearchKeywordDao
-
- All Known Implementing Classes:
DefaultSolrFacetSearchKeywordDao
public interface SolrFacetSearchKeywordDaoDao to manage keywords.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<SolrFacetSearchKeywordRedirectModel>findKeywords(java.lang.String keyword, KeywordRedirectMatchType matchType, java.lang.String facetSearchConfigName, java.lang.String langIso)Finds the keywords for given configuration, language, keyword and matchtype.java.util.List<SolrFacetSearchKeywordRedirectModel>findKeywords(java.lang.String facetSearchConfigName, java.lang.String langIso)Finds the keywords for given configuration and language.
-
-
-
Method Detail
-
findKeywords
java.util.List<SolrFacetSearchKeywordRedirectModel> findKeywords(java.lang.String facetSearchConfigName, java.lang.String langIso)
Finds the keywords for given configuration and language.- Parameters:
facetSearchConfigName- configuration name.langIso- language.- Returns:
- collection of keywords.
-
findKeywords
java.util.List<SolrFacetSearchKeywordRedirectModel> findKeywords(java.lang.String keyword, KeywordRedirectMatchType matchType, java.lang.String facetSearchConfigName, java.lang.String langIso)
Finds the keywords for given configuration, language, keyword and matchtype.- Parameters:
keyword- keyword string.matchType- match type.facetSearchConfigName- configuration.langIso- language.
-
-