module Ingenico::Connect::SDK::Webhooks::SecretKeyStore

An abstract store of secret keys. Implementation can store secret keys in a database, on disk, etc. Should be Thread-safe.

Public Instance Methods

get_secret_key(key_id) click to toggle source

Retrieve secret key for given key id

@param key_id [String] key id of the secret key @raise [Ingenico::Connect::SDK::Webhooks::SecretKeyNotAvailableException] if the secret key for the given key id is not available.

# File lib/ingenico/connect/sdk/webhooks/secret_key_store.rb, line 11
def get_secret_key(key_id)
  raise NotImplementedError
end