Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

UserTokenHandler

org.apache.http.client.UserTokenHandler
Known Indirect Subclasses

Class Overview

A handler for determining if the given execution context is user specific or not. The token object returned by this handler is expected to uniquely identify the current user if the context is user specific or to be null if the context does not contain any resources or details specific to the current user.

The user token will be used to ensure that user specific resouces will not shared with or reused by other users.

Summary

Public Methods
abstract Object getUserToken ( 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 Methods

public abstract Object getUserToken ( HttpContext context)

Added in API level 1

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.

Parameters
context the execution context
Returns
  • user token that uniquely identifies the user or null if the context is not user specific.