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 countByO_O_P_P_P(long ownerId, int ownerType, long plid,
026 java.lang.String portletId, boolean excludeDefaultPreferences)
027 throws com.liferay.portal.kernel.exception.SystemException;
028
029 public java.util.List<com.liferay.portal.model.PortletPreferences> findByPortletId(
030 java.lang.String portletId)
031 throws com.liferay.portal.kernel.exception.SystemException;
032
033 public java.util.List<com.liferay.portal.model.PortletPreferences> findByC_G_O_O_P_P(
034 long companyId, long groupId, long ownerId, int ownerType,
035 java.lang.String portletId, boolean privateLayout)
036 throws com.liferay.portal.kernel.exception.SystemException;
037 }