001
014
015 package com.liferay.portlet.journal.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
025 @ProviderType
026 public class JournalFolderFinderUtil {
027 public static int countF_A_ByG_F(long groupId, long folderId,
028 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
029 throws com.liferay.portal.kernel.exception.SystemException {
030 return getFinder().countF_A_ByG_F(groupId, folderId, queryDefinition);
031 }
032
033 public static int filterCountF_A_ByG_F(long groupId, long folderId,
034 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
035 throws com.liferay.portal.kernel.exception.SystemException {
036 return getFinder()
037 .filterCountF_A_ByG_F(groupId, folderId, queryDefinition);
038 }
039
040 public static java.util.List<java.lang.Object> filterFindF_A_ByG_F(
041 long groupId, long folderId,
042 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
043 throws com.liferay.portal.kernel.exception.SystemException {
044 return getFinder()
045 .filterFindF_A_ByG_F(groupId, folderId, queryDefinition);
046 }
047
048 public static java.util.List<com.liferay.portlet.journal.model.JournalFolder> findF_ByNoAssets()
049 throws com.liferay.portal.kernel.exception.SystemException {
050 return getFinder().findF_ByNoAssets();
051 }
052
053 public static java.util.List<java.lang.Object> findF_A_ByG_F(long groupId,
054 long folderId,
055 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
056 throws com.liferay.portal.kernel.exception.SystemException {
057 return getFinder().findF_A_ByG_F(groupId, folderId, queryDefinition);
058 }
059
060 public static JournalFolderFinder getFinder() {
061 if (_finder == null) {
062 _finder = (JournalFolderFinder)PortalBeanLocatorUtil.locate(JournalFolderFinder.class.getName());
063
064 ReferenceRegistry.registerReference(JournalFolderFinderUtil.class,
065 "_finder");
066 }
067
068 return _finder;
069 }
070
071 public void setFinder(JournalFolderFinder finder) {
072 _finder = finder;
073
074 ReferenceRegistry.registerReference(JournalFolderFinderUtil.class,
075 "_finder");
076 }
077
078 private static JournalFolderFinder _finder;
079 }