|
61 | 61 | * @author Sebastien Deleuze
|
62 | 62 | * @author Brian Clozel
|
63 | 63 | * @author Juergen Hoeller
|
| 64 | + * @author Josh Long |
64 | 65 | * @since 3.0
|
65 | 66 | */
|
66 | 67 | public class HttpHeaders implements MultiValueMap<String, String>, Serializable {
|
@@ -94,42 +95,42 @@ public class HttpHeaders implements MultiValueMap<String, String>, Serializable
|
94 | 95 | public static final String ACCEPT_RANGES = "Accept-Ranges";
|
95 | 96 | /**
|
96 | 97 | * The CORS {@code Access-Control-Allow-Credentials} response header field name.
|
97 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 98 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
98 | 99 | */
|
99 | 100 | public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
|
100 | 101 | /**
|
101 | 102 | * The CORS {@code Access-Control-Allow-Headers} response header field name.
|
102 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 103 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
103 | 104 | */
|
104 | 105 | public static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
|
105 | 106 | /**
|
106 | 107 | * The CORS {@code Access-Control-Allow-Methods} response header field name.
|
107 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 108 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
108 | 109 | */
|
109 | 110 | public static final String ACCESS_CONTROL_ALLOW_METHODS = "Access-Control-Allow-Methods";
|
110 | 111 | /**
|
111 | 112 | * The CORS {@code Access-Control-Allow-Origin} response header field name.
|
112 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 113 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
113 | 114 | */
|
114 | 115 | public static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin";
|
115 | 116 | /**
|
116 | 117 | * The CORS {@code Access-Control-Expose-Headers} response header field name.
|
117 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 118 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
118 | 119 | */
|
119 | 120 | public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
|
120 | 121 | /**
|
121 | 122 | * The CORS {@code Access-Control-Max-Age} response header field name.
|
122 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 123 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
123 | 124 | */
|
124 | 125 | public static final String ACCESS_CONTROL_MAX_AGE = "Access-Control-Max-Age";
|
125 | 126 | /**
|
126 | 127 | * The CORS {@code Access-Control-Request-Headers} request header field name.
|
127 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 128 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
128 | 129 | */
|
129 | 130 | public static final String ACCESS_CONTROL_REQUEST_HEADERS = "Access-Control-Request-Headers";
|
130 | 131 | /**
|
131 | 132 | * The CORS {@code Access-Control-Request-Method} request header field name.
|
132 |
| - * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommandation</a> |
| 133 | + * @see <a href="http://www.w3.org/TR/cors/">CORS W3C recommendation</a> |
133 | 134 | */
|
134 | 135 | public static final String ACCESS_CONTROL_REQUEST_METHOD = "Access-Control-Request-Method";
|
135 | 136 | /**
|
|
0 commit comments