001
014
015 package com.liferay.portlet.bookmarks.service.persistence;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
023 public class BookmarksFolderFinderUtil {
024 public static int countF_E_ByG_F(long groupId, long folderId,
025 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
026 throws com.liferay.portal.kernel.exception.SystemException {
027 return getFinder().countF_E_ByG_F(groupId, folderId, queryDefinition);
028 }
029
030 public static int filterCountF_E_ByG_F(long groupId, long folderId,
031 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
032 throws com.liferay.portal.kernel.exception.SystemException {
033 return getFinder()
034 .filterCountF_E_ByG_F(groupId, folderId, queryDefinition);
035 }
036
037 public static java.util.List<java.lang.Object> filterFindBF_E_ByG_F(
038 long groupId, long folderId,
039 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
040 throws com.liferay.portal.kernel.exception.SystemException {
041 return getFinder()
042 .filterFindBF_E_ByG_F(groupId, folderId, queryDefinition);
043 }
044
045 public static java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> findByNoAssets()
046 throws com.liferay.portal.kernel.exception.SystemException {
047 return getFinder().findByNoAssets();
048 }
049
050 public static java.util.List<java.lang.Object> findF_E_ByG_F(long groupId,
051 long folderId,
052 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
053 throws com.liferay.portal.kernel.exception.SystemException {
054 return getFinder().findF_E_ByG_F(groupId, folderId, queryDefinition);
055 }
056
057 public static BookmarksFolderFinder getFinder() {
058 if (_finder == null) {
059 _finder = (BookmarksFolderFinder)PortalBeanLocatorUtil.locate(BookmarksFolderFinder.class.getName());
060
061 ReferenceRegistry.registerReference(BookmarksFolderFinderUtil.class,
062 "_finder");
063 }
064
065 return _finder;
066 }
067
068 public void setFinder(BookmarksFolderFinder finder) {
069 _finder = finder;
070
071 ReferenceRegistry.registerReference(BookmarksFolderFinderUtil.class,
072 "_finder");
073 }
074
075 private static BookmarksFolderFinder _finder;
076 }