public final class

AuthPolicy

extends Object
java.lang.Object
   ↳org.apache.http.client.params.AuthPolicy

Summary

Constants
StringBASICBasic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
StringDIGESTDigest authentication scheme as defined in RFC2617.
StringNTLMThe NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String BASIC

Since: API Level 1

Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)

Constant Value: "Basic"

public static final String DIGEST

Since: API Level 1

Digest authentication scheme as defined in RFC2617.

Constant Value: "Digest"

public static final String NTLM

Since: API Level 1

The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).

Constant Value: "NTLM"