Class AuthState
- java.lang.Object
-
- org.apache.commons.httpclient.auth.AuthState
-
@Deprecated public class AuthState extends java.lang.ObjectDeprecated.Jakarta Commons HttpClient 3.x is deprecated in the Jenkins project. It is not recommended to use it in any new code. Instead, use HTTP client API plugins as a dependency in your code. E.g. Apache HttpComponents Client API 4.x Plugin or Async HTTP Client Plugin.This class provides detailed information about the state of the authentication process.- Since:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPREEMPTIVE_AUTH_SCHEMEDeprecated.
-
Constructor Summary
Constructors Constructor Description AuthState()Deprecated.Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AuthSchemegetAuthScheme()Deprecated.Returns theauthentication scheme.java.lang.StringgetRealm()Deprecated.Returns the authentication realm.voidinvalidate()Deprecated.Invalidates the authentication state by resetting its parameters.booleanisAuthAttempted()Deprecated.Tests whether authenication challenge has been responsed tobooleanisAuthRequested()Deprecated.Tests whether authenication challenge has been receivedbooleanisPreemptive()Deprecated.Tests if preemptive authentication is used.voidsetAuthAttempted(boolean challengeResponded)Deprecated.Sets authentication attempt statusvoidsetAuthRequested(boolean challengeReceived)Deprecated.Sets authentication request statusvoidsetAuthScheme(AuthScheme authScheme)Deprecated.Assigns the givenauthentication scheme.voidsetPreemptive()Deprecated.Preemptively assigns Basic authentication scheme.java.lang.StringtoString()Deprecated.
-
-
-
Field Detail
-
PREEMPTIVE_AUTH_SCHEME
public static final java.lang.String PREEMPTIVE_AUTH_SCHEME
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
invalidate
public void invalidate()
Deprecated.Invalidates the authentication state by resetting its parameters.
-
isAuthRequested
public boolean isAuthRequested()
Deprecated.Tests whether authenication challenge has been received- Returns:
- true if authenication challenge has been received, false otherwise
-
setAuthRequested
public void setAuthRequested(boolean challengeReceived)
Deprecated.Sets authentication request status- Parameters:
challengeReceived- true if authenication has been requested, false otherwise
-
isAuthAttempted
public boolean isAuthAttempted()
Deprecated.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)
Deprecated.Sets authentication attempt status- Parameters:
challengeResponded- true if authenication has been attempted, false otherwise
-
setPreemptive
public void setPreemptive()
Deprecated.Preemptively assigns Basic authentication scheme.
-
isPreemptive
public boolean isPreemptive()
Deprecated.Tests if preemptive authentication is used.- Returns:
- true if using the default Basic
authentication scheme, false otherwise.
-
setAuthScheme
public void setAuthScheme(AuthScheme authScheme)
Deprecated.Assigns the givenauthentication scheme.- Parameters:
authScheme- theauthentication scheme
-
getAuthScheme
public AuthScheme getAuthScheme()
Deprecated.Returns theauthentication scheme.- Returns:
authentication scheme
-
getRealm
public java.lang.String getRealm()
Deprecated.Returns the authentication realm.- Returns:
- the name of the authentication realm
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-