|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.httpclient.auth.AuthState
public class AuthState
This class provides detailed information about the state of the authentication process.
Field Summary | |
---|---|
static String |
PREEMPTIVE_AUTH_SCHEME
|
Constructor Summary | |
---|---|
AuthState()
Default constructor. |
Method Summary | |
---|---|
AuthScheme |
getAuthScheme()
Returns the authentication scheme . |
String |
getRealm()
Returns the authentication realm. |
void |
invalidate()
Invalidates the authentication state by resetting its parameters. |
boolean |
isAuthAttempted()
Tests whether authenication challenge has been responsed to |
boolean |
isAuthRequested()
Tests whether authenication challenge has been received |
boolean |
isPreemptive()
Tests if preemptive authentication is used. |
void |
setAuthAttempted(boolean challengeResponded)
Sets authentication attempt status |
void |
setAuthRequested(boolean challengeReceived)
Sets authentication request status |
void |
setAuthScheme(AuthScheme authScheme)
Assigns the given authentication scheme . |
void |
setPreemptive()
Preemptively assigns Basic authentication scheme. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final String PREEMPTIVE_AUTH_SCHEME
Constructor Detail |
---|
public AuthState()
Method Detail |
---|
public void invalidate()
public boolean isAuthRequested()
public void setAuthRequested(boolean challengeReceived)
challengeReceived
- true if authenication has been requested,
false otherwisepublic boolean isAuthAttempted()
public void setAuthAttempted(boolean challengeResponded)
challengeResponded
- true if authenication has been attempted,
false otherwisepublic void setPreemptive()
public boolean isPreemptive()
authentication scheme
, false otherwise.public void setAuthScheme(AuthScheme authScheme)
authentication scheme
.
authScheme
- the authentication scheme
public AuthScheme getAuthScheme()
authentication scheme
.
authentication scheme
public String getRealm()
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |