gov.nasa.pds.registry.common.connection.aws.SettingImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registry-common Show documentation
Show all versions of registry-common Show documentation
Common code used by Harvest and Registry Manager.
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