@Contract(threading=STATELESS) public class DefaultUserTokenHandler extends Object implements UserTokenHandler
UserTokenHandler
. This class will use
an instance of Principal
as a state object for HTTP connections,
if it can be obtained from the given execution context. This helps ensure
persistent connections created with a particular user identity within
a particular security context can be reused by the same user only.
DefaultUserTokenHandler will use the user principal of connection
based authentication schemes such as NTLM or that of the SSL session
with the client authentication turned on. If both are unavailable,
null
token will be returned.
Modifier and Type | Field and Description |
---|---|
static DefaultUserTokenHandler |
INSTANCE
Default instance of
DefaultUserTokenHandler . |
Constructor and Description |
---|
DefaultUserTokenHandler() |
Modifier and Type | Method and Description |
---|---|
Object |
getUserToken(HttpRoute route,
org.apache.hc.core5.http.protocol.HttpContext context)
The token object returned by this method is expected to uniquely
identify the current user if the context is user specific or to be
null if it is not. |
Object |
getUserToken(HttpRoute route,
org.apache.hc.core5.http.HttpRequest request,
org.apache.hc.core5.http.protocol.HttpContext context)
The token object returned by this method is expected to uniquely
identify the current user if the context is user specific or to be
null if it is not. |
public static final DefaultUserTokenHandler INSTANCE
DefaultUserTokenHandler
.public Object getUserToken(HttpRoute route, org.apache.hc.core5.http.protocol.HttpContext context)
UserTokenHandler
null
if it is not.getUserToken
in interface UserTokenHandler
route
- HTTP routecontext
- the execution contextnull
if the context is not user specific.public Object getUserToken(HttpRoute route, org.apache.hc.core5.http.HttpRequest request, org.apache.hc.core5.http.protocol.HttpContext context)
UserTokenHandler
null
if it is not.getUserToken
in interface UserTokenHandler
route
- HTTP routerequest
- HTTP requestcontext
- the execution contextnull
if the context is not user specific.Copyright © 1999–2021 The Apache Software Foundation. All rights reserved.