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