Java Code Examples for org.elasticsearch.action.ActionModule#registerAction()
The following examples show how to use
org.elasticsearch.action.ActionModule#registerAction() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SirenJoinPlugin.java From siren-join with GNU Affero General Public License v3.0 | 5 votes |
public void onModule(ActionModule module) { module.registerAction(TermsByQueryAction.INSTANCE, TransportTermsByQueryAction.class); module.registerAction(CoordinateSearchAction.INSTANCE, TransportCoordinateSearchAction.class); module.registerAction(CoordinateMultiSearchAction.INSTANCE, TransportCoordinateMultiSearchAction.class); module.registerAction(ClearFilterJoinCacheAction.INSTANCE, TransportClearFilterJoinCacheAction.class); module.registerAction(StatsFilterJoinCacheAction.INSTANCE, TransportStatsFilterJoinCacheAction.class); module.registerAction(GetIndicesVersionAction.INSTANCE, TransportGetIndicesVersionAction.class); }
Example 2
Source File: BlobPlugin.java From Elasticsearch with Apache License 2.0 | 4 votes |
public void onModule(ActionModule module) { module.registerAction(PutChunkAction.INSTANCE, TransportPutChunkAction.class); module.registerAction(StartBlobAction.INSTANCE, TransportStartBlobAction.class); module.registerAction(DeleteBlobAction.INSTANCE, TransportDeleteBlobAction.class); }
Example 3
Source File: SQLPlugin.java From Elasticsearch with Apache License 2.0 | 4 votes |
public void onModule(ActionModule actionModule) { actionModule.registerAction(SQLAction.INSTANCE, TransportSQLAction.class); actionModule.registerAction(SQLBulkAction.INSTANCE, TransportSQLBulkAction.class); }
Example 4
Source File: GathererPlugin.java From elasticsearch-gatherer with Apache License 2.0 | 4 votes |
public void onModule(ActionModule module) { module.registerAction(DeployAction.INSTANCE, TransportDeployAction.class); module.registerAction(GathererAction.INSTANCE, TransportGathererAction.class); }
Example 5
Source File: HelperPlugin.java From elasticsearch-helper with Apache License 2.0 | 4 votes |
public void onModule(ActionModule module) { module.registerAction(IngestAction.INSTANCE, TransportIngestAction.class); }