Package org.apache.hc.client5.http.impl
Class NoopUserTokenHandler
- java.lang.Object
-
- org.apache.hc.client5.http.impl.NoopUserTokenHandler
-
- All Implemented Interfaces:
UserTokenHandler
@Contract(threading=STATELESS) public class NoopUserTokenHandler extends java.lang.Object implements UserTokenHandler
Noop implementation ofUserTokenHandlerthat always returnsnull.- Since:
- 4.3
-
-
Field Summary
Fields Modifier and Type Field Description static NoopUserTokenHandlerINSTANCE
-
Constructor Summary
Constructors Constructor Description NoopUserTokenHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetUserToken(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 benullif it is not.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.hc.client5.http.UserTokenHandler
getUserToken
-
-
-
-
Field Detail
-
INSTANCE
public static final NoopUserTokenHandler INSTANCE
-
-
Method Detail
-
getUserToken
public java.lang.Object getUserToken(HttpRoute route, org.apache.hc.core5.http.protocol.HttpContext context)
Description copied from interface:UserTokenHandlerThe token object returned by this method is expected to uniquely identify the current user if the context is user specific or to benullif it is not.- Specified by:
getUserTokenin interfaceUserTokenHandler- Parameters:
route- HTTP routecontext- the execution context- Returns:
- user token that uniquely identifies the user or
nullif the context is not user specific.
-
-