Uses of Class
org.apache.hc.client5.http.auth.AuthChallenge
-
Packages that use AuthChallenge Package Description org.apache.hc.client5.http Client component APIs common to all client transports such as connection route information and resolution as well as common HTTP method definitions and exception classes.org.apache.hc.client5.http.auth Client HTTP authentication APIs.org.apache.hc.client5.http.impl org.apache.hc.client5.http.impl.auth Standard and common HTTP authentication schemes. -
-
Uses of AuthChallenge in org.apache.hc.client5.http
Method parameters in org.apache.hc.client5.http with type arguments of type AuthChallenge Modifier and Type Method Description java.util.List<AuthScheme>
AuthenticationStrategy. select(ChallengeType challengeType, java.util.Map<java.lang.String,AuthChallenge> challenges, org.apache.hc.core5.http.protocol.HttpContext context)
Returns an list ofAuthScheme
s to handle the givenAuthChallenge
s in their order of preference. -
Uses of AuthChallenge in org.apache.hc.client5.http.auth
Methods in org.apache.hc.client5.http.auth with parameters of type AuthChallenge Modifier and Type Method Description void
AuthScheme. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
Processes the given auth challenge. -
Uses of AuthChallenge in org.apache.hc.client5.http.impl
Method parameters in org.apache.hc.client5.http.impl with type arguments of type AuthChallenge Modifier and Type Method Description java.util.List<AuthScheme>
DefaultAuthenticationStrategy. select(ChallengeType challengeType, java.util.Map<java.lang.String,AuthChallenge> challenges, org.apache.hc.core5.http.protocol.HttpContext context)
-
Uses of AuthChallenge in org.apache.hc.client5.http.impl.auth
Methods in org.apache.hc.client5.http.impl.auth that return types with arguments of type AuthChallenge Modifier and Type Method Description java.util.List<AuthChallenge>
AuthChallengeParser. parse(ChallengeType challengeType, java.lang.CharSequence buffer, org.apache.hc.core5.http.message.ParserCursor cursor)
Parses the given sequence of characters into a list ofAuthChallenge
elements.Methods in org.apache.hc.client5.http.impl.auth with parameters of type AuthChallenge Modifier and Type Method Description void
BasicScheme. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
void
BearerScheme. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
void
DigestScheme. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
void
GGSSchemeBase. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
Deprecated.void
NTLMScheme. processChallenge(AuthChallenge authChallenge, org.apache.hc.core5.http.protocol.HttpContext context)
Deprecated.
-