Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-07-28 04:57:52 +0000
committerGreg Wilkins2014-07-28 04:58:03 +0000
commit5d289c0a7b5bbb80a58f1969bb28313c3db3fbc4 (patch)
treefd685f252ca915dfd71fbb4dfaf6c29edafc2bd0
parentb0d607a56d642a7792872d5936ba7fa87de6a1d6 (diff)
downloadorg.eclipse.jetty.project-5d289c0a7b5bbb80a58f1969bb28313c3db3fbc4.tar.gz
org.eclipse.jetty.project-5d289c0a7b5bbb80a58f1969bb28313c3db3fbc4.tar.xz
org.eclipse.jetty.project-5d289c0a7b5bbb80a58f1969bb28313c3db3fbc4.zip
RFC7238 Permanent Redirect 308 defined
-rw-r--r--jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java b/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java
index 7db1fa64ff..cf72cfe0da 100644
--- a/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java
+++ b/jetty-http/src/main/java/org/eclipse/jetty/http/HttpStatus.java
@@ -30,9 +30,9 @@ package org.eclipse.jetty.http;
* <th>Code</th>
* <th>Message</th>
* <th>
- * <a href="http://tools.ietf.org/html/rfc1945">RFC 1945 - HTTP/1.0</a></th>
+ * <a href="http://tools.ietf.org/html/rfc7231">RFC 7231 - HTTP/1.1 Semantics and Content</a></th>
* <th>
- * <a href="http://tools.ietf.org/html/rfc2616">RFC 2616 - HTTP/1.1</a></th>
+ * <a href="http://tools.ietf.org/html/rfc7238">RFC 7238 - HTTP/1.1 Permanent Redirect</a></th>
* <th>
* <a href="http://tools.ietf.org/html/rfc2518">RFC 2518 - WEBDAV</a></th>
* </tr>
@@ -633,6 +633,7 @@ public class HttpStatus
public final static int NOT_MODIFIED_304 = 304;
public final static int USE_PROXY_305 = 305;
public final static int TEMPORARY_REDIRECT_307 = 307;
+ public final static int PERMANENT_REDIRECT = 308;
public final static int BAD_REQUEST_400 = 400;
public final static int UNAUTHORIZED_401 = 401;
@@ -738,6 +739,8 @@ public class HttpStatus
USE_PROXY(USE_PROXY_305, "Use Proxy"),
/** <code>307 Temporary Redirect</code> */
TEMPORARY_REDIRECT(TEMPORARY_REDIRECT_307, "Temporary Redirect"),
+ /** <code>308 Permanent Redirect</code> */
+ PERMANET_REDIRECT(PERMANENT_REDIRECT, "Permanent Redirect"),
/*
* --------------------------------------------------------------------

Back to the top