1
14
15 package com.liferay.portlet.asset.service.persistence;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
25 public class AssetTagPropertyKeyFinderUtil {
26 public static int countByGroupId(long groupId)
27 throws com.liferay.portal.kernel.exception.SystemException {
28 return getFinder().countByGroupId(groupId);
29 }
30
31 public static java.lang.String[] findByGroupId(long groupId)
32 throws com.liferay.portal.kernel.exception.SystemException {
33 return getFinder().findByGroupId(groupId);
34 }
35
36 public static java.lang.String[] findByGroupId(long groupId, int start,
37 int end) throws com.liferay.portal.kernel.exception.SystemException {
38 return getFinder().findByGroupId(groupId, start, end);
39 }
40
41 public static AssetTagPropertyKeyFinder getFinder() {
42 if (_finder == null) {
43 _finder = (AssetTagPropertyKeyFinder)PortalBeanLocatorUtil.locate(AssetTagPropertyKeyFinder.class.getName());
44 }
45
46 return _finder;
47 }
48
49 public void setFinder(AssetTagPropertyKeyFinder finder) {
50 _finder = finder;
51 }
52
53 private static AssetTagPropertyKeyFinder _finder;
54 }