Package com.microstrategy.web.objects
Interface SearchEngineProperties
- 
- All Known Implementing Classes:
 SearchEnginePropertiesImpl
public interface SearchEnginePropertiesThis 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.StringgetIndexLocation()Get the index location of this search engineHashList<java.lang.String,java.lang.String>getStopWords()Get the stop words of this search enginebooleanisAutoStartQuickSearch()Is search engine is auto startvoidsave()Save the search engine properties to metadatavoidsetAutoStartQuickSearch(boolean autoStartQuickSearch)Set the search engine to be auto start or not.voidsetIndexLocation(java.lang.String indexLocation)Set the index location of this search enginevoidsetStopWords(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
 
 - 
 
 -