module OffsitePayments::Integrations::AuthorizeNetSim

Public Class Methods

notification(post) click to toggle source
# File lib/offsite_payments/integrations/authorize_net_sim.rb, line 24
def self.notification(post)
  Notification.new(post)
end
return(query_string) click to toggle source
# File lib/offsite_payments/integrations/authorize_net_sim.rb, line 28
def self.return(query_string)
  Return.new(query_string)
end
service_url() click to toggle source
# File lib/offsite_payments/integrations/authorize_net_sim.rb, line 12
def self.service_url
  mode = OffsitePayments.mode
  case mode
  when :production
    self.production_url
  when :test
    self.test_url
  else
    raise StandardError, "Integration mode set to an invalid value: #{mode}"
  end
end