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

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

There is a newer version: 2.11.2
Show newest version
package com.shopizer.search.utils;

public class CustomIndexFieldConfiguration {

  private String fieldName;
  private String fieldType;

  public String getFieldName() {
    return fieldName;
  }

  public void setFieldName(String fieldName) {
    this.fieldName = fieldName;
  }

  public String getFieldType() {
    return fieldType;
  }

  public void setFieldType(String fieldType) {
    this.fieldType = fieldType;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy