OpenSearch/src/main/java/org/elasticsearch/client/node/NodeIndicesAdminClient.java

390 lines
17 KiB
Java
Raw Normal View History

2010-02-08 15:30:06 +02:00
/*
2011-12-06 02:42:25 +02:00
* Licensed to ElasticSearch and Shay Banon under one
2010-02-08 15:30:06 +02:00
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
2011-12-06 02:42:25 +02:00
* regarding copyright ownership. ElasticSearch licenses this
2010-02-08 15:30:06 +02:00
* file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.elasticsearch.client.node;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.action.ActionFuture;
import org.elasticsearch.action.ActionListener;
2010-03-25 02:00:53 +02:00
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesResponse;
import org.elasticsearch.action.admin.indices.alias.TransportIndicesAliasesAction;
import org.elasticsearch.action.admin.indices.analyze.AnalyzeRequest;
import org.elasticsearch.action.admin.indices.analyze.AnalyzeResponse;
import org.elasticsearch.action.admin.indices.analyze.TransportAnalyzeAction;
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
import org.elasticsearch.action.admin.indices.cache.clear.TransportClearIndicesCacheAction;
import org.elasticsearch.action.admin.indices.close.CloseIndexRequest;
import org.elasticsearch.action.admin.indices.close.CloseIndexResponse;
import org.elasticsearch.action.admin.indices.close.TransportCloseIndexAction;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
import org.elasticsearch.action.admin.indices.create.TransportCreateIndexAction;
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
import org.elasticsearch.action.admin.indices.delete.DeleteIndexResponse;
import org.elasticsearch.action.admin.indices.delete.TransportDeleteIndexAction;
2011-06-12 12:01:29 +03:00
import org.elasticsearch.action.admin.indices.exists.IndicesExistsRequest;
import org.elasticsearch.action.admin.indices.exists.IndicesExistsResponse;
import org.elasticsearch.action.admin.indices.exists.TransportIndicesExistsAction;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
import org.elasticsearch.action.admin.indices.flush.TransportFlushAction;
import org.elasticsearch.action.admin.indices.gateway.snapshot.GatewaySnapshotRequest;
import org.elasticsearch.action.admin.indices.gateway.snapshot.GatewaySnapshotResponse;
import org.elasticsearch.action.admin.indices.gateway.snapshot.TransportGatewaySnapshotAction;
import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingRequest;
import org.elasticsearch.action.admin.indices.mapping.delete.DeleteMappingResponse;
import org.elasticsearch.action.admin.indices.mapping.delete.TransportDeleteMappingAction;
2010-02-21 16:49:42 +02:00
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingResponse;
import org.elasticsearch.action.admin.indices.mapping.put.TransportPutMappingAction;
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
import org.elasticsearch.action.admin.indices.open.TransportOpenIndexAction;
import org.elasticsearch.action.admin.indices.optimize.OptimizeRequest;
import org.elasticsearch.action.admin.indices.optimize.OptimizeResponse;
import org.elasticsearch.action.admin.indices.optimize.TransportOptimizeAction;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
import org.elasticsearch.action.admin.indices.refresh.TransportRefreshAction;
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentResponse;
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsRequest;
import org.elasticsearch.action.admin.indices.segments.TransportIndicesSegmentsAction;
import org.elasticsearch.action.admin.indices.settings.TransportUpdateSettingsAction;
import org.elasticsearch.action.admin.indices.settings.UpdateSettingsRequest;
import org.elasticsearch.action.admin.indices.settings.UpdateSettingsResponse;
import org.elasticsearch.action.admin.indices.stats.IndicesStats;
import org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest;
import org.elasticsearch.action.admin.indices.stats.TransportIndicesStatsAction;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.action.admin.indices.status.IndicesStatusRequest;
import org.elasticsearch.action.admin.indices.status.IndicesStatusResponse;
import org.elasticsearch.action.admin.indices.status.TransportIndicesStatusAction;
2010-11-26 15:45:18 +02:00
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateResponse;
import org.elasticsearch.action.admin.indices.template.delete.TransportDeleteIndexTemplateAction;
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest;
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateResponse;
import org.elasticsearch.action.admin.indices.template.put.TransportPutIndexTemplateAction;
import org.elasticsearch.action.admin.indices.validate.query.TransportValidateQueryAction;
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryResponse;
2010-02-08 15:30:06 +02:00
import org.elasticsearch.client.IndicesAdminClient;
2010-05-29 05:50:17 +03:00
import org.elasticsearch.client.support.AbstractIndicesAdminClient;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.settings.Settings;
2010-05-29 05:50:17 +03:00
import org.elasticsearch.threadpool.ThreadPool;
2010-02-08 15:30:06 +02:00
/**
2011-12-06 02:42:25 +02:00
*
2010-02-08 15:30:06 +02:00
*/
2010-05-29 05:50:17 +03:00
public class NodeIndicesAdminClient extends AbstractIndicesAdminClient implements IndicesAdminClient {
private final ThreadPool threadPool;
2010-02-08 15:30:06 +02:00
2011-06-12 12:01:29 +03:00
private final TransportIndicesExistsAction indicesExistsAction;
private final TransportIndicesStatsAction indicesStatsAction;
2010-02-08 15:30:06 +02:00
private final TransportIndicesStatusAction indicesStatusAction;
private final TransportIndicesSegmentsAction indicesSegmentsAction;
2010-02-08 15:30:06 +02:00
private final TransportCreateIndexAction createIndexAction;
private final TransportDeleteIndexAction deleteIndexAction;
private final TransportCloseIndexAction closeIndexAction;
private final TransportOpenIndexAction openIndexAction;
2010-02-08 15:30:06 +02:00
private final TransportRefreshAction refreshAction;
private final TransportFlushAction flushAction;
private final TransportOptimizeAction optimizeAction;
2010-02-21 16:49:42 +02:00
private final TransportPutMappingAction putMappingAction;
2010-02-08 15:30:06 +02:00
private final TransportDeleteMappingAction deleteMappingAction;
2010-02-08 15:30:06 +02:00
private final TransportGatewaySnapshotAction gatewaySnapshotAction;
2010-03-25 02:00:53 +02:00
private final TransportIndicesAliasesAction indicesAliasesAction;
private final TransportClearIndicesCacheAction clearIndicesCacheAction;
private final TransportUpdateSettingsAction updateSettingsAction;
private final TransportAnalyzeAction analyzeAction;
2010-11-26 15:45:18 +02:00
private final TransportPutIndexTemplateAction putIndexTemplateAction;
private final TransportDeleteIndexTemplateAction deleteIndexTemplateAction;
private final TransportValidateQueryAction validateQueryAction;
2011-12-06 02:42:25 +02:00
@Inject
public NodeIndicesAdminClient(Settings settings, ThreadPool threadPool, TransportIndicesExistsAction indicesExistsAction, TransportIndicesStatsAction indicesStatsAction, TransportIndicesStatusAction indicesStatusAction, TransportIndicesSegmentsAction indicesSegmentsAction,
TransportCreateIndexAction createIndexAction, TransportDeleteIndexAction deleteIndexAction,
TransportCloseIndexAction closeIndexAction, TransportOpenIndexAction openIndexAction,
TransportRefreshAction refreshAction, TransportFlushAction flushAction, TransportOptimizeAction optimizeAction,
TransportPutMappingAction putMappingAction, TransportDeleteMappingAction deleteMappingAction, TransportGatewaySnapshotAction gatewaySnapshotAction,
TransportIndicesAliasesAction indicesAliasesAction, TransportClearIndicesCacheAction clearIndicesCacheAction,
TransportUpdateSettingsAction updateSettingsAction, TransportAnalyzeAction analyzeAction,
TransportPutIndexTemplateAction putIndexTemplateAction, TransportDeleteIndexTemplateAction deleteIndexTemplateAction, TransportValidateQueryAction validateQueryAction) {
2010-05-29 05:50:17 +03:00
this.threadPool = threadPool;
2011-06-12 12:01:29 +03:00
this.indicesExistsAction = indicesExistsAction;
this.indicesStatsAction = indicesStatsAction;
2010-02-08 15:30:06 +02:00
this.indicesStatusAction = indicesStatusAction;
this.indicesSegmentsAction = indicesSegmentsAction;
2010-02-08 15:30:06 +02:00
this.createIndexAction = createIndexAction;
this.deleteIndexAction = deleteIndexAction;
this.closeIndexAction = closeIndexAction;
this.openIndexAction = openIndexAction;
2010-02-08 15:30:06 +02:00
this.refreshAction = refreshAction;
this.flushAction = flushAction;
this.optimizeAction = optimizeAction;
this.deleteMappingAction = deleteMappingAction;
2010-02-21 16:49:42 +02:00
this.putMappingAction = putMappingAction;
2010-02-08 15:30:06 +02:00
this.gatewaySnapshotAction = gatewaySnapshotAction;
2010-03-25 02:00:53 +02:00
this.indicesAliasesAction = indicesAliasesAction;
this.clearIndicesCacheAction = clearIndicesCacheAction;
this.updateSettingsAction = updateSettingsAction;
this.analyzeAction = analyzeAction;
2010-11-26 15:45:18 +02:00
this.putIndexTemplateAction = putIndexTemplateAction;
this.deleteIndexTemplateAction = deleteIndexTemplateAction;
this.validateQueryAction = validateQueryAction;
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public ThreadPool threadPool() {
2010-05-29 05:50:17 +03:00
return this.threadPool;
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<IndicesExistsResponse> exists(IndicesExistsRequest request) {
2011-06-12 12:01:29 +03:00
return indicesExistsAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void exists(IndicesExistsRequest request, ActionListener<IndicesExistsResponse> listener) {
2011-06-12 12:01:29 +03:00
indicesExistsAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<IndicesStats> stats(IndicesStatsRequest request) {
return indicesStatsAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void stats(IndicesStatsRequest request, ActionListener<IndicesStats> lister) {
indicesStatsAction.execute(request, lister);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<IndicesStatusResponse> status(IndicesStatusRequest request) {
return indicesStatusAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void status(IndicesStatusRequest request, ActionListener<IndicesStatusResponse> listener) {
2010-02-08 15:30:06 +02:00
indicesStatusAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<IndicesSegmentResponse> segments(IndicesSegmentsRequest request) {
return indicesSegmentsAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void segments(IndicesSegmentsRequest request, ActionListener<IndicesSegmentResponse> listener) {
indicesSegmentsAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<CreateIndexResponse> create(CreateIndexRequest request) {
return createIndexAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void create(CreateIndexRequest request, ActionListener<CreateIndexResponse> listener) {
2010-02-08 15:30:06 +02:00
createIndexAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<DeleteIndexResponse> delete(DeleteIndexRequest request) {
return deleteIndexAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void delete(DeleteIndexRequest request, ActionListener<DeleteIndexResponse> listener) {
2010-02-08 15:30:06 +02:00
deleteIndexAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<CloseIndexResponse> close(CloseIndexRequest request) {
return closeIndexAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void close(CloseIndexRequest request, ActionListener<CloseIndexResponse> listener) {
closeIndexAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<OpenIndexResponse> open(OpenIndexRequest request) {
return openIndexAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void open(OpenIndexRequest request, ActionListener<OpenIndexResponse> listener) {
openIndexAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<RefreshResponse> refresh(RefreshRequest request) {
return refreshAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void refresh(RefreshRequest request, ActionListener<RefreshResponse> listener) {
2010-02-08 15:30:06 +02:00
refreshAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<FlushResponse> flush(FlushRequest request) {
return flushAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void flush(FlushRequest request, ActionListener<FlushResponse> listener) {
2010-02-08 15:30:06 +02:00
flushAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<OptimizeResponse> optimize(OptimizeRequest request) {
return optimizeAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void optimize(OptimizeRequest request, ActionListener<OptimizeResponse> listener) {
optimizeAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<PutMappingResponse> putMapping(PutMappingRequest request) {
return putMappingAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void putMapping(PutMappingRequest request, ActionListener<PutMappingResponse> listener) {
2010-02-21 16:49:42 +02:00
putMappingAction.execute(request, listener);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<DeleteMappingResponse> deleteMapping(DeleteMappingRequest request) {
return deleteMappingAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void deleteMapping(DeleteMappingRequest request, ActionListener<DeleteMappingResponse> listener) {
deleteMappingAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<GatewaySnapshotResponse> gatewaySnapshot(GatewaySnapshotRequest request) {
return gatewaySnapshotAction.execute(request);
2010-02-08 15:30:06 +02:00
}
2011-12-06 02:42:25 +02:00
@Override
public void gatewaySnapshot(GatewaySnapshotRequest request, ActionListener<GatewaySnapshotResponse> listener) {
2010-02-08 15:30:06 +02:00
gatewaySnapshotAction.execute(request, listener);
}
2010-03-25 02:00:53 +02:00
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<IndicesAliasesResponse> aliases(IndicesAliasesRequest request) {
2010-03-25 02:00:53 +02:00
return indicesAliasesAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void aliases(IndicesAliasesRequest request, ActionListener<IndicesAliasesResponse> listener) {
2010-03-25 02:00:53 +02:00
indicesAliasesAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<ClearIndicesCacheResponse> clearCache(ClearIndicesCacheRequest request) {
return clearIndicesCacheAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void clearCache(ClearIndicesCacheRequest request, ActionListener<ClearIndicesCacheResponse> listener) {
clearIndicesCacheAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<UpdateSettingsResponse> updateSettings(UpdateSettingsRequest request) {
return updateSettingsAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void updateSettings(UpdateSettingsRequest request, ActionListener<UpdateSettingsResponse> listener) {
updateSettingsAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<AnalyzeResponse> analyze(AnalyzeRequest request) {
return analyzeAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void analyze(AnalyzeRequest request, ActionListener<AnalyzeResponse> listener) {
analyzeAction.execute(request, listener);
}
2010-11-26 15:45:18 +02:00
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<PutIndexTemplateResponse> putTemplate(PutIndexTemplateRequest request) {
2010-11-26 15:45:18 +02:00
return putIndexTemplateAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void putTemplate(PutIndexTemplateRequest request, ActionListener<PutIndexTemplateResponse> listener) {
2010-11-26 15:45:18 +02:00
putIndexTemplateAction.execute(request, listener);
}
2011-12-06 02:42:25 +02:00
@Override
public ActionFuture<DeleteIndexTemplateResponse> deleteTemplate(DeleteIndexTemplateRequest request) {
2010-11-26 15:45:18 +02:00
return deleteIndexTemplateAction.execute(request);
}
2011-12-06 02:42:25 +02:00
@Override
public void deleteTemplate(DeleteIndexTemplateRequest request, ActionListener<DeleteIndexTemplateResponse> listener) {
2010-11-26 15:45:18 +02:00
deleteIndexTemplateAction.execute(request, listener);
}
@Override
public ActionFuture<ValidateQueryResponse> validateQuery(ValidateQueryRequest request) {
return validateQueryAction.execute(request);
}
@Override
public void validateQuery(ValidateQueryRequest request, ActionListener<ValidateQueryResponse> listener) {
validateQueryAction.execute(request, listener);
}
2010-02-08 15:30:06 +02:00
}