Home

Awesome

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.