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
@ExtraField will typically need to access data from the object being populated.
For example
@ExtraField("recommendedAlbums") public List<Album> getRecommendedAlbums() { return someService.getRecommendedAbumsFor(USER_ID); }
or
@ExtraField("total") public int getTotal() { return ONE_PART + ANOTHER_PART; }
I don't see how to get these fields from within the populator.
The text was updated successfully, but these errors were encountered:
cepage
No branches or pull requests
@ExtraField will typically need to access data from the object being populated.
For example
or
I don't see how to get these fields from within the populator.
The text was updated successfully, but these errors were encountered: