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

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

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