Java org.apache.http.client AuthenticationStrategy fields, constructors, methods, implement or subclass

Example usage for Java org.apache.http.client AuthenticationStrategy fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Implementation

org.apache.http.client.AuthenticationStrategy has the following implementations.
Click this link to see all its implementation.

Method

voidauthFailed(HttpHost authhost, AuthScheme authScheme, HttpContext context)
Callback invoked in case of unsuccessful authentication.
voidauthSucceeded(HttpHost authhost, AuthScheme authScheme, HttpContext context)
Callback invoked in case of successful authentication.
MapgetChallenges(HttpHost authhost, HttpResponse response, HttpContext context)
Extracts from the given HTTP response a collection of authentication challenges, each of which represents an authentication scheme supported by the authentication host.
booleanisAuthenticationRequested(HttpHost authhost, HttpResponse response, HttpContext context)
Determines if the given HTTP response response represents an authentication challenge that was sent back as a result of authentication failure.
Queueselect(Map challenges, HttpHost authhost, HttpResponse response, HttpContext context)
Selects one authentication challenge out of all available and creates and generates AuthOption instance capable of processing that challenge.