001
014
015 package com.liferay.portlet.bookmarks.service;
016
017
026 public class BookmarksEntryLocalServiceWrapper
027 implements BookmarksEntryLocalService {
028 public BookmarksEntryLocalServiceWrapper(
029 BookmarksEntryLocalService bookmarksEntryLocalService) {
030 _bookmarksEntryLocalService = bookmarksEntryLocalService;
031 }
032
033
040 public com.liferay.portlet.bookmarks.model.BookmarksEntry addBookmarksEntry(
041 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
042 throws com.liferay.portal.kernel.exception.SystemException {
043 return _bookmarksEntryLocalService.addBookmarksEntry(bookmarksEntry);
044 }
045
046
052 public com.liferay.portlet.bookmarks.model.BookmarksEntry createBookmarksEntry(
053 long entryId) {
054 return _bookmarksEntryLocalService.createBookmarksEntry(entryId);
055 }
056
057
064 public void deleteBookmarksEntry(long entryId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _bookmarksEntryLocalService.deleteBookmarksEntry(entryId);
068 }
069
070
076 public void deleteBookmarksEntry(
077 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
078 throws com.liferay.portal.kernel.exception.SystemException {
079 _bookmarksEntryLocalService.deleteBookmarksEntry(bookmarksEntry);
080 }
081
082
089 @SuppressWarnings("rawtypes")
090 public java.util.List dynamicQuery(
091 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092 throws com.liferay.portal.kernel.exception.SystemException {
093 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery);
094 }
095
096
109 @SuppressWarnings("rawtypes")
110 public java.util.List dynamicQuery(
111 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112 int end) throws com.liferay.portal.kernel.exception.SystemException {
113 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start, end);
114 }
115
116
130 @SuppressWarnings("rawtypes")
131 public java.util.List dynamicQuery(
132 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133 int end,
134 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135 throws com.liferay.portal.kernel.exception.SystemException {
136 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start,
137 end, orderByComparator);
138 }
139
140
147 public long dynamicQueryCount(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return _bookmarksEntryLocalService.dynamicQueryCount(dynamicQuery);
151 }
152
153
161 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntry(
162 long entryId)
163 throws com.liferay.portal.kernel.exception.PortalException,
164 com.liferay.portal.kernel.exception.SystemException {
165 return _bookmarksEntryLocalService.getBookmarksEntry(entryId);
166 }
167
168 public com.liferay.portal.model.PersistedModel getPersistedModel(
169 java.io.Serializable primaryKeyObj)
170 throws com.liferay.portal.kernel.exception.PortalException,
171 com.liferay.portal.kernel.exception.SystemException {
172 return _bookmarksEntryLocalService.getPersistedModel(primaryKeyObj);
173 }
174
175
184 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntryByUuidAndGroupId(
185 java.lang.String uuid, long groupId)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _bookmarksEntryLocalService.getBookmarksEntryByUuidAndGroupId(uuid,
189 groupId);
190 }
191
192
204 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getBookmarksEntries(
205 int start, int end)
206 throws com.liferay.portal.kernel.exception.SystemException {
207 return _bookmarksEntryLocalService.getBookmarksEntries(start, end);
208 }
209
210
216 public int getBookmarksEntriesCount()
217 throws com.liferay.portal.kernel.exception.SystemException {
218 return _bookmarksEntryLocalService.getBookmarksEntriesCount();
219 }
220
221
228 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
229 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
230 throws com.liferay.portal.kernel.exception.SystemException {
231 return _bookmarksEntryLocalService.updateBookmarksEntry(bookmarksEntry);
232 }
233
234
242 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
243 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry,
244 boolean merge)
245 throws com.liferay.portal.kernel.exception.SystemException {
246 return _bookmarksEntryLocalService.updateBookmarksEntry(bookmarksEntry,
247 merge);
248 }
249
250
255 public java.lang.String getBeanIdentifier() {
256 return _bookmarksEntryLocalService.getBeanIdentifier();
257 }
258
259
264 public void setBeanIdentifier(java.lang.String beanIdentifier) {
265 _bookmarksEntryLocalService.setBeanIdentifier(beanIdentifier);
266 }
267
268 public com.liferay.portlet.bookmarks.model.BookmarksEntry addEntry(
269 long userId, long groupId, long folderId, java.lang.String name,
270 java.lang.String url, java.lang.String description,
271 com.liferay.portal.service.ServiceContext serviceContext)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 return _bookmarksEntryLocalService.addEntry(userId, groupId, folderId,
275 name, url, description, serviceContext);
276 }
277
278 public void addEntryResources(
279 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
280 boolean addCommunityPermissions, boolean addGuestPermissions)
281 throws com.liferay.portal.kernel.exception.PortalException,
282 com.liferay.portal.kernel.exception.SystemException {
283 _bookmarksEntryLocalService.addEntryResources(entry,
284 addCommunityPermissions, addGuestPermissions);
285 }
286
287 public void addEntryResources(
288 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
289 java.lang.String[] communityPermissions,
290 java.lang.String[] guestPermissions)
291 throws com.liferay.portal.kernel.exception.PortalException,
292 com.liferay.portal.kernel.exception.SystemException {
293 _bookmarksEntryLocalService.addEntryResources(entry,
294 communityPermissions, guestPermissions);
295 }
296
297 public void addEntryResources(long entryId,
298 boolean addCommunityPermissions, boolean addGuestPermissions)
299 throws com.liferay.portal.kernel.exception.PortalException,
300 com.liferay.portal.kernel.exception.SystemException {
301 _bookmarksEntryLocalService.addEntryResources(entryId,
302 addCommunityPermissions, addGuestPermissions);
303 }
304
305 public void addEntryResources(long entryId,
306 java.lang.String[] communityPermissions,
307 java.lang.String[] guestPermissions)
308 throws com.liferay.portal.kernel.exception.PortalException,
309 com.liferay.portal.kernel.exception.SystemException {
310 _bookmarksEntryLocalService.addEntryResources(entryId,
311 communityPermissions, guestPermissions);
312 }
313
314 public void deleteEntries(long groupId, long folderId)
315 throws com.liferay.portal.kernel.exception.PortalException,
316 com.liferay.portal.kernel.exception.SystemException {
317 _bookmarksEntryLocalService.deleteEntries(groupId, folderId);
318 }
319
320 public void deleteEntry(
321 com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
322 throws com.liferay.portal.kernel.exception.PortalException,
323 com.liferay.portal.kernel.exception.SystemException {
324 _bookmarksEntryLocalService.deleteEntry(entry);
325 }
326
327 public void deleteEntry(long entryId)
328 throws com.liferay.portal.kernel.exception.PortalException,
329 com.liferay.portal.kernel.exception.SystemException {
330 _bookmarksEntryLocalService.deleteEntry(entryId);
331 }
332
333 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
334 long groupId, long folderId, int start, int end)
335 throws com.liferay.portal.kernel.exception.SystemException {
336 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
337 end);
338 }
339
340 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
341 long groupId, long folderId, int start, int end,
342 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
343 throws com.liferay.portal.kernel.exception.SystemException {
344 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
345 end, orderByComparator);
346 }
347
348 public int getEntriesCount(long groupId, long folderId)
349 throws com.liferay.portal.kernel.exception.SystemException {
350 return _bookmarksEntryLocalService.getEntriesCount(groupId, folderId);
351 }
352
353 public com.liferay.portlet.bookmarks.model.BookmarksEntry getEntry(
354 long entryId)
355 throws com.liferay.portal.kernel.exception.PortalException,
356 com.liferay.portal.kernel.exception.SystemException {
357 return _bookmarksEntryLocalService.getEntry(entryId);
358 }
359
360 public int getFoldersEntriesCount(long groupId,
361 java.util.List<java.lang.Long> folderIds)
362 throws com.liferay.portal.kernel.exception.SystemException {
363 return _bookmarksEntryLocalService.getFoldersEntriesCount(groupId,
364 folderIds);
365 }
366
367 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
368 long groupId, int start, int end)
369 throws com.liferay.portal.kernel.exception.SystemException {
370 return _bookmarksEntryLocalService.getGroupEntries(groupId, start, end);
371 }
372
373 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
374 long groupId, long userId, int start, int end)
375 throws com.liferay.portal.kernel.exception.SystemException {
376 return _bookmarksEntryLocalService.getGroupEntries(groupId, userId,
377 start, end);
378 }
379
380 public int getGroupEntriesCount(long groupId)
381 throws com.liferay.portal.kernel.exception.SystemException {
382 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId);
383 }
384
385 public int getGroupEntriesCount(long groupId, long userId)
386 throws com.liferay.portal.kernel.exception.SystemException {
387 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId, userId);
388 }
389
390 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getNoAssetEntries()
391 throws com.liferay.portal.kernel.exception.SystemException {
392 return _bookmarksEntryLocalService.getNoAssetEntries();
393 }
394
395 public com.liferay.portlet.bookmarks.model.BookmarksEntry openEntry(
396 long userId, long entryId)
397 throws com.liferay.portal.kernel.exception.PortalException,
398 com.liferay.portal.kernel.exception.SystemException {
399 return _bookmarksEntryLocalService.openEntry(userId, entryId);
400 }
401
402 public void updateAsset(long userId,
403 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
404 long[] assetCategoryIds, java.lang.String[] assetTagNames)
405 throws com.liferay.portal.kernel.exception.PortalException,
406 com.liferay.portal.kernel.exception.SystemException {
407 _bookmarksEntryLocalService.updateAsset(userId, entry,
408 assetCategoryIds, assetTagNames);
409 }
410
411 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateEntry(
412 long userId, long entryId, long groupId, long folderId,
413 java.lang.String name, java.lang.String url,
414 java.lang.String description,
415 com.liferay.portal.service.ServiceContext serviceContext)
416 throws com.liferay.portal.kernel.exception.PortalException,
417 com.liferay.portal.kernel.exception.SystemException {
418 return _bookmarksEntryLocalService.updateEntry(userId, entryId,
419 groupId, folderId, name, url, description, serviceContext);
420 }
421
422 public BookmarksEntryLocalService getWrappedBookmarksEntryLocalService() {
423 return _bookmarksEntryLocalService;
424 }
425
426 public void setWrappedBookmarksEntryLocalService(
427 BookmarksEntryLocalService bookmarksEntryLocalService) {
428 _bookmarksEntryLocalService = bookmarksEntryLocalService;
429 }
430
431 private BookmarksEntryLocalService _bookmarksEntryLocalService;
432 }