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

io.searchbox.indices.IndicesExists Maven / Gradle / Ivy

package io.searchbox.indices;

import io.searchbox.action.AbstractMultiIndexActionBuilder;
import io.searchbox.action.GenericResultAbstractAction;

import java.util.Collection;

/**
 * @author Dogukan Sonmez
 */
public class IndicesExists extends GenericResultAbstractAction {

    protected IndicesExists(Builder builder) {
        super(builder);
        setURI(buildURI());
    }

    @Override
    public String getRestMethodName() {
        return "HEAD";
    }

    public static class Builder extends AbstractMultiIndexActionBuilder {

        public Builder(String index){
            addIndex(index);
        }

        public Builder(Collection indices){
            addIndex(indices);
        }

        @Override
        public IndicesExists build() {
            return new IndicesExists(this);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy