001
014
015 package com.liferay.portal.service.persistence;
016
017
020 public interface ResourcePermissionFinder {
021 public int countByR_S(long roleId, int[] scopes)
022 throws com.liferay.portal.kernel.exception.SystemException;
023
024 public java.util.List<com.liferay.portal.model.ResourcePermission> findByR_S(
025 long roleId, int[] scopes, int start, int end)
026 throws com.liferay.portal.kernel.exception.SystemException;
027
028 public java.util.List<java.lang.String> findByC_N_S(long companyId,
029 java.lang.String name, int scope)
030 throws com.liferay.portal.kernel.exception.SystemException;
031 }