X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.util%2Fsrc%2Forg%2Fargeo%2Futil%2Fhttp%2FHttpStatus.java;h=11e0a3645be2a8100d6499d66584909c65c5734c;hb=3c1cdc594d954520b14646102b366290bdad58c7;hp=8fb109bd42fe08c9ec1ee68870c53956dcbadf32;hpb=bbfad683e435f1989cb7ed4aa56a2fed52b64245;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.util/src/org/argeo/util/http/HttpStatus.java b/org.argeo.util/src/org/argeo/util/http/HttpStatus.java index 8fb109bd4..11e0a3645 100644 --- a/org.argeo.util/src/org/argeo/util/http/HttpStatus.java +++ b/org.argeo.util/src/org/argeo/util/http/HttpStatus.java @@ -3,7 +3,7 @@ package org.argeo.util.http; /** * Standard HTTP response status codes (including WebDav ones). * - * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status + * @see "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status" */ public enum HttpStatus { // Successful responses (200–299) @@ -38,7 +38,7 @@ public enum HttpStatus { /** * The status line, as defined by RFC2616. * - * @see https://www.rfc-editor.org/rfc/rfc2616#section-6.1 + * @see "https://www.rfc-editor.org/rfc/rfc2616#section-6.1" */ public String getStatusLine(String httpVersion) { return httpVersion + " " + code + " " + reasonPhrase;