com.shopizer.search.utils.IndexConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-search Show documentation
Show all versions of sm-search Show documentation
Search module for shopizer using elasticsearch 5.6.12
package com.shopizer.search.utils;
/**
* Configured from Spring
*
* @author Carl Samson
*
*/
public class IndexConfiguration {
private String collectionName;
private String mappingFileName;
private String settingsFileName;
public String getMappingFileName() {
return mappingFileName;
}
public void setMappingFileName(String mappingFileName) {
this.mappingFileName = mappingFileName;
}
public String getCollectionName() {
return collectionName;
}
public void setCollectionName(String collectionName) {
this.collectionName = collectionName;
}
public String getIndexName() {
return indexName;
}
public void setIndexName(String indexName) {
this.indexName = indexName;
}
public void setSettingsFileName(String settingsFileName) {
this.settingsFileName = settingsFileName;
}
public String getSettingsFileName() {
return settingsFileName;
}
private String indexName;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy