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

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

There is a newer version: 2.0.3
Show newest version
package gov.nasa.pds.registry.common.connection.aws;

import org.opensearch.client.opensearch.indices.GetIndicesSettingsRequest;
import gov.nasa.pds.registry.common.Request.Setting;

class SettingImpl implements Setting {
  final GetIndicesSettingsRequest.Builder craftsman = new GetIndicesSettingsRequest.Builder();
  @Override
  public Setting setIndex(String name) {
    this.craftsman.index(name);
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy