Uses of Class
io.helidon.common.http.Http.Method
-
Uses of Http.Method in io.helidon.common.http
Fields in io.helidon.common.http declared as Http.MethodModifier and TypeFieldDescriptionstatic final Http.MethodHttp.Method.DELETEThe DELETE method requests that the origin server delete the resource identified by the Request-URI.static final Http.MethodHttp.Method.GETThe GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI.static final Http.MethodHttp.Method.HEADThe HEAD method is identical toGETexcept that the server MUST NOT return a message-body in the response.static final Http.MethodHttp.Method.OPTIONSThe OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI.static final Http.MethodHttp.Method.PATCHThe PATCH method as described in RFC 5789 is used to perform an update to an existing resource, where the request payload only has to contain the instructions on how to perform the update.static final Http.MethodHttp.Method.POSTThe POST method is used to request that the origin server acceptedTypes the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line.static final Http.MethodHttp.Method.PUTThe PUT method requests that the enclosed entity be stored under the supplied Request-URI.static final Http.MethodHttp.Method.TRACEThe TRACE method is used to invoke a remote, application-layer loop- back of the request message.Methods in io.helidon.common.http that return Http.MethodModifier and TypeMethodDescriptionstatic Http.MethodCreate new HTTP request method instance from the provided name.HttpPrologue.method()HTTP method of this request.Methods in io.helidon.common.http that return types with arguments of type Http.MethodModifier and TypeMethodDescriptionHttp.MethodPredicate.acceptedMethods()Methods accepted by this predicate, may be empty.Methods in io.helidon.common.http with parameters of type Http.MethodModifier and TypeMethodDescriptionstatic HttpPrologueHttpPrologue.create(String rawProtocol, String protocol, String protocolVersion, Http.Method httpMethod, UriPath uriPath, UriQuery uriQuery, UriFragment uriFragment) Create a new prologue with decoded values.static HttpPrologueHttpPrologue.create(String rawProtocol, String protocol, String protocolVersion, Http.Method httpMethod, String unresolvedPath, boolean validatePath) Create a new prologue.static Http.MethodPredicateHttp.Method.predicate(Http.Method... methods) Create a predicate for the provided methods.Method parameters in io.helidon.common.http with type arguments of type Http.MethodModifier and TypeMethodDescriptionstatic Http.MethodPredicateHttp.Method.predicate(Collection<Http.Method> methods) Create a predicate for the provided methods.