1
14
15 package com.liferay.portlet.bookmarks.service;
16
17 import com.liferay.portal.PortalException;
18 import com.liferay.portal.SystemException;
19 import com.liferay.portal.kernel.annotation.Isolation;
20 import com.liferay.portal.kernel.annotation.Propagation;
21 import com.liferay.portal.kernel.annotation.Transactional;
22
23
47 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
48 PortalException.class, SystemException.class})
49 public interface BookmarksEntryLocalService {
50 public com.liferay.portlet.bookmarks.model.BookmarksEntry addBookmarksEntry(
51 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portlet.bookmarks.model.BookmarksEntry createBookmarksEntry(
55 long entryId);
56
57 public void deleteBookmarksEntry(long entryId)
58 throws com.liferay.portal.PortalException,
59 com.liferay.portal.SystemException;
60
61 public void deleteBookmarksEntry(
62 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
63 throws com.liferay.portal.SystemException;
64
65 public java.util.List<Object> dynamicQuery(
66 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
67 throws com.liferay.portal.SystemException;
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException;
72
73 public java.util.List<Object> dynamicQuery(
74 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
75 int end,
76 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
77 throws com.liferay.portal.SystemException;
78
79 public int dynamicQueryCount(
80 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
81 throws com.liferay.portal.SystemException;
82
83 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
84 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntry(
85 long entryId)
86 throws com.liferay.portal.PortalException,
87 com.liferay.portal.SystemException;
88
89 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
90 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getBookmarksEntries(
91 int start, int end) throws com.liferay.portal.SystemException;
92
93 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
94 public int getBookmarksEntriesCount()
95 throws com.liferay.portal.SystemException;
96
97 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
98 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
99 throws com.liferay.portal.SystemException;
100
101 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
102 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry,
103 boolean merge) throws com.liferay.portal.SystemException;
104
105 public com.liferay.portlet.bookmarks.model.BookmarksEntry addEntry(
106 long userId, long folderId, java.lang.String name,
107 java.lang.String url, java.lang.String comments,
108 com.liferay.portal.service.ServiceContext serviceContext)
109 throws com.liferay.portal.PortalException,
110 com.liferay.portal.SystemException;
111
112 public com.liferay.portlet.bookmarks.model.BookmarksEntry addEntry(
113 java.lang.String uuid, long userId, long folderId,
114 java.lang.String name, java.lang.String url, java.lang.String comments,
115 com.liferay.portal.service.ServiceContext serviceContext)
116 throws com.liferay.portal.PortalException,
117 com.liferay.portal.SystemException;
118
119 public void addEntryResources(
120 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
121 boolean addCommunityPermissions, boolean addGuestPermissions)
122 throws com.liferay.portal.PortalException,
123 com.liferay.portal.SystemException;
124
125 public void addEntryResources(
126 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
127 java.lang.String[] communityPermissions,
128 java.lang.String[] guestPermissions)
129 throws com.liferay.portal.PortalException,
130 com.liferay.portal.SystemException;
131
132 public void addEntryResources(long entryId,
133 boolean addCommunityPermissions, boolean addGuestPermissions)
134 throws com.liferay.portal.PortalException,
135 com.liferay.portal.SystemException;
136
137 public void addEntryResources(long entryId,
138 java.lang.String[] communityPermissions,
139 java.lang.String[] guestPermissions)
140 throws com.liferay.portal.PortalException,
141 com.liferay.portal.SystemException;
142
143 public void deleteEntries(long folderId)
144 throws com.liferay.portal.PortalException,
145 com.liferay.portal.SystemException;
146
147 public void deleteEntry(
148 com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
149 throws com.liferay.portal.PortalException,
150 com.liferay.portal.SystemException;
151
152 public void deleteEntry(long entryId)
153 throws com.liferay.portal.PortalException,
154 com.liferay.portal.SystemException;
155
156 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
157 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
158 long folderId, int start, int end)
159 throws com.liferay.portal.SystemException;
160
161 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
162 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
163 long folderId, int start, int end,
164 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
165 throws com.liferay.portal.SystemException;
166
167 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
168 public int getEntriesCount(long folderId)
169 throws com.liferay.portal.SystemException;
170
171 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
172 public com.liferay.portlet.bookmarks.model.BookmarksEntry getEntry(
173 long entryId)
174 throws com.liferay.portal.PortalException,
175 com.liferay.portal.SystemException;
176
177 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
178 public int getFoldersEntriesCount(java.util.List<Long> folderIds)
179 throws com.liferay.portal.SystemException;
180
181 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
182 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
183 long groupId, int start, int end)
184 throws com.liferay.portal.SystemException;
185
186 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
187 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
188 long groupId, long userId, int start, int end)
189 throws com.liferay.portal.SystemException;
190
191 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
192 public int getGroupEntriesCount(long groupId)
193 throws com.liferay.portal.SystemException;
194
195 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
196 public int getGroupEntriesCount(long groupId, long userId)
197 throws com.liferay.portal.SystemException;
198
199 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
200 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getNoAssetEntries()
201 throws com.liferay.portal.SystemException;
202
203 public com.liferay.portlet.bookmarks.model.BookmarksEntry openEntry(
204 long entryId)
205 throws com.liferay.portal.PortalException,
206 com.liferay.portal.SystemException;
207
208 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
209 public void reIndex(
210 com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
211 throws com.liferay.portal.SystemException;
212
213 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
214 public void reIndex(long entryId) throws com.liferay.portal.SystemException;
215
216 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateEntry(
217 long userId, long entryId, long folderId, java.lang.String name,
218 java.lang.String url, java.lang.String comments,
219 com.liferay.portal.service.ServiceContext serviceContext)
220 throws com.liferay.portal.PortalException,
221 com.liferay.portal.SystemException;
222
223 public void updateTagsAsset(long userId,
224 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
225 java.lang.String[] tagsEntries)
226 throws com.liferay.portal.PortalException,
227 com.liferay.portal.SystemException;
228 }