Module: WOWSQL::TokenStorage

Included in:
MemoryTokenStorage
Defined in:
lib/wowsql/auth.rb

Overview

Interface for persisting tokens.

Instance Method Summary collapse

Instance Method Details

#get_access_tokenObject

Raises:

  • (NotImplementedError)


38
39
40
# File 'lib/wowsql/auth.rb', line 38

def get_access_token
  raise NotImplementedError
end

#get_refresh_tokenObject

Raises:

  • (NotImplementedError)


46
47
48
# File 'lib/wowsql/auth.rb', line 46

def get_refresh_token
  raise NotImplementedError
end

#set_access_token(_token) ⇒ Object

Raises:

  • (NotImplementedError)


42
43
44
# File 'lib/wowsql/auth.rb', line 42

def set_access_token(_token)
  raise NotImplementedError
end

#set_refresh_token(_token) ⇒ Object

Raises:

  • (NotImplementedError)


50
51
52
# File 'lib/wowsql/auth.rb', line 50

def set_refresh_token(_token)
  raise NotImplementedError
end