org.apache.http.client.params
Class AuthPolicy

java.lang.Object
  extended by org.apache.http.client.params.AuthPolicy

@Immutable
public final class AuthPolicy
extends java.lang.Object

Standard authentication schemes supported by HttpClient.

Since:
4.0

Field Summary
static java.lang.String BASIC
          Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
static java.lang.String DIGEST
          Digest authentication scheme as defined in RFC2617.
static java.lang.String NTLM
          The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NTLM

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

See Also:
Constant Field Values

DIGEST

public static final java.lang.String DIGEST
Digest authentication scheme as defined in RFC2617.

See Also:
Constant Field Values

BASIC

public static final java.lang.String BASIC
Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)

See Also:
Constant Field Values


Copyright © 1999-2011 Apache Software Foundation. All Rights Reserved.