Skip to main content

Integration Domain

The Integration Domain is the layer that knows how to move data to and from the outside world. It is client-aware, dynamically configurable at runtime, and credential-safe.

Why a Separate Domain?​

The existing pipeline knows how to transform data. It does not know which bank's SFTP server to pull from, which Kafka cluster a client is subscribed to, or what OAuth token to use for a REST webhook. That knowledge belongs here β€” the Integration Domain.

Core Concepts​

ConceptWhat it is
ClientA tenant β€” a bank, insurer, or partner that uses the platform
ClientIntegrationOne configured integration for one client (e.g., "Bank A outbound SFTP")
IntegrationConnectorThe live, authenticated connection object held in memory
IntegrationRegistryThe in-memory map of all active connectors, hot-reloaded on change
CredentialStoreEncrypted storage for passwords, keys, tokens β€” never in plain text
IntegrationDirectionINBOUND (we pull/receive), OUTBOUND (we push/send), BIDIRECTIONAL