-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[2.x] ParamConverterProvider constructors are now protected to allow extensibility #5792
[2.x] ParamConverterProvider constructors are now protected to allow extensibility #5792
Conversation
e5dbbba
to
312b401
Compare
could you please make those constructors |
312b401
to
5784b64
Compare
@senivam I made them protected and I also added a protected no-op constructor to |
core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverters.java
Outdated
Show resolved
Hide resolved
5784b64
to
6021e7b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR addresses #5791 and opens back up constructors that were ?unintentionally? closed in #5349.
This allows users to decorate or extend the functionality of built-in providers without fully copy-pasting the implementations into user projects.