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 return getFinder().countByG_N(groupId, name);
029 }
030
031 public static int filterCountByG_N(long groupId, java.lang.String name) {
032 return getFinder().filterCountByG_N(groupId, name);
033 }
034
035 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> filterFindByG_N(
036 long groupId, java.lang.String name, int start, int end,
037 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetVocabulary> obc) {
038 return getFinder().filterFindByG_N(groupId, name, start, end, obc);
039 }
040
041 public static java.util.List<com.liferay.portlet.asset.model.AssetVocabulary> findByG_N(
042 long groupId, java.lang.String name, int start, int end,
043 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.asset.model.AssetVocabulary> obc) {
044 return getFinder().findByG_N(groupId, name, start, end, obc);
045 }
046
047 public static AssetVocabularyFinder getFinder() {
048 if (_finder == null) {
049 _finder = (AssetVocabularyFinder)PortalBeanLocatorUtil.locate(AssetVocabularyFinder.class.getName());
050
051 ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
052 "_finder");
053 }
054
055 return _finder;
056 }
057
058 public void setFinder(AssetVocabularyFinder finder) {
059 _finder = finder;
060
061 ReferenceRegistry.registerReference(AssetVocabularyFinderUtil.class,
062 "_finder");
063 }
064
065 private static AssetVocabularyFinder _finder;
066 }