2010-02-17 09:28:06 +02:00
|
|
|
/*
|
2011-12-06 02:42:25 +02:00
|
|
|
* Licensed to ElasticSearch and Shay Banon under one
|
2010-02-17 09:28: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-17 09:28: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.rest.action;
|
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
import com.google.common.collect.Lists;
|
2010-06-15 16:51:38 +03:00
|
|
|
import org.elasticsearch.common.inject.AbstractModule;
|
2011-02-10 17:23:49 +01:00
|
|
|
import org.elasticsearch.rest.BaseRestHandler;
|
2010-02-24 23:16:01 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.health.RestClusterHealthAction;
|
2012-08-02 14:52:31 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.node.hotthreads.RestNodesHotThreadsAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.node.info.RestNodesInfoAction;
|
2010-05-01 03:00:06 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.node.restart.RestNodesRestartAction;
|
2010-03-17 00:29:36 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.node.shutdown.RestNodesShutdownAction;
|
2010-05-09 09:59:43 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.node.stats.RestNodesStatsAction;
|
2011-10-16 19:02:32 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.reroute.RestClusterRerouteAction;
|
2011-08-20 04:00:41 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.settings.RestClusterGetSettingsAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.cluster.settings.RestClusterUpdateSettingsAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.cluster.state.RestClusterStateAction;
|
2011-05-19 00:21:59 -04:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.alias.RestGetIndicesAliasesAction;
|
2010-03-25 02:00:53 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.alias.RestIndicesAliasesAction;
|
2010-11-21 17:33:35 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.analyze.RestAnalyzeAction;
|
2010-04-01 12:25:51 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.cache.clear.RestClearIndicesCacheAction;
|
2010-10-23 21:52:09 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.close.RestCloseIndexAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.create.RestCreateIndexAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.delete.RestDeleteIndexAction;
|
2011-06-12 12:01:29 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.exists.RestIndicesExistsAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.flush.RestFlushAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.gateway.snapshot.RestGatewaySnapshotAction;
|
2010-09-16 14:35:07 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.mapping.delete.RestDeleteMappingAction;
|
2010-06-17 17:56:07 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.mapping.get.RestGetMappingAction;
|
2010-02-21 16:49:42 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.mapping.put.RestPutMappingAction;
|
2010-10-23 21:52:09 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.open.RestOpenIndexAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.optimize.RestOptimizeAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.refresh.RestRefreshAction;
|
2011-06-26 00:20:50 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.segments.RestIndicesSegmentsAction;
|
2011-03-29 13:50:25 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.settings.RestGetSettingsAction;
|
2010-08-08 09:17:09 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.settings.RestUpdateSettingsAction;
|
2011-08-24 11:24:52 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.stats.RestIndicesStatsAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.status.RestIndicesStatusAction;
|
2010-11-26 15:45:18 +02:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.template.delete.RestDeleteIndexTemplateAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.template.get.RestGetIndexTemplateAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.template.put.RestPutIndexTemplateAction;
|
2011-12-28 15:24:08 -07:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.validate.query.RestValidateQueryAction;
|
2012-05-06 18:50:35 +03:00
|
|
|
import org.elasticsearch.rest.action.admin.indices.warmer.delete.RestDeleteWarmerAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.warmer.get.RestGetWarmerAction;
|
|
|
|
import org.elasticsearch.rest.action.admin.indices.warmer.put.RestPutWarmerAction;
|
2010-09-15 12:22:07 +02:00
|
|
|
import org.elasticsearch.rest.action.bulk.RestBulkAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.count.RestCountAction;
|
|
|
|
import org.elasticsearch.rest.action.delete.RestDeleteAction;
|
|
|
|
import org.elasticsearch.rest.action.deletebyquery.RestDeleteByQueryAction;
|
2012-08-20 18:06:36 +02:00
|
|
|
import org.elasticsearch.rest.action.explain.RestExplainAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.get.RestGetAction;
|
2012-06-22 19:32:38 +02:00
|
|
|
import org.elasticsearch.rest.action.get.RestHeadAction;
|
2011-06-27 22:23:49 +03:00
|
|
|
import org.elasticsearch.rest.action.get.RestMultiGetAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.index.RestIndexAction;
|
|
|
|
import org.elasticsearch.rest.action.main.RestMainAction;
|
2010-02-27 03:57:36 +02:00
|
|
|
import org.elasticsearch.rest.action.mlt.RestMoreLikeThisAction;
|
2011-01-13 16:20:31 +02:00
|
|
|
import org.elasticsearch.rest.action.percolate.RestPercolateAction;
|
2012-02-20 18:57:27 +02:00
|
|
|
import org.elasticsearch.rest.action.search.RestMultiSearchAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
import org.elasticsearch.rest.action.search.RestSearchAction;
|
2010-03-21 01:14:49 +02:00
|
|
|
import org.elasticsearch.rest.action.search.RestSearchScrollAction;
|
2012-01-02 22:02:19 +02:00
|
|
|
import org.elasticsearch.rest.action.update.RestUpdateAction;
|
2010-02-17 09:28:06 +02:00
|
|
|
|
2011-02-10 17:23:49 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2010-02-17 09:28:06 +02:00
|
|
|
/**
|
2011-12-06 02:42:25 +02:00
|
|
|
*
|
2010-02-17 09:28:06 +02:00
|
|
|
*/
|
|
|
|
public class RestActionModule extends AbstractModule {
|
2011-02-10 17:23:49 +01:00
|
|
|
private List<Class<? extends BaseRestHandler>> restPluginsActions = Lists.newArrayList();
|
|
|
|
|
2011-03-29 13:50:25 +02:00
|
|
|
public RestActionModule(List<Class<? extends BaseRestHandler>> restPluginsActions) {
|
|
|
|
this.restPluginsActions = restPluginsActions;
|
2011-02-10 17:23:49 +01:00
|
|
|
}
|
2010-02-17 09:28:06 +02:00
|
|
|
|
2011-12-06 02:42:25 +02:00
|
|
|
@Override
|
|
|
|
protected void configure() {
|
2011-02-10 17:23:49 +01:00
|
|
|
for (Class<? extends BaseRestHandler> restAction : restPluginsActions) {
|
|
|
|
bind(restAction).asEagerSingleton();
|
|
|
|
}
|
|
|
|
|
2010-02-17 09:28:06 +02:00
|
|
|
bind(RestMainAction.class).asEagerSingleton();
|
|
|
|
|
|
|
|
bind(RestNodesInfoAction.class).asEagerSingleton();
|
2010-05-09 09:59:43 +03:00
|
|
|
bind(RestNodesStatsAction.class).asEagerSingleton();
|
2012-08-02 14:52:31 +03:00
|
|
|
bind(RestNodesHotThreadsAction.class).asEagerSingleton();
|
2010-03-17 00:29:36 +02:00
|
|
|
bind(RestNodesShutdownAction.class).asEagerSingleton();
|
2010-05-01 03:00:06 +03:00
|
|
|
bind(RestNodesRestartAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
bind(RestClusterStateAction.class).asEagerSingleton();
|
2010-02-24 23:16:01 +02:00
|
|
|
bind(RestClusterHealthAction.class).asEagerSingleton();
|
2011-08-20 04:00:41 +03:00
|
|
|
bind(RestClusterUpdateSettingsAction.class).asEagerSingleton();
|
|
|
|
bind(RestClusterGetSettingsAction.class).asEagerSingleton();
|
2011-10-16 19:02:32 +02:00
|
|
|
bind(RestClusterRerouteAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
|
2011-06-12 12:01:29 +03:00
|
|
|
bind(RestIndicesExistsAction.class).asEagerSingleton();
|
2011-08-24 11:24:52 +03:00
|
|
|
bind(RestIndicesStatsAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
bind(RestIndicesStatusAction.class).asEagerSingleton();
|
2011-06-26 00:20:50 +03:00
|
|
|
bind(RestIndicesSegmentsAction.class).asEagerSingleton();
|
2011-05-19 00:21:59 -04:00
|
|
|
bind(RestGetIndicesAliasesAction.class).asEagerSingleton();
|
2010-03-25 02:00:53 +02:00
|
|
|
bind(RestIndicesAliasesAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
bind(RestCreateIndexAction.class).asEagerSingleton();
|
|
|
|
bind(RestDeleteIndexAction.class).asEagerSingleton();
|
2010-10-23 21:52:09 +02:00
|
|
|
bind(RestCloseIndexAction.class).asEagerSingleton();
|
|
|
|
bind(RestOpenIndexAction.class).asEagerSingleton();
|
2011-03-29 13:50:25 +02:00
|
|
|
|
2010-08-08 09:17:09 +03:00
|
|
|
bind(RestUpdateSettingsAction.class).asEagerSingleton();
|
2011-03-29 13:50:25 +02:00
|
|
|
bind(RestGetSettingsAction.class).asEagerSingleton();
|
|
|
|
|
2010-11-21 17:33:35 +02:00
|
|
|
bind(RestAnalyzeAction.class).asEagerSingleton();
|
2010-11-26 15:45:18 +02:00
|
|
|
bind(RestGetIndexTemplateAction.class).asEagerSingleton();
|
|
|
|
bind(RestPutIndexTemplateAction.class).asEagerSingleton();
|
|
|
|
bind(RestDeleteIndexTemplateAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
|
2012-05-06 18:50:35 +03:00
|
|
|
bind(RestPutWarmerAction.class).asEagerSingleton();
|
|
|
|
bind(RestDeleteWarmerAction.class).asEagerSingleton();
|
|
|
|
bind(RestGetWarmerAction.class).asEagerSingleton();
|
|
|
|
|
2010-02-21 16:49:42 +02:00
|
|
|
bind(RestPutMappingAction.class).asEagerSingleton();
|
2010-09-16 14:35:07 +02:00
|
|
|
bind(RestDeleteMappingAction.class).asEagerSingleton();
|
2010-06-17 17:56:07 +03:00
|
|
|
bind(RestGetMappingAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
|
|
|
|
bind(RestGatewaySnapshotAction.class).asEagerSingleton();
|
|
|
|
|
|
|
|
bind(RestRefreshAction.class).asEagerSingleton();
|
|
|
|
bind(RestFlushAction.class).asEagerSingleton();
|
|
|
|
bind(RestOptimizeAction.class).asEagerSingleton();
|
2010-04-01 12:25:51 +03:00
|
|
|
bind(RestClearIndicesCacheAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
|
|
|
|
bind(RestIndexAction.class).asEagerSingleton();
|
|
|
|
bind(RestGetAction.class).asEagerSingleton();
|
2012-06-22 19:32:38 +02:00
|
|
|
bind(RestHeadAction.class).asEagerSingleton();
|
2011-06-27 22:23:49 +03:00
|
|
|
bind(RestMultiGetAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
bind(RestDeleteAction.class).asEagerSingleton();
|
|
|
|
bind(RestDeleteByQueryAction.class).asEagerSingleton();
|
|
|
|
bind(RestCountAction.class).asEagerSingleton();
|
2010-09-15 12:22:07 +02:00
|
|
|
bind(RestBulkAction.class).asEagerSingleton();
|
2012-01-02 22:02:19 +02:00
|
|
|
bind(RestUpdateAction.class).asEagerSingleton();
|
|
|
|
bind(RestPercolateAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
|
|
|
|
bind(RestSearchAction.class).asEagerSingleton();
|
2010-03-21 01:14:49 +02:00
|
|
|
bind(RestSearchScrollAction.class).asEagerSingleton();
|
2012-02-20 18:57:27 +02:00
|
|
|
bind(RestMultiSearchAction.class).asEagerSingleton();
|
2012-01-02 22:02:19 +02:00
|
|
|
|
2011-12-28 15:24:08 -07:00
|
|
|
bind(RestValidateQueryAction.class).asEagerSingleton();
|
2010-02-27 03:57:36 +02:00
|
|
|
|
|
|
|
bind(RestMoreLikeThisAction.class).asEagerSingleton();
|
2012-08-20 18:06:36 +02:00
|
|
|
|
|
|
|
bind(RestExplainAction.class).asEagerSingleton();
|
2010-02-17 09:28:06 +02:00
|
|
|
}
|
|
|
|
}
|