001
014
015 package com.liferay.portal.service.persistence;
016
017
020 public interface PortletPreferencesFinder {
021 public long countByO_O_P(long ownerId, int ownerType,
022 java.lang.String portletId, boolean excludeDefaultPreferences)
023 throws com.liferay.portal.kernel.exception.SystemException;
024
025 public long countByC_G_O_O_P_P_P(long companyId, long groupId,
026 long ownerId, int ownerType, long plid, java.lang.String portletId,
027 boolean privateLayout, boolean excludeDefaultPreferences)
028 throws com.liferay.portal.kernel.exception.SystemException;
029
030 public java.util.List<com.liferay.portal.model.PortletPreferences> findByPortletId(
031 java.lang.String portletId)
032 throws com.liferay.portal.kernel.exception.SystemException;
033
034 public java.util.List<com.liferay.portal.model.PortletPreferences> findByC_G_O_O_P_P(
035 long companyId, long groupId, long ownerId, int ownerType,
036 java.lang.String portletId, boolean privateLayout)
037 throws com.liferay.portal.kernel.exception.SystemException;
038 }