|  | Methods defined here: 
 __init__(self, scoped_tokens=None)
 add_token(self, token)Adds a new token to the store (replaces tokens with the same scope).
 Args:
 token: A subclass of http_interface.GenericToken. The token object is
 responsible for adding the Authorization header to the HTTP request.
 The scopes defined in the token are used to determine if the token
 is valid for a requested scope when find_token is called.
 
 Returns:
 True if the token was added, False if the token was not added becase
 no scopes were provided.
 find_token(self, url)Selects an Authorization header token which can be used for the URL.
 Args:
 url: str or atom.url.Url or a list containing the same.
 The URL which is going to be requested. All
 tokens are examined to see if any scopes begin match the beginning
 of the URL. The first match found is returned.
 
 Returns:
 The token object which should execute the HTTP request. If there was
 no token for the url (the url did not begin with any of the token
 scopes available), then the atom.http_interface.GenericToken will be
 returned because the GenericToken calls through to the http client
 without adding an Authorization header.
 remove_all_tokens(self)
 remove_token(self, token)Removes the token from the token_store.
 This method is used when a token is determined to be invalid. If the
 token was found by find_token, but resulted in a 401 or 403 error stating
 that the token was invlid, then the token should be removed to prevent
 future use.
 
 Returns:
 True if a token was found and then removed from the token
 store. False if the token was not in the TokenStore.
 Data descriptors defined here:
 
 __dict__dictionary for instance variables (if defined)
 __weakref__list of weak references to the object (if defined)
 |