+

Search Tips   |   Advanced Search

Set portlet preferences for portlet entities


We can set the portlet preferences for portlet entities.

To set the portlet preferences for a portlet entity...

  1. Obtain a modifiable instance of a portlet entity.

  2. Obtain the modifiable portlet preferences layer.

  3. Set the preferences using the appropriate methods of the ModifiablePortletPreferences interface.

Example - Setting portlet preferences on a portlet entity:

// 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");


Parent: Set portlet preferences
Related:
Set portlet preferences for portlet definitions