Skip navigation links


com.fatwire.cs.core.search.engine
Interface SearchEngineMetadata


public interface SearchEngineMetadata

SearchEngineMetadata represents the SearchEngine configuration information in Content Server. SearchEngine will use the metadata to retrieve all the information it needed about where to index, what converter class to use and access the properties that user specified


Method Summary
 java.lang.String getProperty(java.lang.String key)
          Retrieves a property specified given name
 java.util.Set<java.lang.String> getPropertyNames()
          Retrieves the set of all property names specified
 java.lang.String getQueryConverterClass()
          Gets the default QueryConverter class for the SearchEngine; this is used to instruct the SearchEngine that the specific QueryConverter instead of the default one will be used
 java.lang.String getWorkingFolder()
          Gets the working folder configured for the SearchEngine; this folder is used by SearchEngine to index and search the data

 

Method Detail

getWorkingFolder

java.lang.String getWorkingFolder()
Gets the working folder configured for the SearchEngine; this folder is used by SearchEngine to index and search the data
Returns:
the String format of the absolute folder name of the working folder

getQueryConverterClass

java.lang.String getQueryConverterClass()
Gets the default QueryConverter class for the SearchEngine; this is used to instruct the SearchEngine that the specific QueryConverter instead of the default one will be used
Returns:
the QueryConverter instance specified

getProperty

java.lang.String getProperty(java.lang.String key)
Retrieves a property specified given name
Parameters:
key - the property name
Returns:
the String value specified for the property

getPropertyNames

java.util.Set<java.lang.String> getPropertyNames()
Retrieves the set of all property names specified
Returns:
the set of String property names

Skip navigation links


Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.