use of org.springframework.web.portlet.bind.annotation.ResourceMapping in project uPortal by Jasig.
the class GoogleAnalyticsConfigController method getData.
@ResourceMapping("getData")
public String getData(PortletRequest portletRequest, ModelMap model) throws IOException {
final PortletPreferences preferences = portletRequest.getPreferences();
final JsonNode config = this.portletPreferencesJsonDao.getJsonNode(preferences, CONFIG_PREF_NAME);
model.put("data", config);
return "jsonView";
}
Aggregations