001
014
015 package com.liferay.portlet.asset.service.persistence;
016
017 import aQute.bnd.annotation.ProviderType;
018
019
022 @ProviderType
023 public interface AssetVocabularyFinder {
024 public int countByG_N(long groupId, java.lang.String name)
025 throws com.liferay.portal.kernel.exception.SystemException;
026
027 public int filterCountByG_N(long groupId, java.lang.String name)
028 throws com.liferay.portal.kernel.exception.SystemException;
029
030 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_N(
031 long groupId, java.lang.String name, int start, int end,
032 com.liferay.portal.kernel.util.OrderByComparator obc)
033 throws com.liferay.portal.kernel.exception.SystemException;
034
035 public java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_N(
036 long groupId, java.lang.String name, int start, int end,
037 com.liferay.portal.kernel.util.OrderByComparator obc)
038 throws com.liferay.portal.kernel.exception.SystemException;
039 }