Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Latest commit

 

History

History
20 lines (17 loc) · 645 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 645 Bytes

Jackson module to support JSON serializtion and deserializtion of Yandex Bolts collection types.

Usage

Maven dependency

<dependency>
  <groupId>ru.yandex</groupId>
  <artifactId>jackson-datatype-bolts</artifactId>
  <version>0.1</version>
</dependency>

Registering module

Like all standard Jackson modules (libraries that implement Module interface), registration is done as follows:

ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(new BoltsModule());

after which functionality is available for all normal Jackson operations.