We're trying to build a custom REST backend using spring that returns ProviderEvaluation objects serialized to json.
The current ProviderEvaluation class makes it very hard to deserialize it using jackson, because it uses lombok Builder and does not expose an empty default constructor.
Would it be possible to add the Jacksonized lombok annotation, so deserialization of these instances is possible?
We're trying to build a custom REST backend using spring that returns ProviderEvaluation objects serialized to json.
The current
ProviderEvaluationclass makes it very hard to deserialize it using jackson, because it uses lombokBuilderand does not expose an empty default constructor.Would it be possible to add the Jacksonized lombok annotation, so deserialization of these instances is possible?