001
014
015 package com.liferay.portlet.bookmarks.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class BookmarksEntryLocalServiceWrapper
027 implements BookmarksEntryLocalService,
028 ServiceWrapper<BookmarksEntryLocalService> {
029 public BookmarksEntryLocalServiceWrapper(
030 BookmarksEntryLocalService bookmarksEntryLocalService) {
031 _bookmarksEntryLocalService = bookmarksEntryLocalService;
032 }
033
034
041 @Override
042 public com.liferay.portlet.bookmarks.model.BookmarksEntry addBookmarksEntry(
043 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _bookmarksEntryLocalService.addBookmarksEntry(bookmarksEntry);
046 }
047
048
054 @Override
055 public com.liferay.portlet.bookmarks.model.BookmarksEntry createBookmarksEntry(
056 long entryId) {
057 return _bookmarksEntryLocalService.createBookmarksEntry(entryId);
058 }
059
060
068 @Override
069 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteBookmarksEntry(
070 long entryId)
071 throws com.liferay.portal.kernel.exception.PortalException,
072 com.liferay.portal.kernel.exception.SystemException {
073 return _bookmarksEntryLocalService.deleteBookmarksEntry(entryId);
074 }
075
076
083 @Override
084 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteBookmarksEntry(
085 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
086 throws com.liferay.portal.kernel.exception.SystemException {
087 return _bookmarksEntryLocalService.deleteBookmarksEntry(bookmarksEntry);
088 }
089
090 @Override
091 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
092 return _bookmarksEntryLocalService.dynamicQuery();
093 }
094
095
102 @Override
103 @SuppressWarnings("rawtypes")
104 public java.util.List dynamicQuery(
105 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery);
108 }
109
110
123 @Override
124 @SuppressWarnings("rawtypes")
125 public java.util.List dynamicQuery(
126 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
127 int end) throws com.liferay.portal.kernel.exception.SystemException {
128 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start, end);
129 }
130
131
145 @Override
146 @SuppressWarnings("rawtypes")
147 public java.util.List dynamicQuery(
148 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
149 int end,
150 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
151 throws com.liferay.portal.kernel.exception.SystemException {
152 return _bookmarksEntryLocalService.dynamicQuery(dynamicQuery, start,
153 end, orderByComparator);
154 }
155
156
163 @Override
164 public long dynamicQueryCount(
165 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
166 throws com.liferay.portal.kernel.exception.SystemException {
167 return _bookmarksEntryLocalService.dynamicQueryCount(dynamicQuery);
168 }
169
170
178 @Override
179 public long dynamicQueryCount(
180 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
181 com.liferay.portal.kernel.dao.orm.Projection projection)
182 throws com.liferay.portal.kernel.exception.SystemException {
183 return _bookmarksEntryLocalService.dynamicQueryCount(dynamicQuery,
184 projection);
185 }
186
187 @Override
188 public com.liferay.portlet.bookmarks.model.BookmarksEntry fetchBookmarksEntry(
189 long entryId)
190 throws com.liferay.portal.kernel.exception.SystemException {
191 return _bookmarksEntryLocalService.fetchBookmarksEntry(entryId);
192 }
193
194
202 @Override
203 public com.liferay.portlet.bookmarks.model.BookmarksEntry fetchBookmarksEntryByUuidAndCompanyId(
204 java.lang.String uuid, long companyId)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _bookmarksEntryLocalService.fetchBookmarksEntryByUuidAndCompanyId(uuid,
207 companyId);
208 }
209
210
218 @Override
219 public com.liferay.portlet.bookmarks.model.BookmarksEntry fetchBookmarksEntryByUuidAndGroupId(
220 java.lang.String uuid, long groupId)
221 throws com.liferay.portal.kernel.exception.SystemException {
222 return _bookmarksEntryLocalService.fetchBookmarksEntryByUuidAndGroupId(uuid,
223 groupId);
224 }
225
226
234 @Override
235 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntry(
236 long entryId)
237 throws com.liferay.portal.kernel.exception.PortalException,
238 com.liferay.portal.kernel.exception.SystemException {
239 return _bookmarksEntryLocalService.getBookmarksEntry(entryId);
240 }
241
242 @Override
243 public com.liferay.portal.model.PersistedModel getPersistedModel(
244 java.io.Serializable primaryKeyObj)
245 throws com.liferay.portal.kernel.exception.PortalException,
246 com.liferay.portal.kernel.exception.SystemException {
247 return _bookmarksEntryLocalService.getPersistedModel(primaryKeyObj);
248 }
249
250
259 @Override
260 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntryByUuidAndCompanyId(
261 java.lang.String uuid, long companyId)
262 throws com.liferay.portal.kernel.exception.PortalException,
263 com.liferay.portal.kernel.exception.SystemException {
264 return _bookmarksEntryLocalService.getBookmarksEntryByUuidAndCompanyId(uuid,
265 companyId);
266 }
267
268
277 @Override
278 public com.liferay.portlet.bookmarks.model.BookmarksEntry getBookmarksEntryByUuidAndGroupId(
279 java.lang.String uuid, long groupId)
280 throws com.liferay.portal.kernel.exception.PortalException,
281 com.liferay.portal.kernel.exception.SystemException {
282 return _bookmarksEntryLocalService.getBookmarksEntryByUuidAndGroupId(uuid,
283 groupId);
284 }
285
286
298 @Override
299 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getBookmarksEntries(
300 int start, int end)
301 throws com.liferay.portal.kernel.exception.SystemException {
302 return _bookmarksEntryLocalService.getBookmarksEntries(start, end);
303 }
304
305
311 @Override
312 public int getBookmarksEntriesCount()
313 throws com.liferay.portal.kernel.exception.SystemException {
314 return _bookmarksEntryLocalService.getBookmarksEntriesCount();
315 }
316
317
324 @Override
325 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateBookmarksEntry(
326 com.liferay.portlet.bookmarks.model.BookmarksEntry bookmarksEntry)
327 throws com.liferay.portal.kernel.exception.SystemException {
328 return _bookmarksEntryLocalService.updateBookmarksEntry(bookmarksEntry);
329 }
330
331
336 @Override
337 public java.lang.String getBeanIdentifier() {
338 return _bookmarksEntryLocalService.getBeanIdentifier();
339 }
340
341
346 @Override
347 public void setBeanIdentifier(java.lang.String beanIdentifier) {
348 _bookmarksEntryLocalService.setBeanIdentifier(beanIdentifier);
349 }
350
351 @Override
352 public com.liferay.portlet.bookmarks.model.BookmarksEntry addEntry(
353 long userId, long groupId, long folderId, java.lang.String name,
354 java.lang.String url, java.lang.String description,
355 com.liferay.portal.service.ServiceContext serviceContext)
356 throws com.liferay.portal.kernel.exception.PortalException,
357 com.liferay.portal.kernel.exception.SystemException {
358 return _bookmarksEntryLocalService.addEntry(userId, groupId, folderId,
359 name, url, description, serviceContext);
360 }
361
362 @Override
363 public void deleteEntries(long groupId, long folderId)
364 throws com.liferay.portal.kernel.exception.PortalException,
365 com.liferay.portal.kernel.exception.SystemException {
366 _bookmarksEntryLocalService.deleteEntries(groupId, folderId);
367 }
368
369 @Override
370 public void deleteEntries(long groupId, long folderId,
371 boolean includeTrashedEntries)
372 throws com.liferay.portal.kernel.exception.PortalException,
373 com.liferay.portal.kernel.exception.SystemException {
374 _bookmarksEntryLocalService.deleteEntries(groupId, folderId,
375 includeTrashedEntries);
376 }
377
378 @Override
379 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteEntry(
380 com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
381 throws com.liferay.portal.kernel.exception.PortalException,
382 com.liferay.portal.kernel.exception.SystemException {
383 return _bookmarksEntryLocalService.deleteEntry(entry);
384 }
385
386 @Override
387 public com.liferay.portlet.bookmarks.model.BookmarksEntry deleteEntry(
388 long entryId)
389 throws com.liferay.portal.kernel.exception.PortalException,
390 com.liferay.portal.kernel.exception.SystemException {
391 return _bookmarksEntryLocalService.deleteEntry(entryId);
392 }
393
394 @Override
395 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
396 long groupId, long folderId, int start, int end)
397 throws com.liferay.portal.kernel.exception.SystemException {
398 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
399 end);
400 }
401
402 @Override
403 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getEntries(
404 long groupId, long folderId, int start, int end,
405 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
406 throws com.liferay.portal.kernel.exception.SystemException {
407 return _bookmarksEntryLocalService.getEntries(groupId, folderId, start,
408 end, orderByComparator);
409 }
410
411 @Override
412 public int getEntriesCount(long groupId, long folderId)
413 throws com.liferay.portal.kernel.exception.SystemException {
414 return _bookmarksEntryLocalService.getEntriesCount(groupId, folderId);
415 }
416
417 @Override
418 public com.liferay.portlet.bookmarks.model.BookmarksEntry getEntry(
419 long entryId)
420 throws com.liferay.portal.kernel.exception.PortalException,
421 com.liferay.portal.kernel.exception.SystemException {
422 return _bookmarksEntryLocalService.getEntry(entryId);
423 }
424
425 @Override
426 public int getFoldersEntriesCount(long groupId,
427 java.util.List<java.lang.Long> folderIds)
428 throws com.liferay.portal.kernel.exception.SystemException {
429 return _bookmarksEntryLocalService.getFoldersEntriesCount(groupId,
430 folderIds);
431 }
432
433 @Override
434 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
435 long groupId, int start, int end)
436 throws com.liferay.portal.kernel.exception.SystemException {
437 return _bookmarksEntryLocalService.getGroupEntries(groupId, start, end);
438 }
439
440 @Override
441 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getGroupEntries(
442 long groupId, long userId, int start, int end)
443 throws com.liferay.portal.kernel.exception.SystemException {
444 return _bookmarksEntryLocalService.getGroupEntries(groupId, userId,
445 start, end);
446 }
447
448 @Override
449 public int getGroupEntriesCount(long groupId)
450 throws com.liferay.portal.kernel.exception.SystemException {
451 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId);
452 }
453
454 @Override
455 public int getGroupEntriesCount(long groupId, long userId)
456 throws com.liferay.portal.kernel.exception.SystemException {
457 return _bookmarksEntryLocalService.getGroupEntriesCount(groupId, userId);
458 }
459
460 @Override
461 public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksEntry> getNoAssetEntries()
462 throws com.liferay.portal.kernel.exception.SystemException {
463 return _bookmarksEntryLocalService.getNoAssetEntries();
464 }
465
466 @Override
467 public com.liferay.portlet.bookmarks.model.BookmarksEntry moveEntry(
468 long entryId, long parentFolderId)
469 throws com.liferay.portal.kernel.exception.PortalException,
470 com.liferay.portal.kernel.exception.SystemException {
471 return _bookmarksEntryLocalService.moveEntry(entryId, parentFolderId);
472 }
473
474 @Override
475 public com.liferay.portlet.bookmarks.model.BookmarksEntry moveEntryFromTrash(
476 long userId, long entryId, long parentFolderId)
477 throws com.liferay.portal.kernel.exception.PortalException,
478 com.liferay.portal.kernel.exception.SystemException {
479 return _bookmarksEntryLocalService.moveEntryFromTrash(userId, entryId,
480 parentFolderId);
481 }
482
483 @Override
484 public com.liferay.portlet.bookmarks.model.BookmarksEntry moveEntryToTrash(
485 long userId, com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
486 throws com.liferay.portal.kernel.exception.PortalException,
487 com.liferay.portal.kernel.exception.SystemException {
488 return _bookmarksEntryLocalService.moveEntryToTrash(userId, entry);
489 }
490
491 @Override
492 public com.liferay.portlet.bookmarks.model.BookmarksEntry moveEntryToTrash(
493 long userId, long entryId)
494 throws com.liferay.portal.kernel.exception.PortalException,
495 com.liferay.portal.kernel.exception.SystemException {
496 return _bookmarksEntryLocalService.moveEntryToTrash(userId, entryId);
497 }
498
499 @Override
500 public com.liferay.portlet.bookmarks.model.BookmarksEntry openEntry(
501 long userId, com.liferay.portlet.bookmarks.model.BookmarksEntry entry)
502 throws com.liferay.portal.kernel.exception.SystemException {
503 return _bookmarksEntryLocalService.openEntry(userId, entry);
504 }
505
506 @Override
507 public com.liferay.portlet.bookmarks.model.BookmarksEntry openEntry(
508 long userId, long entryId)
509 throws com.liferay.portal.kernel.exception.PortalException,
510 com.liferay.portal.kernel.exception.SystemException {
511 return _bookmarksEntryLocalService.openEntry(userId, entryId);
512 }
513
514 @Override
515 public void rebuildTree(long companyId)
516 throws com.liferay.portal.kernel.exception.PortalException,
517 com.liferay.portal.kernel.exception.SystemException {
518 _bookmarksEntryLocalService.rebuildTree(companyId);
519 }
520
521 @Override
522 public com.liferay.portlet.bookmarks.model.BookmarksEntry restoreEntryFromTrash(
523 long userId, long entryId)
524 throws com.liferay.portal.kernel.exception.PortalException,
525 com.liferay.portal.kernel.exception.SystemException {
526 return _bookmarksEntryLocalService.restoreEntryFromTrash(userId, entryId);
527 }
528
529 @Override
530 public com.liferay.portal.kernel.search.Hits search(long groupId,
531 long userId, long creatorUserId, int status, int start, int end)
532 throws com.liferay.portal.kernel.exception.PortalException,
533 com.liferay.portal.kernel.exception.SystemException {
534 return _bookmarksEntryLocalService.search(groupId, userId,
535 creatorUserId, status, start, end);
536 }
537
538 @Override
539 public void subscribeEntry(long userId, long entryId)
540 throws com.liferay.portal.kernel.exception.PortalException,
541 com.liferay.portal.kernel.exception.SystemException {
542 _bookmarksEntryLocalService.subscribeEntry(userId, entryId);
543 }
544
545 @Override
546 public void unsubscribeEntry(long userId, long entryId)
547 throws com.liferay.portal.kernel.exception.PortalException,
548 com.liferay.portal.kernel.exception.SystemException {
549 _bookmarksEntryLocalService.unsubscribeEntry(userId, entryId);
550 }
551
552 @Override
553 public void updateAsset(long userId,
554 com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
555 long[] assetCategoryIds, java.lang.String[] assetTagNames,
556 long[] assetLinkEntryIds)
557 throws com.liferay.portal.kernel.exception.PortalException,
558 com.liferay.portal.kernel.exception.SystemException {
559 _bookmarksEntryLocalService.updateAsset(userId, entry,
560 assetCategoryIds, assetTagNames, assetLinkEntryIds);
561 }
562
563 @Override
564 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateEntry(
565 long userId, long entryId, long groupId, long folderId,
566 java.lang.String name, java.lang.String url,
567 java.lang.String description,
568 com.liferay.portal.service.ServiceContext serviceContext)
569 throws com.liferay.portal.kernel.exception.PortalException,
570 com.liferay.portal.kernel.exception.SystemException {
571 return _bookmarksEntryLocalService.updateEntry(userId, entryId,
572 groupId, folderId, name, url, description, serviceContext);
573 }
574
575 @Override
576 public com.liferay.portlet.bookmarks.model.BookmarksEntry updateStatus(
577 long userId, com.liferay.portlet.bookmarks.model.BookmarksEntry entry,
578 int status)
579 throws com.liferay.portal.kernel.exception.PortalException,
580 com.liferay.portal.kernel.exception.SystemException {
581 return _bookmarksEntryLocalService.updateStatus(userId, entry, status);
582 }
583
584
587 public BookmarksEntryLocalService getWrappedBookmarksEntryLocalService() {
588 return _bookmarksEntryLocalService;
589 }
590
591
594 public void setWrappedBookmarksEntryLocalService(
595 BookmarksEntryLocalService bookmarksEntryLocalService) {
596 _bookmarksEntryLocalService = bookmarksEntryLocalService;
597 }
598
599 @Override
600 public BookmarksEntryLocalService getWrappedService() {
601 return _bookmarksEntryLocalService;
602 }
603
604 @Override
605 public void setWrappedService(
606 BookmarksEntryLocalService bookmarksEntryLocalService) {
607 _bookmarksEntryLocalService = bookmarksEntryLocalService;
608 }
609
610 private BookmarksEntryLocalService _bookmarksEntryLocalService;
611 }