Reputation: 85
I trying to use JournalArticle service and method get-article-content where are few parameters:
With groupId, articleId, languageId is clear. But I don't understand what to pass as themeDisplay ...
Upvotes: 0
Views: 2253
Reputation: 179
Try this:
ThemeDisplay themeDisplay = (ThemeDisplay) req.getAttribute(WebKeys.THEME_DISPLAY);
Upvotes: 0