Uses of Class
org.elasticsearch.rest.RestRequest.Method
-
Packages that use RestRequest.Method Package Description org.elasticsearch.http org.elasticsearch.rest -
-
Uses of RestRequest.Method in org.elasticsearch.http
Methods in org.elasticsearch.http that return RestRequest.Method Modifier and Type Method Description RestRequest.MethodHttpRequest. method()Returns the HTTP method used in the HTTP request. -
Uses of RestRequest.Method in org.elasticsearch.rest
Methods in org.elasticsearch.rest that return RestRequest.Method Modifier and Type Method Description RestRequest.MethodRestRequest. method()Returns the HTTP method used in the REST request.static RestRequest.MethodRestRequest.Method. valueOf(String name)Returns the enum constant of this type with the specified name.static RestRequest.Method[]RestRequest.Method. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.elasticsearch.rest with parameters of type RestRequest.Method 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.
-