public final class

AuthPolicy

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

Class Overview

Standard authentication schemes supported by HttpClient.

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).
String SPNEGO SPNEGO/Kerberos Authentication scheme.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String BASIC

Also: HttpClient

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

Constant Value: "Basic"

public static final String DIGEST

Also: HttpClient

Digest authentication scheme as defined in RFC2617.

Constant Value: "Digest"

public static final String NTLM

Also: HttpClient

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

Constant Value: "NTLM"

public static final String SPNEGO

Also: HttpClient

SPNEGO/Kerberos Authentication scheme.

Constant Value: "negotiate"