All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shopizer.search.utils.CustomIndexConfiguration Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
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