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

gov.nasa.pds.registry.common.connection.es.SettingImpl Maven / Gradle / Ivy

package gov.nasa.pds.registry.common.connection.es;

import gov.nasa.pds.registry.common.Request.Setting;

class SettingImpl implements Setting {
  private String index;
  @Override
  public Setting setIndex(String name) {
    this.index = name;
    return this;
  }
  @Override
  public String toString() {
    return "/" + this.index + "/_settings";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy