Setting portlet preferences for portlet entities | HCL Digital Experience
You can set the portlet preferences for portlet entities.
About this task
To set the portlet preferences for a portlet entity, proceed by the following steps:
Procedure
- Obtain a modifiable instance of a portlet entity.
- Obtain the modifiable portlet preferences layer.
-
Set the preferences by using the appropriate methods of the
ModifiablePortletPreferences
interface.
Example
// obtain portlet model controller
final PortletModelController pmController = getPortletModelController(portletModel);
// obtain modifiable instance of a portlet entity
final Modifiable modifiable = pmController.getModifiableNode(portletEntity);
// obtain modifiable preferences layer
final ModifiablePortletPreferences preferences = ((ModifiablePortletEntity)
modifiable).getModifiablePortletPreferencesLayer();
// set a single value
preferences.setStringValue("name", "value");