class Google::Auth::TokenStore

purposes to illustrate the API contract.
implementations inherit from this class. It is provided for documentation
Interface definition for token stores. It is not required that

def delete _id

Parameters:
  • id (String) --
def delete _id
  raise NoMethodError, "delete not implemented"
end

def load _id

Returns:
  • (String) -

Parameters:
  • id (String) --
def load _id
  raise NoMethodError, "load not implemented"
end

def store _id, _token

Parameters:
  • token (String) --
  • id (String) --
def store _id, _token
  raise NoMethodError, "store not implemented"
end