Package com.microstrategy.web.objects
Interface SearchEngineProperties
-
- All Known Implementing Classes:
SearchEnginePropertiesImpl
public interface SearchEngineProperties
This interface defines class SearchEngineProperties, which is used in the search index to describe the search engine. 10/18/2013 @author swang- Since:
- MicroStrategy Web cloud OM.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIndexLocation()
Get the index location of this search engineHashList<java.lang.String,java.lang.String>
getStopWords()
Get the stop words of this search engineboolean
isAutoStartQuickSearch()
Is search engine is auto startvoid
save()
Save the search engine properties to metadatavoid
setAutoStartQuickSearch(boolean autoStartQuickSearch)
Set the search engine to be auto start or not.void
setIndexLocation(java.lang.String indexLocation)
Set the index location of this search enginevoid
setStopWords(HashList<java.lang.String,java.lang.String> stopWords)
Set the stop words of this search engine
-
-
-
Method Detail
-
isAutoStartQuickSearch
boolean isAutoStartQuickSearch()
Is search engine is auto start
-
setAutoStartQuickSearch
void setAutoStartQuickSearch(boolean autoStartQuickSearch)
Set the search engine to be auto start or not.
-
getIndexLocation
java.lang.String getIndexLocation()
Get the index location of this search engine
-
setIndexLocation
void setIndexLocation(java.lang.String indexLocation)
Set the index location of this search engine
-
getStopWords
HashList<java.lang.String,java.lang.String> getStopWords()
Get the stop words of this search engine
-
setStopWords
void setStopWords(HashList<java.lang.String,java.lang.String> stopWords)
Set the stop words of this search engine
-
save
void save() throws WebObjectsException
Save the search engine properties to metadata- Throws:
WebObjectsException
-
-