Class License uses getter look alike methods that fail JSON deserialization
The following methods cause failure when trying to deserialize a License object from JSON:
- public String getFeatureNames()
- public String getQtyRendered()
- public String getUtcDateFormattedValidityPeriod()
- public String getUtcDateFormattedValidFrom()
- public String getUtcDateFormattedValidUntil()
Proposed improvment is to add a Jackson @JsonIgnore annotation as these getter look alikes do not map to an instance field.