Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

JSON Content Mappers

Christian Kreutzfeldt edited this page May 3, 2016 · 4 revisions

The library provides mappers to convert JSON documents from and to different formats.

String-To-Json

The string-to-json mapper takes incoming strings which are assumed to hold a validly formatted JSON document and converts them into their object representation. This mapper is typically used after reading content from a Kafka source and before applying any further processing.

Json-To-String

The json-to-string mapper takes incoming JSON object and converts them into their string representation. This mapper is typically used before sending data to a Kafka sink.

Json-To-Byte-Array

The json-to-byte-array mapper takes incoming JSON object and converts them into their byte array representation.