Package org.elasticsearch.client.action.admin.indices.exists

Examples of org.elasticsearch.client.action.admin.indices.exists.IndicesExistsRequestBuilder


* @author kimchy (shay.banon)
*/
public abstract class AbstractIndicesAdminClient implements InternalIndicesAdminClient {

    @Override public IndicesExistsRequestBuilder prepareExists(String... indices) {
        return new IndicesExistsRequestBuilder(this, indices);
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.client.action.admin.indices.exists.IndicesExistsRequestBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.