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