Java org.apache.http.auth AuthState fields, constructors, methods, implement or subclass

Example usage for Java org.apache.http.auth AuthState fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.http.auth AuthState.

The text is from its open source code.

Constructor

Method

QueuegetAuthOptions()
Returns available AuthOption s.
AuthSchemegetAuthScheme()
Returns actual AuthScheme .
AuthScopegetAuthScope()
Returns actual AuthScope if available
CredentialsgetCredentials()
Returns actual Credentials .
AuthProtocolStategetState()
booleanisValid()
voidreset()
Resets the auth state.
voidsetAuthScheme(final AuthScheme authScheme)
Assigns the given AuthScheme authentication scheme .
voidsetAuthScope(final AuthScope authScope)
Sets actual AuthScope .
voidsetCredentials(final Credentials credentials)
Sets user Credentials to be used for authentication
voidsetState(final AuthProtocolState state)
voidupdate(final AuthScheme authScheme, final Credentials credentials)
Updates the auth state with AuthScheme and Credentials .
voidupdate(final Queue authOptions)
Updates the auth state with a queue of AuthOption s.