to top
Android APIs
public final class

AuthPolicy

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

Summary

Constants
String BASIC Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
String DIGEST Digest authentication scheme as defined in RFC2617.
String NTLM The 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

Added in 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

Added in API level 1

Digest authentication scheme as defined in RFC2617.

Constant Value: "Digest"

public static final String NTLM

Added in 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"