We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add the ability to create a mixin that contains something like this on a property to disable:
@JsonAnySetter(false) @JsonAnyGetter(false)
See more details here: https://groups.google.com/forum/#!topic/jackson-user/KtuvowkEJf0
The text was updated successfully, but these errors were encountered:
@JsonIgnore
@JsonAnyGetter
@JsonAnySetter
enabled
As per FasterXML/jackson-annotations#109 I added support for:
@JsonAnyGetter(enabled=false) // if omitted, defaults to `true` @JsonAnySetter(enabled=false) // - "" -
use of which now allows disabling via mix-ins and sub-classes.
Sorry, something went wrong.
Implemented first part of #1376, allow disabling of "any getter"
6155a19
89662b1
No branches or pull requests
Add the ability to create a mixin that contains something like this on a property to disable:
@JsonAnySetter(false)
@JsonAnyGetter(false)
See more details here:
https://groups.google.com/forum/#!topic/jackson-user/KtuvowkEJf0
The text was updated successfully, but these errors were encountered: