class Amorail::StoreAdapters::AbstractStoreAdapter

Public Instance Methods

access_expired?(_key) click to toggle source
# File lib/amorail/store_adapters/abstract_store_adapter.rb, line 18
def access_expired?(_key)
  raise NotImplementedError
end
fetch_access(_secret) click to toggle source
# File lib/amorail/store_adapters/abstract_store_adapter.rb, line 6
def fetch_access(_secret)
  raise NotImplementedError
end
persist_access(_secret, _token, _refresh_token, _expiration) click to toggle source
# File lib/amorail/store_adapters/abstract_store_adapter.rb, line 10
def persist_access(_secret, _token, _refresh_token, _expiration)
  raise NotImplementedError
end
update_refresh(_secret, _token, _refresh_token, _expiration) click to toggle source
# File lib/amorail/store_adapters/abstract_store_adapter.rb, line 14
def update_refresh(_secret, _token, _refresh_token, _expiration)
  raise NotImplementedError
end