001
014
015 package com.liferay.portal.service.persistence;
016
017
020 public interface LayoutFinder {
021 public java.util.List<com.liferay.portal.model.Layout> findByNoPermissions(
022 long roleId) throws com.liferay.portal.kernel.exception.SystemException;
023
024 public java.util.List<com.liferay.portal.model.Layout> findByNullFriendlyURL()
025 throws com.liferay.portal.kernel.exception.SystemException;
026
027 public java.util.List<com.liferay.portal.model.Layout> findByScopeGroup(
028 long groupId, boolean privateLayout)
029 throws com.liferay.portal.kernel.exception.SystemException;
030
031 public java.util.List<com.liferay.portal.model.LayoutReference> findByC_P_P(
032 long companyId, java.lang.String portletId,
033 java.lang.String preferencesKey, java.lang.String preferencesValue)
034 throws com.liferay.portal.kernel.exception.SystemException;
035 }