@NotThreadSafe public class BasicScheme extends RFC2617Scheme
The following parameters can be used to customize the behavior of this class:
Constructor and Description |
---|
BasicScheme() |
BasicScheme(ChallengeState challengeState)
Creates an instance of BasicScheme with the given challenge
state.
|
Modifier and Type | Method and Description |
---|---|
Header |
authenticate(Credentials credentials,
HttpRequest request)
|
Header |
authenticate(Credentials credentials,
HttpRequest request,
HttpContext context)
Produces basic authorization header for the given set of
Credentials . |
static Header |
authenticate(Credentials credentials,
String charset,
boolean proxy)
Returns a basic Authorization header value for the given
Credentials and charset. |
String |
getSchemeName()
Returns textual designation of the basic authentication scheme.
|
boolean |
isComplete()
Tests if the Basic authentication process has been completed.
|
boolean |
isConnectionBased()
Returns false.
|
void |
processChallenge(Header header)
Processes the Basic challenge.
|
getParameter, getParameters, getRealm, parseChallenge
getChallengeState, isProxy, toString
public BasicScheme(ChallengeState challengeState)
public BasicScheme()
public String getSchemeName()
basic
public void processChallenge(Header header) throws MalformedChallengeException
processChallenge
in interface AuthScheme
processChallenge
in class AuthSchemeBase
header
- the challenge headerMalformedChallengeException
- is thrown if the authentication challenge
is malformedpublic boolean isComplete()
public boolean isConnectionBased()
@Deprecated public Header authenticate(Credentials credentials, HttpRequest request) throws AuthenticationException
ContextAwareAuthScheme.authenticate(Credentials, HttpRequest, org.apache.http.protocol.HttpContext)
AuthScheme
Credentials
.credentials
- The set of credentials to be used for athenticationrequest
- The request being authenticatedAuthenticationException
- if authorization string cannot
be generated due to an authentication failurepublic Header authenticate(Credentials credentials, HttpRequest request, HttpContext context) throws AuthenticationException
Credentials
.authenticate
in interface ContextAwareAuthScheme
authenticate
in class AuthSchemeBase
credentials
- The set of credentials to be used for authenticationrequest
- The request being authenticatedcontext
- HTTP contextInvalidCredentialsException
- if authentication credentials are not
valid or not applicable for this authentication schemeAuthenticationException
- if authorization string cannot
be generated due to an authentication failurepublic static Header authenticate(Credentials credentials, String charset, boolean proxy)
Credentials
and charset.credentials
- The credentials to encode.charset
- The charset to use for encoding the credentialsCopyright © 1999–2013 The Apache Software Foundation. All rights reserved.