Return-Path: X-Original-To: apmail-hc-commits-archive@www.apache.org Delivered-To: apmail-hc-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EC332FFE4 for ; Fri, 14 Nov 2014 20:00:02 +0000 (UTC) Received: (qmail 82676 invoked by uid 500); 14 Nov 2014 20:00:02 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 82632 invoked by uid 500); 14 Nov 2014 20:00:02 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 82620 invoked by uid 99); 14 Nov 2014 20:00:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2014 20:00:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Nov 2014 20:00:01 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1CDCD23888D7 for ; Fri, 14 Nov 2014 19:59:41 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1639776 - /httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java Date: Fri, 14 Nov 2014 19:59:41 -0000 To: commits@hc.apache.org From: michaelo@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141114195941.1CDCD23888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: michaelo Date: Fri Nov 14 19:59:40 2014 New Revision: 1639776 URL: http://svn.apache.org/r1639776 Log: HTTPCLIENT-1568: Improve docs on AuthSchemes Modified: httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java Modified: httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java?rev=1639776&r1=1639775&r2=1639776&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java (original) +++ httpcomponents/httpclient/trunk/httpclient/src/main/java/org/apache/http/client/config/AuthSchemes.java Fri Nov 14 19:59:40 2014 @@ -38,30 +38,33 @@ import org.apache.http.annotation.Immuta public final class AuthSchemes { /** - * Basic authentication scheme as defined in RFC2617 (considered inherently - * insecure, but most widely supported) + * Basic authentication scheme as defined in RFC 2617 (considered inherently + * insecure, but most widely supported). */ public static final String BASIC = "Basic"; /** - * Digest authentication scheme as defined in RFC2617. + * Digest authentication scheme as defined in RFC 2617. */ public static final String DIGEST = "Digest"; /** - * The NTLM scheme is a proprietary Microsoft Windows Authentication - * protocol (considered to be the most secure among currently supported - * authentication schemes). + * The NTLM authentication scheme is a proprietary Microsoft Windows + * authentication protocol as defined in [MS-NLMP]. */ public static final String NTLM = "NTLM"; /** - * SPNEGO Authentication scheme. + * SPNEGO authentication scheme as defined in RFC 4559 and RFC 4178 + * (considered to be the most secure among currently supported + * authentication schemes if Kerberos is selected). */ public static final String SPNEGO = "Negotiate"; /** - * Kerberos Authentication scheme. + * Kerberos authentication scheme as defined in RFC 4120 + * (considered to be the most secure among currently supported + * authentication schemes). */ public static final String KERBEROS = "Kerberos";