Moved all non-static methods in a separate class SimpleMapperService
authorKai Moritz <kai@juplo.de>
Wed, 22 Jun 2016 08:34:46 +0000 (10:34 +0200)
committerKai Moritz <kai@juplo.de>
Wed, 22 Jun 2016 08:34:46 +0000 (10:34 +0200)
commite0c3340f5dc190522b8e54a2a2bfe3f02c8d1bfa
tree6962389715392f6d64c4ba11cd1a27d8982bfb83
parentdfdc6b81bce02386de2b4f6497ef78f15263c05d
Moved all non-static methods in a separate class SimpleMapperService

The methods in SimpleMapper can be used static as they are, if the input is
presented in form of an instance of JsonParser.

An instance of SimpleMapperService can be configured, to use convenient
methods that take the input in several forms. The SimpleMapperService has
to be configured with an instance of JsonFactory, that is used internally,
to construct the JsonParser from the given input.
src/main/java/de/juplo/jackson/SimpleMapper.java
src/main/java/de/juplo/jackson/SimpleMapperService.java [new file with mode: 0644]