Checklist
Describe the problem you'd like to have solved
I would like to use my custom ObjectMapper with the JWTParser.
I'm using kotlin and the default ObjectMapper is not equipped with the jackson kotlin module.
I see there is a constructor JWTParser(ObjecMapper objectmapper) but unfortunately its package private, so I have no possibility to use it.
Describe the ideal solution
Make the JWTParser(ObjecMapper objectmapper) constructor protected/public
Alternatives and current workarounds
As a current workaround I'm working with @JsonProperty annotations on my POJOs to make it work with the default ObjectMapper.
Additional context
No response
Checklist
Describe the problem you'd like to have solved
I would like to use my custom ObjectMapper with the JWTParser.
I'm using kotlin and the default ObjectMapper is not equipped with the jackson kotlin module.
I see there is a constructor
JWTParser(ObjecMapper objectmapper)but unfortunately its package private, so I have no possibility to use it.Describe the ideal solution
Make the
JWTParser(ObjecMapper objectmapper)constructor protected/publicAlternatives and current workarounds
As a current workaround I'm working with
@JsonPropertyannotations on my POJOs to make it work with the default ObjectMapper.Additional context
No response