Class AuthPolicy
java.lang.Object
org.apache.commons.httpclient.auth.AuthPolicy
Authentication policy class. The Authentication policy provides corresponding
authentication scheme interfrace for a given type of authorization challenge.
The following specifications are provided:
- Basic: Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)
- Digest: Digest authentication scheme as defined in RFC2617
- NTLM: The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes)
- Since:
- 3.0
- Version:
- $Revision: 480424 $
- Author:
- Oleg Kalnichevski
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe key used to look up the list of IDs of supportedauthentication schemesin their order of preference.static final StringBasic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)static final StringDigest authentication scheme as defined in RFC2617.protected static final org.apache.commons.logging.LogLog object.static final StringThe NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes). -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic AuthSchemegetAuthScheme(String id) Gets theauthentication schemewith the given ID.static ListReturns a list containing all registeredauthentication schemesin their default order.static voidregisterAuthScheme(String id, Class clazz) Registers a class implementing anauthentication schemewith the given identifier.static voidUnregisters the class implementing anauthentication schemewith the given ID.
-
Field Details
-
AUTH_SCHEME_PRIORITY
The key used to look up the list of IDs of supportedauthentication schemesin their order of preference. The scheme IDs are stored in aCollectionasStrings.If several schemes are returned in the WWW-Authenticate or Proxy-Authenticate header, this parameter defines which
authentication schemestakes precedence over others. The first item in the collection represents the most preferredauthentication scheme, the last item represents the ID of the least preferred one.- See Also:
-
NTLM
The NTLM scheme is a proprietary Microsoft Windows Authentication protocol (considered to be the most secure among currently supported authentication schemes).- See Also:
-
DIGEST
-
BASIC
Basic authentication scheme as defined in RFC2617 (considered inherently insecure, but most widely supported)- See Also:
-
LOG
protected static final org.apache.commons.logging.Log LOGLog object.
-
-
Constructor Details
-
AuthPolicy
public AuthPolicy()
-
-
Method Details
-
registerAuthScheme
Registers a class implementing anauthentication schemewith the given identifier. If a class with the given ID already exists it will be overridden. This ID is the same one used to retrieve theauthentication schemefromgetAuthScheme(String).Please note that custom authentication preferences, if used, need to be updated accordingly for the new
authentication schemeto take effect.- Parameters:
id- the identifier for this schemeclazz- the class to register- See Also:
-
unregisterAuthScheme
Unregisters the class implementing anauthentication schemewith the given ID.- Parameters:
id- the ID of the class to unregister
-
getAuthScheme
Gets theauthentication schemewith the given ID.- Parameters:
id- theauthentication schemeID- Returns:
authentication scheme- Throws:
IllegalStateException- if a scheme with the ID cannot be found
-
getDefaultAuthPrefs
Returns a list containing all registeredauthentication schemesin their default order.- Returns:
authentication scheme
-