Class: StatelyDB::Common::Auth::TokenProvider

Inherits:
Object
  • Object
show all
Defined in:
lib/common/auth/token_provider.rb

Overview

TokenProvider is an abstract base class that should be extended for individual token provider implementations

Direct Known Subclasses

Auth0TokenProvider

Instance Method Summary collapse

Instance Method Details

#access_tokenString

Get the current access token

Returns:

  • (String)

    The current access token



12
13
14
# File 'lib/common/auth/token_provider.rb', line 12

def access_token
  raise "Not Implemented"
end