class MangoPay::AuthorizationToken::StaticStorage

Public Instance Methods

get() click to toggle source
# File lib/mangopay/authorization_token.rb, line 43
def get
  @@token ||= nil
end
store(token) click to toggle source
# File lib/mangopay/authorization_token.rb, line 47
def store(token)
  @@token = token
end