Jackson module to support JSON serializtion and deserializtion of Yandex Bolts collection types.
<dependency>
<groupId>ru.yandex</groupId>
<artifactId>jackson-datatype-bolts</artifactId>
<version>0.1</version>
</dependency>
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.