Uses of Interface
org.elasticsearch.rest.RestHandler
-
-
Uses of RestHandler in org.elasticsearch.plugins
Methods in org.elasticsearch.plugins that return types with arguments of type RestHandler Modifier and Type Method Description default List<RestHandler>ActionPlugin. getRestHandlers(Settings settings, RestController restController, ClusterSettings clusterSettings, IndexScopedSettings indexScopedSettings, SettingsFilter settingsFilter, IndexNameExpressionResolver indexNameExpressionResolver, Supplier<DiscoveryNodes> nodesInCluster)Rest handlers added by this plugin.default UnaryOperator<RestHandler>ActionPlugin. getRestHandlerWrapper(ThreadContext threadContext)Returns a function used to wrap each rest request before handling the request. -
Uses of RestHandler in org.elasticsearch.rest
Classes in org.elasticsearch.rest that implement RestHandler Modifier and Type Class Description classBaseRestHandlerBase handler for REST requests.classDeprecationRestHandlerDeprecationRestHandlerprovides a proxy for any existingRestHandlerso that usage of the handler can be logged using theDeprecationLogger.Methods in org.elasticsearch.rest with parameters of type RestHandler Modifier and Type Method Description voidRestController. registerAsDeprecatedHandler(RestRequest.Method method, String path, RestHandler handler, String deprecationMessage, DeprecationLogger logger)Registers a REST handler to be executed when the providedmethodandpathmatch the request.voidRestController. registerHandler(RestRequest.Method method, String path, RestHandler handler)Registers a REST handler to be executed when one of the provided methods and path match the request.voidRestController. registerWithDeprecatedHandler(RestRequest.Method method, String path, RestHandler handler, RestRequest.Method deprecatedMethod, String deprecatedPath, DeprecationLogger logger)Registers a REST handler to be executed when the providedmethodandpathmatch the request, or when provided withdeprecatedMethodanddeprecatedPath.Constructors in org.elasticsearch.rest with parameters of type RestHandler Constructor Description DeprecationRestHandler(RestHandler handler, String deprecationMessage, DeprecationLogger deprecationLogger)Create aDeprecationRestHandlerthat encapsulates thehandlerusing thedeprecationLoggerto log deprecationwarning.Constructor parameters in org.elasticsearch.rest with type arguments of type RestHandler Constructor Description RestController(Set<String> headersToCopy, UnaryOperator<RestHandler> handlerWrapper, NodeClient client, CircuitBreakerService circuitBreakerService, UsageService usageService) -
Uses of RestHandler in org.elasticsearch.rest.action
Classes in org.elasticsearch.rest.action that implement RestHandler Modifier and Type Class Description classRestFieldCapabilitiesActionclassRestMainAction -
Uses of RestHandler in org.elasticsearch.rest.action.admin.cluster
-
Uses of RestHandler in org.elasticsearch.rest.action.admin.indices
-
Uses of RestHandler in org.elasticsearch.rest.action.cat
Classes in org.elasticsearch.rest.action.cat that implement RestHandler Modifier and Type Class Description classAbstractCatActionclassRestAliasActionclassRestAllocationActionclassRestCatActionclassRestCatRecoveryActionRestRecoveryAction provides information about the status of replica recovery in a string format, designed to be used at the command line.classRestCountActionclassRestFielddataActionCat API class to display information about the size of fielddata fields per nodeclassRestHealthActionclassRestIndicesActionclassRestMasterActionclassRestNodeAttrsActionclassRestNodesActionclassRestPendingClusterTasksActionclassRestPluginsActionclassRestRepositoriesActionCat API class to display information about snapshot repositoriesclassRestSegmentsActionclassRestShardsActionclassRestSnapshotActionCat API class to display information about snapshotsclassRestTasksActionclassRestTemplatesActionclassRestThreadPoolAction -
Uses of RestHandler in org.elasticsearch.rest.action.document
Classes in org.elasticsearch.rest.action.document that implement RestHandler Modifier and Type Class Description classRestBulkAction{ "index" : { "_index" : "test", "_type" : "type1", "_id" : "1" } { "type1" : { "field1" : "value1" } } { "delete" : { "_index" : "test", "_type" : "type1", "_id" : "2" } } { "create" : { "_index" : "test", "_type" : "type1", "_id" : "1" } { "type1" : { "field1" : "value1" } }classRestDeleteActionclassRestGetActionclassRestGetSourceActionThe REST handler for get source and head source APIs.classRestIndexActionclassRestMultiGetActionclassRestMultiTermVectorsActionclassRestTermVectorsActionThis class parses the json request and translates it into a TermVectorsRequest.classRestUpdateAction -
Uses of RestHandler in org.elasticsearch.rest.action.ingest
Classes in org.elasticsearch.rest.action.ingest that implement RestHandler Modifier and Type Class Description classRestDeletePipelineActionclassRestGetPipelineActionclassRestPutPipelineActionclassRestSimulatePipelineAction -
Uses of RestHandler in org.elasticsearch.rest.action.search
Classes in org.elasticsearch.rest.action.search that implement RestHandler Modifier and Type Class Description classRestClearScrollActionclassRestCountActionclassRestExplainActionRest action for computing a score explanation for specific documents.classRestMultiSearchActionclassRestSearchActionclassRestSearchScrollAction
-