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

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

Introduction

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

Prototype

public String getPortletId() 

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);
            }//from ww w.  ja va2s.  c  om

            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();
}