Module: Worldline::Acquiring::SDK::Logging::Obfuscation::ObfuscationCapable

Included in:
Client, Communication::Connection, Communicator
Defined in:
lib/worldline/acquiring/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)


10
11
12
# File 'lib/worldline/acquiring/sdk/logging/obfuscation/obfuscation_capable.rb', line 10

def set_body_obfuscator(body_obfuscator)
  raise NotImplementedError
end

#set_header_obfuscator(header_obfuscator) ⇒ Object

Sets the current header obfuscator to use.

Raises:

  • (NotImplementedError)


15
16
17
# File 'lib/worldline/acquiring/sdk/logging/obfuscation/obfuscation_capable.rb', line 15

def set_header_obfuscator(header_obfuscator)
  raise NotImplementedError
end