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 com.liferay.portlet.documentlibrary.model.DLFileRank createDLFileRank(
56 long fileRankId);
57
58 public void deleteDLFileRank(long fileRankId)
59 throws com.liferay.portal.SystemException,
60 com.liferay.portal.PortalException;
61
62 public void deleteDLFileRank(
63 com.liferay.portlet.documentlibrary.model.DLFileRank dlFileRank)
64 throws com.liferay.portal.SystemException;
65
66 public java.util.List<Object> dynamicQuery(
67 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException;
73
74 public com.liferay.portlet.documentlibrary.model.DLFileRank getDLFileRank(
75 long fileRankId)
76 throws com.liferay.portal.SystemException,
77 com.liferay.portal.PortalException;
78
79 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getDLFileRanks(
80 int start, int end) throws com.liferay.portal.SystemException;
81
82 public int getDLFileRanksCount() throws com.liferay.portal.SystemException;
83
84 public com.liferay.portlet.documentlibrary.model.DLFileRank updateDLFileRank(
85 com.liferay.portlet.documentlibrary.model.DLFileRank dlFileRank)
86 throws com.liferay.portal.SystemException;
87
88 public void deleteFileRanks(long userId)
89 throws com.liferay.portal.SystemException;
90
91 public void deleteFileRanks(long folderId, java.lang.String name)
92 throws com.liferay.portal.SystemException;
93
94 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getFileRanks(
95 long groupId, long userId) throws com.liferay.portal.SystemException;
96
97 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileRank> getFileRanks(
98 long groupId, long userId, int start, int end)
99 throws com.liferay.portal.SystemException;
100
101 public com.liferay.portlet.documentlibrary.model.DLFileRank updateFileRank(
102 long groupId, long companyId, long userId, long folderId,
103 java.lang.String name) throws com.liferay.portal.SystemException;
104 }