001
014
015 package com.liferay.portal.service.persistence;
016
017
020 public interface ResourceFinder {
021 public java.util.List<com.liferay.portal.model.Resource> findByName(
022 java.lang.String name)
023 throws com.liferay.portal.kernel.exception.SystemException;
024
025 public java.util.List<com.liferay.portal.model.Resource> findByC_P(
026 long companyId, java.lang.String primKey)
027 throws com.liferay.portal.kernel.exception.SystemException;
028
029 public java.util.List<com.liferay.portal.model.Resource> findByN_S(
030 java.lang.String name, int scope)
031 throws com.liferay.portal.kernel.exception.SystemException;
032 }