Method: AdCenterWrapper::INotificationService#initialize

Defined in:
lib/NotificationServiceDriver.rb

#initialize(endpoint_url = nil) ⇒ INotificationService

Returns a new instance of INotificationService.



29
30
31
32
33
34
35
# File 'lib/NotificationServiceDriver.rb', line 29

def initialize(endpoint_url = nil)
  endpoint_url ||= DefaultEndpointUrl
  super(endpoint_url, nil)
  self.mapping_registry = NotificationServiceMappingRegistry::EncodedRegistry
  self.literal_mapping_registry = NotificationServiceMappingRegistry::LiteralRegistry
  init_methods
end