class DomoscioViz::AuthorizationToken::Manager

Public Class Methods

get_token() click to toggle source
# File lib/domoscio_viz/authorization_token.rb, line 14
def get_token
  storage.get
end
storage() click to toggle source
# File lib/domoscio_viz/authorization_token.rb, line 6
def storage
  @@storage ||= FileStorage.new
end
storage=(storage) click to toggle source
# File lib/domoscio_viz/authorization_token.rb, line 10
def storage= (storage)
  @@storage = storage
end