io.searchbox.snapshot.GetSnapshot 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 GetSnapshot extends AbstractSnapshotAction {
protected GetSnapshot(Builder builder) {
super(builder);
}
@Override
public String getRestMethodName() {
return "GET";
}
public static class Builder extends AbstractSnapshotAction.MultipleSnapshotBuilder {
public Builder(String repository) {
super(repository);
}
@Override
public GetSnapshot build() {
return new GetSnapshot(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy