@@ -37,25 +37,25 @@ public final class HttpMethod implements Comparable<HttpMethod>, Serializable {
37
37
38
38
/**
39
39
* The HTTP method {@code GET}.
40
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.1">RFC 9110 , section 9.3.1 </a>
40
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.3">HTTP 1.1 , section 9.3</a>
41
41
*/
42
42
public static final HttpMethod GET = new HttpMethod ("GET" );
43
43
44
44
/**
45
45
* The HTTP method {@code HEAD}.
46
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.2">RFC 9110 , section 9.3.2 </a>
46
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.4">HTTP 1.1 , section 9.4 </a>
47
47
*/
48
48
public static final HttpMethod HEAD = new HttpMethod ("HEAD" );
49
49
50
50
/**
51
51
* The HTTP method {@code POST}.
52
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.3">RFC 9110 , section 9.3.3 </a>
52
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.5">HTTP 1.1 , section 9.5 </a>
53
53
*/
54
54
public static final HttpMethod POST = new HttpMethod ("POST" );
55
55
56
56
/**
57
57
* The HTTP method {@code PUT}.
58
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.4">RFC 9110 , section 9.3.4 </a>
58
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.6">HTTP 1.1 , section 9.6 </a>
59
59
*/
60
60
public static final HttpMethod PUT = new HttpMethod ("PUT" );
61
61
@@ -67,7 +67,7 @@ public final class HttpMethod implements Comparable<HttpMethod>, Serializable {
67
67
68
68
/**
69
69
* The HTTP method {@code DELETE}.
70
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.5">RFC 9110 , section 9.3.5 </a>
70
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.7">HTTP 1.1 , section 9.7 </a>
71
71
*/
72
72
public static final HttpMethod DELETE = new HttpMethod ("DELETE" );
73
73
@@ -79,13 +79,13 @@ public final class HttpMethod implements Comparable<HttpMethod>, Serializable {
79
79
80
80
/**
81
81
* The HTTP method {@code OPTIONS}.
82
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3.7">RFC 9110 , section 9.3.7 </a>
82
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9.2">HTTP 1.1 , section 9.2 </a>
83
83
*/
84
84
public static final HttpMethod OPTIONS = new HttpMethod ("OPTIONS" );
85
85
86
86
/**
87
87
* The HTTP method {@code TRACE}.
88
- * @see <a href="https://www.rfc-editor .org/rfc/rfc9110 .html#section-9.3. 8">RFC 9110 , section 9.3 .8</a>
88
+ * @see <a href="https://www.w3 .org/Protocols/rfc2616/rfc2616-sec9 .html#sec9. 8">HTTP 1.1 , section 9.8</a>
89
89
*/
90
90
public static final HttpMethod TRACE = new HttpMethod ("TRACE" );
91
91
0 commit comments