1
22
23 package com.liferay.portlet.documentlibrary.service;
24
25
26
50 public interface DLFileRankLocalService {
51 public com.liferay.portlet.documentlibrary.model.DLFileRank addDLFileRank(
52 com.liferay.portlet.documentlibrary.model.DLFileRank dlFileRank)
53 throws com.liferay.portal.SystemException;
54
55 public void deleteDLFileRank(long fileRankId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteDLFileRank(
60 com.liferay.portlet.documentlibrary.model.DLFileRank dlFileRank)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portlet.documentlibrary.model.DLFileRank getDLFileRank(
72 long fileRankId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getDLFileRanks(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getDLFileRanksCount() throws com.liferay.portal.SystemException;
80
81 public com.liferay.portlet.documentlibrary.model.DLFileRank updateDLFileRank(
82 com.liferay.portlet.documentlibrary.model.DLFileRank dlFileRank)
83 throws com.liferay.portal.SystemException;
84
85 public void deleteFileRanks(long userId)
86 throws com.liferay.portal.SystemException;
87
88 public void deleteFileRanks(long folderId, java.lang.String name)
89 throws com.liferay.portal.SystemException;
90
91 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getFileRanks(
92 long groupId, long userId) throws com.liferay.portal.SystemException;
93
94 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getFileRanks(
95 long groupId, long userId, int start, int end)
96 throws com.liferay.portal.SystemException;
97
98 public com.liferay.portlet.documentlibrary.model.DLFileRank updateFileRank(
99 long groupId, long companyId, long userId, long folderId,
100 java.lang.String name)
101 throws com.liferay.portal.PortalException,
102 com.liferay.portal.SystemException;
103 }