@NotThreadSafe public class BasicScheme extends RFC2617Scheme
challengeState| Constructor and Description |
|---|
BasicScheme() |
BasicScheme(ChallengeState challengeState)
Deprecated.
(4.3) do not use.
|
BasicScheme(java.nio.charset.Charset credentialsCharset) |
| 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,
java.lang.String charset,
boolean proxy)
Deprecated.
|
java.lang.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.
|
java.lang.String |
toString() |
getCredentialsCharset, getCredentialsCharset, getParameter, getParameters, getRealm, parseChallengegetChallengeState, isProxypublic BasicScheme(java.nio.charset.Charset credentialsCharset)
@Deprecated public BasicScheme(ChallengeState challengeState)
BasicScheme with the given challenge
state.public BasicScheme()
public java.lang.String getSchemeName()
basicpublic void processChallenge(Header header) throws MalformedChallengeException
processChallenge in interface AuthSchemeprocessChallenge in class AuthSchemeBaseheader - the challenge headerMalformedChallengeException - is thrown if the authentication challenge
is malformedpublic boolean isComplete()
true if Basic authorization has been processed,
false otherwise.public boolean isConnectionBased()
false. Basic authentication scheme is request based.false.@Deprecated public Header authenticate(Credentials credentials, HttpRequest request) throws AuthenticationException
ContextAwareAuthScheme.authenticate(
Credentials, HttpRequest, org.apache.http.protocol.HttpContext)AuthSchemeCredentials.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 ContextAwareAuthSchemeauthenticate in class AuthSchemeBasecredentials - 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 failure@Deprecated public static Header authenticate(Credentials credentials, java.lang.String charset, boolean proxy)
authenticate(Credentials, HttpRequest, HttpContext).Authorization header value for the given
Credentials and charset.credentials - The credentials to encode.charset - The charset to use for encoding the credentialspublic java.lang.String toString()
toString in class AuthSchemeBase