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 'Not implemented'
end

def load(_id)

Returns:
  • (String) -

Parameters:
  • id (String) --
def load(_id)
  raise 'Not implemented'
end

def store(_id, _token)

Parameters:
  • token (String) --
  • id (String) --
def store(_id, _token)
  raise 'Not implemented'
end