Package lumis.search
Class SearcherFactory
- java.lang.Object
-
- lumis.search.SearcherFactory
-
@Deprecated public class SearcherFactory extends Object
Deprecated.Since 8.1.0, lumis.search was replaced by lumis.portal.bigdata.Creates instances of concreteSearcher
implementations.- Since:
- 4.0.4
- Version:
- $Revision: 17592 $ $Date: 2015-07-17 11:19:32 -0300 (Fri, 17 Jul 2015) $
-
-
Constructor Summary
Constructors Constructor Description SearcherFactory()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Searcher
getSearcher(String searchEngineId)
Deprecated.Creates an instance of the defaultSearcher
class for the specified search engine.static Searcher
getSearcher(String searchEngineId, String searcherId)
Deprecated.Creates an instance of theSearcher
class for the specified search engine and searcher.
The class is determined by a searcher confignode
in search config file.
-
-
-
Method Detail
-
getSearcher
public static Searcher getSearcher(String searchEngineId) throws PortalException
Deprecated.Creates an instance of the defaultSearcher
class for the specified search engine. The class is determined by a searcher confignode
in search config file. The specified search engine determines which searcher confignode
will be used.- Parameters:
searchEngineId
- search engine identifier in search config file- Returns:
Searcher
instance- Throws:
PortalException
- Since:
- 4.0.4
-
getSearcher
public static Searcher getSearcher(String searchEngineId, String searcherId) throws PortalException
Deprecated.Creates an instance of theSearcher
class for the specified search engine and searcher.
The class is determined by a searcher confignode
in search config file. The specified search engine and searcher determine which searcher confignode
will be used.- Parameters:
searchEngineId
- search engine identifier in search config filesearcherId
- searcher identifier in search config file- Returns:
Searcher
instance- Throws:
PortalException
- Since:
- 4.0.4
-
-