Module: Ingenico::Connect::SDK::Logging::Obfuscation::ObfuscationCapable

Included in:
Client, Communicator, DefaultImpl::DefaultConnection
Defined in:
lib/ingenico/connect/sdk/logging/obfuscation/obfuscation_capable.rb

Overview

Abstract mixin module that allows specifying body and header obfuscators for an object.

Instance Method Summary collapse

Instance Method Details

#set_body_obfuscator(body_obfuscator) ⇒ Object

Sets the current body obfuscator to use.

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/ingenico/connect/sdk/logging/obfuscation/obfuscation_capable.rb', line 7

def set_body_obfuscator(body_obfuscator)
  raise NotImplementedError
end

#set_header_obfuscator(header_obfuscator) ⇒ Object

Sets the current header obfuscator to use.

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/ingenico/connect/sdk/logging/obfuscation/obfuscation_capable.rb', line 12

def set_header_obfuscator(header_obfuscator)
  raise NotImplementedError
end