Class: DomoscioViz::AuthorizationToken::StaticStorage

Inherits:
Object
  • Object
show all
Defined in:
lib/domoscio_viz/authorization_token.rb

Instance Method Summary collapse

Instance Method Details

#getObject



21
22
23
# File 'lib/domoscio_viz/authorization_token.rb', line 21

def get
  @@token ||= nil
end

#store(token) ⇒ Object



25
26
27
# File 'lib/domoscio_viz/authorization_token.rb', line 25

def store(token)
  @@token = token
end