
io.searchbox.snapshot.DeleteSnapshotRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jest-common Show documentation
Show all versions of jest-common Show documentation
ElasticSearch Java REST client - shared library package
package io.searchbox.snapshot;
/**
* @author happyprg([email protected])
*/
public class DeleteSnapshotRepository extends AbstractSnapshotRepositoryAction {
protected DeleteSnapshotRepository(Builder builder) {
super(builder);
}
@Override
public String getRestMethodName() {
return "DELETE";
}
public static class Builder extends AbstractSnapshotRepositoryAction.SingleRepositoryBuilder {
public Builder(String repository) {
super(repository);
}
@Override
public DeleteSnapshotRepository build() {
return new DeleteSnapshotRepository(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy