Class: MangoPay::AuthorizationToken::StaticStorage

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

Instance Method Summary collapse

Instance Method Details

#getObject



43
44
45
# File 'lib/mangopay/authorization_token.rb', line 43

def get
  @@token ||= nil
end

#store(token) ⇒ Object



47
48
49
# File 'lib/mangopay/authorization_token.rb', line 47

def store(token)
  @@token = token
end