Closed
Description
Ideally we should have a single ObjectMapper per Verifier/Creator instance since they are meant to be shared and there is no need to recreate them per request. However we are creating some additional mappers in some places that can be avoided and the alternatives are:
- store in a static var a Mapper (not something I'd like)
- make sure we have a single mapper per Verifier/Creator and pass it along to anyone that needs it
- same as the previous one but instead of passing the mapper we pass the Reader/Writer
So far the preferred option is #3 but we can start with #2 and then improve later with Writer/Reader
Related to #140