Class AuthState
java.lang.Object
org.apache.commons.httpclient.auth.AuthState
This class provides detailed information about the state of the
authentication process.
- Since:
- 3.0
- Author:
- Oleg Kalnichevski
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns theauthentication scheme.getRealm()Returns the authentication realm.voidInvalidates the authentication state by resetting its parameters.booleanTests whether authenication challenge has been responsed tobooleanTests whether authenication challenge has been receivedbooleanTests if preemptive authentication is used.voidsetAuthAttempted(boolean challengeResponded) Sets authentication attempt statusvoidsetAuthRequested(boolean challengeReceived) Sets authentication request statusvoidsetAuthScheme(AuthScheme authScheme) Assigns the givenauthentication scheme.voidPreemptively assigns Basic authentication scheme.toString()
-
Field Details
-
PREEMPTIVE_AUTH_SCHEME
- See Also:
-
-
Constructor Details
-
AuthState
public AuthState()Default constructor.
-
-
Method Details
-
invalidate
public void invalidate()Invalidates the authentication state by resetting its parameters. -
isAuthRequested
public boolean isAuthRequested()Tests whether authenication challenge has been received- Returns:
- true if authenication challenge has been received, false otherwise
-
setAuthRequested
public void setAuthRequested(boolean challengeReceived) Sets authentication request status- Parameters:
challengeReceived- true if authenication has been requested, false otherwise
-
isAuthAttempted
public boolean isAuthAttempted()Tests whether authenication challenge has been responsed to- Returns:
- true if authenication challenge has been responsed to, false otherwise
-
setAuthAttempted
public void setAuthAttempted(boolean challengeResponded) Sets authentication attempt status- Parameters:
challengeResponded- true if authenication has been attempted, false otherwise
-
setPreemptive
public void setPreemptive()Preemptively assigns Basic authentication scheme. -
isPreemptive
public boolean isPreemptive()Tests if preemptive authentication is used.- Returns:
- true if using the default Basic
authentication scheme, false otherwise.
-
setAuthScheme
Assigns the givenauthentication scheme.- Parameters:
authScheme- theauthentication scheme
-
getAuthScheme
-
getRealm
Returns the authentication realm.- Returns:
- the name of the authentication realm
-
toString
-