001
014
015 package com.liferay.portlet.blogs.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class BlogsEntryLocalServiceWrapper implements BlogsEntryLocalService,
027 ServiceWrapper<BlogsEntryLocalService> {
028 public BlogsEntryLocalServiceWrapper(
029 BlogsEntryLocalService blogsEntryLocalService) {
030 _blogsEntryLocalService = blogsEntryLocalService;
031 }
032
033
040 @Override
041 public com.liferay.portlet.blogs.model.BlogsEntry addBlogsEntry(
042 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
043 throws com.liferay.portal.kernel.exception.SystemException {
044 return _blogsEntryLocalService.addBlogsEntry(blogsEntry);
045 }
046
047
053 @Override
054 public com.liferay.portlet.blogs.model.BlogsEntry createBlogsEntry(
055 long entryId) {
056 return _blogsEntryLocalService.createBlogsEntry(entryId);
057 }
058
059
067 @Override
068 public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
069 long entryId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _blogsEntryLocalService.deleteBlogsEntry(entryId);
073 }
074
075
082 @Override
083 public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
084 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
085 throws com.liferay.portal.kernel.exception.SystemException {
086 return _blogsEntryLocalService.deleteBlogsEntry(blogsEntry);
087 }
088
089 @Override
090 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091 return _blogsEntryLocalService.dynamicQuery();
092 }
093
094
101 @Override
102 @SuppressWarnings("rawtypes")
103 public java.util.List dynamicQuery(
104 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105 throws com.liferay.portal.kernel.exception.SystemException {
106 return _blogsEntryLocalService.dynamicQuery(dynamicQuery);
107 }
108
109
122 @Override
123 @SuppressWarnings("rawtypes")
124 public java.util.List dynamicQuery(
125 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126 int end) throws com.liferay.portal.kernel.exception.SystemException {
127 return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
128 }
129
130
144 @Override
145 @SuppressWarnings("rawtypes")
146 public java.util.List dynamicQuery(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148 int end,
149 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150 throws com.liferay.portal.kernel.exception.SystemException {
151 return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
152 orderByComparator);
153 }
154
155
162 @Override
163 public long dynamicQueryCount(
164 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _blogsEntryLocalService.dynamicQueryCount(dynamicQuery);
167 }
168
169
177 @Override
178 public long dynamicQueryCount(
179 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180 com.liferay.portal.kernel.dao.orm.Projection projection)
181 throws com.liferay.portal.kernel.exception.SystemException {
182 return _blogsEntryLocalService.dynamicQueryCount(dynamicQuery,
183 projection);
184 }
185
186 @Override
187 public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntry(
188 long entryId)
189 throws com.liferay.portal.kernel.exception.SystemException {
190 return _blogsEntryLocalService.fetchBlogsEntry(entryId);
191 }
192
193
201 @Override
202 public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntryByUuidAndCompanyId(
203 java.lang.String uuid, long companyId)
204 throws com.liferay.portal.kernel.exception.SystemException {
205 return _blogsEntryLocalService.fetchBlogsEntryByUuidAndCompanyId(uuid,
206 companyId);
207 }
208
209
217 @Override
218 public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntryByUuidAndGroupId(
219 java.lang.String uuid, long groupId)
220 throws com.liferay.portal.kernel.exception.SystemException {
221 return _blogsEntryLocalService.fetchBlogsEntryByUuidAndGroupId(uuid,
222 groupId);
223 }
224
225
233 @Override
234 public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntry(
235 long entryId)
236 throws com.liferay.portal.kernel.exception.PortalException,
237 com.liferay.portal.kernel.exception.SystemException {
238 return _blogsEntryLocalService.getBlogsEntry(entryId);
239 }
240
241 @Override
242 public com.liferay.portal.model.PersistedModel getPersistedModel(
243 java.io.Serializable primaryKeyObj)
244 throws com.liferay.portal.kernel.exception.PortalException,
245 com.liferay.portal.kernel.exception.SystemException {
246 return _blogsEntryLocalService.getPersistedModel(primaryKeyObj);
247 }
248
249
258 @Override
259 public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntryByUuidAndCompanyId(
260 java.lang.String uuid, long companyId)
261 throws com.liferay.portal.kernel.exception.PortalException,
262 com.liferay.portal.kernel.exception.SystemException {
263 return _blogsEntryLocalService.getBlogsEntryByUuidAndCompanyId(uuid,
264 companyId);
265 }
266
267
276 @Override
277 public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntryByUuidAndGroupId(
278 java.lang.String uuid, long groupId)
279 throws com.liferay.portal.kernel.exception.PortalException,
280 com.liferay.portal.kernel.exception.SystemException {
281 return _blogsEntryLocalService.getBlogsEntryByUuidAndGroupId(uuid,
282 groupId);
283 }
284
285
297 @Override
298 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getBlogsEntries(
299 int start, int end)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 return _blogsEntryLocalService.getBlogsEntries(start, end);
302 }
303
304
310 @Override
311 public int getBlogsEntriesCount()
312 throws com.liferay.portal.kernel.exception.SystemException {
313 return _blogsEntryLocalService.getBlogsEntriesCount();
314 }
315
316
323 @Override
324 public com.liferay.portlet.blogs.model.BlogsEntry updateBlogsEntry(
325 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
326 throws com.liferay.portal.kernel.exception.SystemException {
327 return _blogsEntryLocalService.updateBlogsEntry(blogsEntry);
328 }
329
330
335 @Override
336 public java.lang.String getBeanIdentifier() {
337 return _blogsEntryLocalService.getBeanIdentifier();
338 }
339
340
345 @Override
346 public void setBeanIdentifier(java.lang.String beanIdentifier) {
347 _blogsEntryLocalService.setBeanIdentifier(beanIdentifier);
348 }
349
350 @Override
351 public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
352 java.lang.String title, java.lang.String description,
353 java.lang.String content, int displayDateMonth, int displayDateDay,
354 int displayDateYear, int displayDateHour, int displayDateMinute,
355 boolean allowPingbacks, boolean allowTrackbacks,
356 java.lang.String[] trackbacks, boolean smallImage,
357 java.lang.String smallImageURL, java.lang.String smallImageFileName,
358 java.io.InputStream smallImageInputStream,
359 com.liferay.portal.service.ServiceContext serviceContext)
360 throws com.liferay.portal.kernel.exception.PortalException,
361 com.liferay.portal.kernel.exception.SystemException {
362 return _blogsEntryLocalService.addEntry(userId, title, description,
363 content, displayDateMonth, displayDateDay, displayDateYear,
364 displayDateHour, displayDateMinute, allowPingbacks,
365 allowTrackbacks, trackbacks, smallImage, smallImageURL,
366 smallImageFileName, smallImageInputStream, serviceContext);
367 }
368
369 @Override
370 public void addEntryResources(
371 com.liferay.portlet.blogs.model.BlogsEntry entry,
372 boolean addGroupPermissions, boolean addGuestPermissions)
373 throws com.liferay.portal.kernel.exception.PortalException,
374 com.liferay.portal.kernel.exception.SystemException {
375 _blogsEntryLocalService.addEntryResources(entry, addGroupPermissions,
376 addGuestPermissions);
377 }
378
379 @Override
380 public void addEntryResources(
381 com.liferay.portlet.blogs.model.BlogsEntry entry,
382 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
383 throws com.liferay.portal.kernel.exception.PortalException,
384 com.liferay.portal.kernel.exception.SystemException {
385 _blogsEntryLocalService.addEntryResources(entry, groupPermissions,
386 guestPermissions);
387 }
388
389 @Override
390 public void addEntryResources(long entryId, boolean addGroupPermissions,
391 boolean addGuestPermissions)
392 throws com.liferay.portal.kernel.exception.PortalException,
393 com.liferay.portal.kernel.exception.SystemException {
394 _blogsEntryLocalService.addEntryResources(entryId, addGroupPermissions,
395 addGuestPermissions);
396 }
397
398 @Override
399 public void addEntryResources(long entryId,
400 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
401 throws com.liferay.portal.kernel.exception.PortalException,
402 com.liferay.portal.kernel.exception.SystemException {
403 _blogsEntryLocalService.addEntryResources(entryId, groupPermissions,
404 guestPermissions);
405 }
406
407 @Override
408 public void checkEntries()
409 throws com.liferay.portal.kernel.exception.PortalException,
410 com.liferay.portal.kernel.exception.SystemException {
411 _blogsEntryLocalService.checkEntries();
412 }
413
414 @Override
415 public void deleteEntries(long groupId)
416 throws com.liferay.portal.kernel.exception.PortalException,
417 com.liferay.portal.kernel.exception.SystemException {
418 _blogsEntryLocalService.deleteEntries(groupId);
419 }
420
421 @Override
422 public void deleteEntry(com.liferay.portlet.blogs.model.BlogsEntry entry)
423 throws com.liferay.portal.kernel.exception.PortalException,
424 com.liferay.portal.kernel.exception.SystemException {
425 _blogsEntryLocalService.deleteEntry(entry);
426 }
427
428 @Override
429 public void deleteEntry(long entryId)
430 throws com.liferay.portal.kernel.exception.PortalException,
431 com.liferay.portal.kernel.exception.SystemException {
432 _blogsEntryLocalService.deleteEntry(entryId);
433 }
434
435
439 @Override
440 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
441 long companyId, java.util.Date displayDate, int status, int start,
442 int end) throws com.liferay.portal.kernel.exception.SystemException {
443 return _blogsEntryLocalService.getCompanyEntries(companyId,
444 displayDate, status, start, end);
445 }
446
447
451 @Override
452 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
453 long companyId, java.util.Date displayDate, int status, int start,
454 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
455 throws com.liferay.portal.kernel.exception.SystemException {
456 return _blogsEntryLocalService.getCompanyEntries(companyId,
457 displayDate, status, start, end, obc);
458 }
459
460 @Override
461 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
462 long companyId, java.util.Date displayDate,
463 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
464 throws com.liferay.portal.kernel.exception.SystemException {
465 return _blogsEntryLocalService.getCompanyEntries(companyId,
466 displayDate, queryDefinition);
467 }
468
469
473 @Override
474 public int getCompanyEntriesCount(long companyId,
475 java.util.Date displayDate, int status)
476 throws com.liferay.portal.kernel.exception.SystemException {
477 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
478 displayDate, status);
479 }
480
481 @Override
482 public int getCompanyEntriesCount(long companyId,
483 java.util.Date displayDate,
484 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
485 throws com.liferay.portal.kernel.exception.SystemException {
486 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
487 displayDate, queryDefinition);
488 }
489
490 @Override
491 public com.liferay.portlet.blogs.model.BlogsEntry[] getEntriesPrevAndNext(
492 long entryId)
493 throws com.liferay.portal.kernel.exception.PortalException,
494 com.liferay.portal.kernel.exception.SystemException {
495 return _blogsEntryLocalService.getEntriesPrevAndNext(entryId);
496 }
497
498 @Override
499 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long entryId)
500 throws com.liferay.portal.kernel.exception.PortalException,
501 com.liferay.portal.kernel.exception.SystemException {
502 return _blogsEntryLocalService.getEntry(entryId);
503 }
504
505 @Override
506 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long groupId,
507 java.lang.String urlTitle)
508 throws com.liferay.portal.kernel.exception.PortalException,
509 com.liferay.portal.kernel.exception.SystemException {
510 return _blogsEntryLocalService.getEntry(groupId, urlTitle);
511 }
512
513
517 @Override
518 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
519 long groupId, java.util.Date displayDate, int status, int start, int end)
520 throws com.liferay.portal.kernel.exception.SystemException {
521 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
522 status, start, end);
523 }
524
525
529 @Override
530 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
531 long groupId, java.util.Date displayDate, int status, int start,
532 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
533 throws com.liferay.portal.kernel.exception.SystemException {
534 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
535 status, start, end, obc);
536 }
537
538 @Override
539 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
540 long groupId, java.util.Date displayDate,
541 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
542 throws com.liferay.portal.kernel.exception.SystemException {
543 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
544 queryDefinition);
545 }
546
547
551 @Override
552 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
553 long groupId, int status, int start, int end)
554 throws com.liferay.portal.kernel.exception.SystemException {
555 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
556 end);
557 }
558
559
563 @Override
564 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
565 long groupId, int status, int start, int end,
566 com.liferay.portal.kernel.util.OrderByComparator obc)
567 throws com.liferay.portal.kernel.exception.SystemException {
568 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
569 end, obc);
570 }
571
572 @Override
573 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
574 long groupId,
575 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
576 throws com.liferay.portal.kernel.exception.SystemException {
577 return _blogsEntryLocalService.getGroupEntries(groupId, queryDefinition);
578 }
579
580
584 @Override
585 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
586 int status) throws com.liferay.portal.kernel.exception.SystemException {
587 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
588 displayDate, status);
589 }
590
591 @Override
592 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
593 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
594 throws com.liferay.portal.kernel.exception.SystemException {
595 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
596 displayDate, queryDefinition);
597 }
598
599
603 @Override
604 public int getGroupEntriesCount(long groupId, int status)
605 throws com.liferay.portal.kernel.exception.SystemException {
606 return _blogsEntryLocalService.getGroupEntriesCount(groupId, status);
607 }
608
609 @Override
610 public int getGroupEntriesCount(long groupId,
611 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
612 throws com.liferay.portal.kernel.exception.SystemException {
613 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
614 queryDefinition);
615 }
616
617
621 @Override
622 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
623 long companyId, long groupId, java.util.Date displayDate, int status,
624 int start, int end)
625 throws com.liferay.portal.kernel.exception.SystemException {
626 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
627 displayDate, status, start, end);
628 }
629
630 @Override
631 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
632 long companyId, long groupId, java.util.Date displayDate,
633 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
634 throws com.liferay.portal.kernel.exception.SystemException {
635 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
636 displayDate, queryDefinition);
637 }
638
639
643 @Override
644 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
645 long groupId, long userId, java.util.Date displayDate, int status,
646 int start, int end)
647 throws com.liferay.portal.kernel.exception.SystemException {
648 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
649 displayDate, status, start, end);
650 }
651
652
656 @Override
657 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
658 long groupId, long userId, java.util.Date displayDate, int status,
659 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
660 throws com.liferay.portal.kernel.exception.SystemException {
661 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
662 displayDate, status, start, end, obc);
663 }
664
665 @Override
666 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
667 long groupId, long userId, java.util.Date displayDate,
668 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
669 throws com.liferay.portal.kernel.exception.SystemException {
670 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
671 displayDate, queryDefinition);
672 }
673
674
678 @Override
679 public int getGroupUserEntriesCount(long groupId, long userId,
680 java.util.Date displayDate, int status)
681 throws com.liferay.portal.kernel.exception.SystemException {
682 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
683 userId, displayDate, status);
684 }
685
686 @Override
687 public int getGroupUserEntriesCount(long groupId, long userId,
688 java.util.Date displayDate,
689 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
690 throws com.liferay.portal.kernel.exception.SystemException {
691 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
692 userId, displayDate, queryDefinition);
693 }
694
695 @Override
696 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getNoAssetEntries()
697 throws com.liferay.portal.kernel.exception.SystemException {
698 return _blogsEntryLocalService.getNoAssetEntries();
699 }
700
701
705 @Override
706 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
707 long organizationId, java.util.Date displayDate, int status, int start,
708 int end) throws com.liferay.portal.kernel.exception.SystemException {
709 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
710 displayDate, status, start, end);
711 }
712
713
717 @Override
718 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
719 long organizationId, java.util.Date displayDate, int status, int start,
720 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
721 throws com.liferay.portal.kernel.exception.SystemException {
722 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
723 displayDate, status, start, end, obc);
724 }
725
726 @Override
727 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
728 long organizationId, java.util.Date displayDate,
729 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
730 throws com.liferay.portal.kernel.exception.SystemException {
731 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
732 displayDate, queryDefinition);
733 }
734
735
739 @Override
740 public int getOrganizationEntriesCount(long organizationId,
741 java.util.Date displayDate, int status)
742 throws com.liferay.portal.kernel.exception.SystemException {
743 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
744 displayDate, status);
745 }
746
747 @Override
748 public int getOrganizationEntriesCount(long organizationId,
749 java.util.Date displayDate,
750 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
751 throws com.liferay.portal.kernel.exception.SystemException {
752 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
753 displayDate, queryDefinition);
754 }
755
756 @Override
757 public void moveEntriesToTrash(long groupId, long userId)
758 throws com.liferay.portal.kernel.exception.PortalException,
759 com.liferay.portal.kernel.exception.SystemException {
760 _blogsEntryLocalService.moveEntriesToTrash(groupId, userId);
761 }
762
763
775 @Override
776 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
777 long userId, com.liferay.portlet.blogs.model.BlogsEntry entry)
778 throws com.liferay.portal.kernel.exception.PortalException,
779 com.liferay.portal.kernel.exception.SystemException {
780 return _blogsEntryLocalService.moveEntryToTrash(userId, entry);
781 }
782
783
794 @Override
795 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
796 long userId, long entryId)
797 throws com.liferay.portal.kernel.exception.PortalException,
798 com.liferay.portal.kernel.exception.SystemException {
799 return _blogsEntryLocalService.moveEntryToTrash(userId, entryId);
800 }
801
802
813 @Override
814 public void restoreEntryFromTrash(long userId, long entryId)
815 throws com.liferay.portal.kernel.exception.PortalException,
816 com.liferay.portal.kernel.exception.SystemException {
817 _blogsEntryLocalService.restoreEntryFromTrash(userId, entryId);
818 }
819
820 @Override
821 public void subscribe(long userId, long groupId)
822 throws com.liferay.portal.kernel.exception.PortalException,
823 com.liferay.portal.kernel.exception.SystemException {
824 _blogsEntryLocalService.subscribe(userId, groupId);
825 }
826
827 @Override
828 public void unsubscribe(long userId, long groupId)
829 throws com.liferay.portal.kernel.exception.PortalException,
830 com.liferay.portal.kernel.exception.SystemException {
831 _blogsEntryLocalService.unsubscribe(userId, groupId);
832 }
833
834 @Override
835 public void updateAsset(long userId,
836 com.liferay.portlet.blogs.model.BlogsEntry entry,
837 long[] assetCategoryIds, java.lang.String[] assetTagNames,
838 long[] assetLinkEntryIds)
839 throws com.liferay.portal.kernel.exception.PortalException,
840 com.liferay.portal.kernel.exception.SystemException {
841 _blogsEntryLocalService.updateAsset(userId, entry, assetCategoryIds,
842 assetTagNames, assetLinkEntryIds);
843 }
844
845 @Override
846 public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
847 long entryId, java.lang.String title, java.lang.String description,
848 java.lang.String content, int displayDateMonth, int displayDateDay,
849 int displayDateYear, int displayDateHour, int displayDateMinute,
850 boolean allowPingbacks, boolean allowTrackbacks,
851 java.lang.String[] trackbacks, boolean smallImage,
852 java.lang.String smallImageURL, java.lang.String smallImageFileName,
853 java.io.InputStream smallImageInputStream,
854 com.liferay.portal.service.ServiceContext serviceContext)
855 throws com.liferay.portal.kernel.exception.PortalException,
856 com.liferay.portal.kernel.exception.SystemException {
857 return _blogsEntryLocalService.updateEntry(userId, entryId, title,
858 description, content, displayDateMonth, displayDateDay,
859 displayDateYear, displayDateHour, displayDateMinute,
860 allowPingbacks, allowTrackbacks, trackbacks, smallImage,
861 smallImageURL, smallImageFileName, smallImageInputStream,
862 serviceContext);
863 }
864
865 @Override
866 public void updateEntryResources(
867 com.liferay.portlet.blogs.model.BlogsEntry entry,
868 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
869 throws com.liferay.portal.kernel.exception.PortalException,
870 com.liferay.portal.kernel.exception.SystemException {
871 _blogsEntryLocalService.updateEntryResources(entry, groupPermissions,
872 guestPermissions);
873 }
874
875 @Override
876 public com.liferay.portlet.blogs.model.BlogsEntry updateStatus(
877 long userId, long entryId, int status,
878 com.liferay.portal.service.ServiceContext serviceContext)
879 throws com.liferay.portal.kernel.exception.PortalException,
880 com.liferay.portal.kernel.exception.SystemException {
881 return _blogsEntryLocalService.updateStatus(userId, entryId, status,
882 serviceContext);
883 }
884
885
888 public BlogsEntryLocalService getWrappedBlogsEntryLocalService() {
889 return _blogsEntryLocalService;
890 }
891
892
895 public void setWrappedBlogsEntryLocalService(
896 BlogsEntryLocalService blogsEntryLocalService) {
897 _blogsEntryLocalService = blogsEntryLocalService;
898 }
899
900 @Override
901 public BlogsEntryLocalService getWrappedService() {
902 return _blogsEntryLocalService;
903 }
904
905 @Override
906 public void setWrappedService(BlogsEntryLocalService blogsEntryLocalService) {
907 _blogsEntryLocalService = blogsEntryLocalService;
908 }
909
910 private BlogsEntryLocalService _blogsEntryLocalService;
911 }