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

io.searchbox.snapshot.GetSnapshot Maven / Gradle / Ivy

There is a newer version: 6.3.1
Show newest version
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