Package org.rapidcontext.util
Interface HttpUtil.Method
- Enclosing interface:
HttpUtil
public static interface HttpUtil.Method
The HTTP methods as defined in RFC1945 (HTTP/1.0), RFC2616
(HTTP/1.1) and RFC5789 (PATCH).
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringCONNECT(HTTP/1.1 - RFC 2616)static final StringDELETE(HTTP/1.1 - RFC 2616)static final StringGET(HTTP/1.1 - RFC 2616)static final StringHEAD(HTTP/1.1 - RFC 2616)static final StringOPTIONS(HTTP/1.1 - RFC 2616)static final StringPATCH(HTTP PATCH - RFC 5789)static final StringPOST(HTTP/1.1 - RFC 2616)static final StringPUT(HTTP/1.1 - RFC 2616)static final StringTRACE(HTTP/1.1 - RFC 2616)
-
Field Details
-
OPTIONS
OPTIONS(HTTP/1.1 - RFC 2616)- See Also:
-
GET
GET(HTTP/1.1 - RFC 2616)- See Also:
-
HEAD
HEAD(HTTP/1.1 - RFC 2616)- See Also:
-
POST
POST(HTTP/1.1 - RFC 2616)- See Also:
-
PUT
PUT(HTTP/1.1 - RFC 2616)- See Also:
-
PATCH
PATCH(HTTP PATCH - RFC 5789)- See Also:
-
DELETE
DELETE(HTTP/1.1 - RFC 2616)- See Also:
-
TRACE
TRACE(HTTP/1.1 - RFC 2616)- See Also:
-
CONNECT
CONNECT(HTTP/1.1 - RFC 2616)- See Also:
-