001
014
015 package com.liferay.portlet.asset.service.persistence;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
020 import com.liferay.portal.kernel.util.ReferenceRegistry;
021
022
025 @ProviderType
026 public class AssetVocabularyFinderUtil {
027 public static int countByG_N(long groupId, java.lang.String name)
028 throws com.liferay.portal.kernel.exception.SystemException {
029 return getFinder().countByG_N(groupId, name);
030 }
031
032 public static int filterCountByG_N(long groupId, java.lang.String name)
033 throws com.liferay.portal.kernel.exception.SystemException {
034 return getFinder().filterCountByG_N(groupId, name);
035 }
036
037 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_N(
038 long groupId, java.lang.String name, int start, int end,
039 com.liferay.portal.kernel.util.OrderByComparator obc)
040 throws com.liferay.portal.kernel.exception.SystemException {
041 return getFinder().filterFindByG_N(groupId, name, start, end, obc);
042 }
043
044 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_N(
045 long groupId, java.lang.String name, int start, int end,
046 com.liferay.portal.kernel.util.OrderByComparator obc)
047 throws com.liferay.portal.kernel.exception.SystemException {
048 return getFinder().findByG_N(groupId, name, start, end, obc);
049 }
050
051 public static AssetVocabularyFinder getFinder() {
052 if (_finder == null) {
053 _finder = (AssetVocabularyFinder)PortalBeanLocatorUtil.locate(AssetVocabularyFinder.class.getName());
054
055 ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
056 "_finder");
057 }
058
059 return _finder;
060 }
061
062 public void setFinder(AssetVocabularyFinder finder) {
063 _finder = finder;
064
065 ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
066 "_finder");
067 }
068
069 private static AssetVocabularyFinder _finder;
070 }