1
19
20 package com.liferay.portlet.documentlibrary.service.persistence;
21
22
28 public interface DLFileEntryFinder {
29 public int countByFolderIds(java.util.List<Long> folderIds)
30 throws com.liferay.portal.SystemException;
31
32 public int countByGroupId(long groupId)
33 throws com.liferay.portal.SystemException;
34
35 public int countByG_U(long groupId, long userId)
36 throws com.liferay.portal.SystemException;
37
38 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByGroupId(
39 long groupId, int start, int end)
40 throws com.liferay.portal.SystemException;
41
42 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByGroupId(
43 long groupId, int start, int end,
44 com.liferay.portal.kernel.util.OrderByComparator obc)
45 throws com.liferay.portal.SystemException;
46
47 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByNoAssets()
48 throws com.liferay.portal.SystemException;
49
50 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U(
51 long groupId, long userId, int start, int end)
52 throws com.liferay.portal.SystemException;
53
54 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntry> findByG_U(
55 long groupId, long userId, int start, int end,
56 com.liferay.portal.kernel.util.OrderByComparator obc)
57 throws com.liferay.portal.SystemException;
58
59 public com.liferay.portlet.documentlibrary.model.DLFileEntry findByUuid_G(
60 java.lang.String uuid, long groupId)
61 throws com.liferay.portal.SystemException,
62 com.liferay.portlet.documentlibrary.NoSuchFileEntryException;
63 }