com.shopizer.search.utils.CustomIndexConfiguration 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;
import java.util.List;
public class CustomIndexConfiguration extends IndexConfiguration {
private String createOnIndexName;
private List fields;
private List filters;
public String getCreateOnIndexName() {
return createOnIndexName;
}
public void setCreateOnIndexName(String createOnIndexName) {
this.createOnIndexName = createOnIndexName;
}
public List getFields() {
return fields;
}
public void setFields(List fields) {
this.fields = fields;
}
public List getFilters() {
return filters;
}
public void setFilters(List filters) {
this.filters = filters;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy