1
14
15 package com.liferay.portlet.documentlibrary.service.persistence;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
24 public class DLFileEntryFinderUtil {
25 public static int countByFolderIds(java.util.List<Long> folderIds)
26 throws com.liferay.portal.SystemException {
27 return getFinder().countByFolderIds(folderIds);
28 }
29
30 public static java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByNoAssets()
31 throws com.liferay.portal.SystemException {
32 return getFinder().findByNoAssets();
33 }
34
35 public static DLFileEntryFinder getFinder() {
36 if (_finder == null) {
37 _finder = (DLFileEntryFinder)PortalBeanLocatorUtil.locate(DLFileEntryFinder.class.getName());
38 }
39
40 return _finder;
41 }
42
43 public void setFinder(DLFileEntryFinder finder) {
44 _finder = finder;
45 }
46
47 private static DLFileEntryFinder _finder;
48 }