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