Fix Javadocs
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / util / http / HttpStatus.java
index 8fb109bd42fe08c9ec1ee68870c53956dcbadf32..11e0a3645be2a8100d6499d66584909c65c5734c 100644 (file)
@@ -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;