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