From: Kai Moritz Date: Wed, 22 Jun 2016 08:34:46 +0000 (+0200) Subject: Moved all non-static methods in a separate class SimpleMapperService X-Git-Tag: simple-mapper-1.0.0~37 X-Git-Url: https://juplo.de/gitweb/?a=commitdiff_plain;h=e0c3340f5dc190522b8e54a2a2bfe3f02c8d1bfa;hp=e0c3340f5dc190522b8e54a2a2bfe3f02c8d1bfa;p=simple-mapper 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. ---