001
014
015 package com.liferay.portlet.journal.service.persistence;
016
017 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018 import com.liferay.portal.kernel.util.ReferenceRegistry;
019
020
023 public class JournalFolderFinderUtil {
024 public static int countF_A_ByG_F(long groupId, long folderId)
025 throws com.liferay.portal.kernel.exception.SystemException {
026 return getFinder().countF_A_ByG_F(groupId, folderId);
027 }
028
029 public static int filterCountF_A_ByG_F(long groupId, long folderId)
030 throws com.liferay.portal.kernel.exception.SystemException {
031 return getFinder().filterCountF_A_ByG_F(groupId, folderId);
032 }
033
034 public static java.util.List<java.lang.Object> filterFindF_AByG_F(
035 long groupId, long folderId, int start, int end,
036 com.liferay.portal.kernel.util.OrderByComparator obc)
037 throws com.liferay.portal.kernel.exception.SystemException {
038 return getFinder().filterFindF_AByG_F(groupId, folderId, start, end, obc);
039 }
040
041 public static java.util.List<java.lang.Object> findF_AByG_F(long groupId,
042 long folderId, int start, int end,
043 com.liferay.portal.kernel.util.OrderByComparator obc)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return getFinder().findF_AByG_F(groupId, folderId, start, end, obc);
046 }
047
048 public static JournalFolderFinder getFinder() {
049 if (_finder == null) {
050 _finder = (JournalFolderFinder)PortalBeanLocatorUtil.locate(JournalFolderFinder.class.getName());
051
052 ReferenceRegistry.registerReference(JournalFolderFinderUtil.class,
053 "_finder");
054 }
055
056 return _finder;
057 }
058
059 public void setFinder(JournalFolderFinder finder) {
060 _finder = finder;
061
062 ReferenceRegistry.registerReference(JournalFolderFinderUtil.class,
063 "_finder");
064 }
065
066 private static JournalFolderFinder _finder;
067 }