Example usage for com.liferay.portal.kernel.model PortletPreferencesIds getPlid

List of usage examples for com.liferay.portal.kernel.model PortletPreferencesIds getPlid

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.model PortletPreferencesIds getPlid.

Prototype

public long getPlid() 

Source Link

Usage

From source file:com.liferay.asset.publisher.web.util.AssetPublisherUtil.java

License:Open Source License

public static long getSubscriptionClassPK(long ownerId, int ownerType, long plid, String portletId)
        throws PortalException {

    if (plid != LayoutConstants.DEFAULT_PLID) {
        Layout layout = _layoutLocalService.fetchLayout(plid);

        if (layout != null) {
            long userId = 0;

            if (PortletIdCodec.hasUserId(portletId)) {
                userId = PortletIdCodec.decodeUserId(portletId);
            }//  ww w . j  a v  a  2 s .  c o  m

            PortletPreferencesIds portletPreferencesIds = _portletPreferencesFactory
                    .getPortletPreferencesIds(layout.getGroupId(), userId, layout, portletId, false);

            ownerId = portletPreferencesIds.getOwnerId();
            ownerType = portletPreferencesIds.getOwnerType();
            plid = portletPreferencesIds.getPlid();
            portletId = portletPreferencesIds.getPortletId();
        }
    }

    if (PortletIdCodec.hasUserId(portletId)) {
        ownerId = PortletIdCodec.decodeUserId(portletId);
        ownerType = PortletKeys.PREFS_OWNER_TYPE_USER;
    }

    com.liferay.portal.kernel.model.PortletPreferences portletPreferencesModel = _portletPreferencesLocalService
            .getPortletPreferences(ownerId, ownerType, plid, portletId);

    return portletPreferencesModel.getPortletPreferencesId();
}