001
014
015 package com.liferay.portlet.blogs.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class BlogsEntryLocalServiceWrapper implements BlogsEntryLocalService,
029 ServiceWrapper<BlogsEntryLocalService> {
030 public BlogsEntryLocalServiceWrapper(
031 BlogsEntryLocalService blogsEntryLocalService) {
032 _blogsEntryLocalService = blogsEntryLocalService;
033 }
034
035
042 public com.liferay.portlet.blogs.model.BlogsEntry addBlogsEntry(
043 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _blogsEntryLocalService.addBlogsEntry(blogsEntry);
046 }
047
048
054 public com.liferay.portlet.blogs.model.BlogsEntry createBlogsEntry(
055 long entryId) {
056 return _blogsEntryLocalService.createBlogsEntry(entryId);
057 }
058
059
067 public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
068 long entryId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _blogsEntryLocalService.deleteBlogsEntry(entryId);
072 }
073
074
081 public com.liferay.portlet.blogs.model.BlogsEntry deleteBlogsEntry(
082 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _blogsEntryLocalService.deleteBlogsEntry(blogsEntry);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _blogsEntryLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _blogsEntryLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _blogsEntryLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _blogsEntryLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.blogs.model.BlogsEntry fetchBlogsEntry(
163 long entryId)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _blogsEntryLocalService.fetchBlogsEntry(entryId);
166 }
167
168
176 public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntry(
177 long entryId)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _blogsEntryLocalService.getBlogsEntry(entryId);
181 }
182
183 public com.liferay.portal.model.PersistedModel getPersistedModel(
184 java.io.Serializable primaryKeyObj)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _blogsEntryLocalService.getPersistedModel(primaryKeyObj);
188 }
189
190
199 public com.liferay.portlet.blogs.model.BlogsEntry getBlogsEntryByUuidAndGroupId(
200 java.lang.String uuid, long groupId)
201 throws com.liferay.portal.kernel.exception.PortalException,
202 com.liferay.portal.kernel.exception.SystemException {
203 return _blogsEntryLocalService.getBlogsEntryByUuidAndGroupId(uuid,
204 groupId);
205 }
206
207
219 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getBlogsEntries(
220 int start, int end)
221 throws com.liferay.portal.kernel.exception.SystemException {
222 return _blogsEntryLocalService.getBlogsEntries(start, end);
223 }
224
225
231 public int getBlogsEntriesCount()
232 throws com.liferay.portal.kernel.exception.SystemException {
233 return _blogsEntryLocalService.getBlogsEntriesCount();
234 }
235
236
243 public com.liferay.portlet.blogs.model.BlogsEntry updateBlogsEntry(
244 com.liferay.portlet.blogs.model.BlogsEntry blogsEntry)
245 throws com.liferay.portal.kernel.exception.SystemException {
246 return _blogsEntryLocalService.updateBlogsEntry(blogsEntry);
247 }
248
249
254 public java.lang.String getBeanIdentifier() {
255 return _blogsEntryLocalService.getBeanIdentifier();
256 }
257
258
263 public void setBeanIdentifier(java.lang.String beanIdentifier) {
264 _blogsEntryLocalService.setBeanIdentifier(beanIdentifier);
265 }
266
267 public com.liferay.portlet.blogs.model.BlogsEntry addEntry(long userId,
268 java.lang.String title, java.lang.String description,
269 java.lang.String content, int displayDateMonth, int displayDateDay,
270 int displayDateYear, int displayDateHour, int displayDateMinute,
271 boolean allowPingbacks, boolean allowTrackbacks,
272 java.lang.String[] trackbacks, boolean smallImage,
273 java.lang.String smallImageURL, java.lang.String smallImageFileName,
274 java.io.InputStream smallImageInputStream,
275 com.liferay.portal.service.ServiceContext serviceContext)
276 throws com.liferay.portal.kernel.exception.PortalException,
277 com.liferay.portal.kernel.exception.SystemException {
278 return _blogsEntryLocalService.addEntry(userId, title, description,
279 content, displayDateMonth, displayDateDay, displayDateYear,
280 displayDateHour, displayDateMinute, allowPingbacks,
281 allowTrackbacks, trackbacks, smallImage, smallImageURL,
282 smallImageFileName, smallImageInputStream, serviceContext);
283 }
284
285 public void addEntryResources(
286 com.liferay.portlet.blogs.model.BlogsEntry entry,
287 boolean addGroupPermissions, boolean addGuestPermissions)
288 throws com.liferay.portal.kernel.exception.PortalException,
289 com.liferay.portal.kernel.exception.SystemException {
290 _blogsEntryLocalService.addEntryResources(entry, addGroupPermissions,
291 addGuestPermissions);
292 }
293
294 public void addEntryResources(
295 com.liferay.portlet.blogs.model.BlogsEntry entry,
296 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
297 throws com.liferay.portal.kernel.exception.PortalException,
298 com.liferay.portal.kernel.exception.SystemException {
299 _blogsEntryLocalService.addEntryResources(entry, groupPermissions,
300 guestPermissions);
301 }
302
303 public void addEntryResources(long entryId, boolean addGroupPermissions,
304 boolean addGuestPermissions)
305 throws com.liferay.portal.kernel.exception.PortalException,
306 com.liferay.portal.kernel.exception.SystemException {
307 _blogsEntryLocalService.addEntryResources(entryId, addGroupPermissions,
308 addGuestPermissions);
309 }
310
311 public void addEntryResources(long entryId,
312 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
313 throws com.liferay.portal.kernel.exception.PortalException,
314 com.liferay.portal.kernel.exception.SystemException {
315 _blogsEntryLocalService.addEntryResources(entryId, groupPermissions,
316 guestPermissions);
317 }
318
319 public void checkEntries()
320 throws com.liferay.portal.kernel.exception.PortalException,
321 com.liferay.portal.kernel.exception.SystemException {
322 _blogsEntryLocalService.checkEntries();
323 }
324
325 public void deleteEntries(long groupId)
326 throws com.liferay.portal.kernel.exception.PortalException,
327 com.liferay.portal.kernel.exception.SystemException {
328 _blogsEntryLocalService.deleteEntries(groupId);
329 }
330
331 public void deleteEntry(com.liferay.portlet.blogs.model.BlogsEntry entry)
332 throws com.liferay.portal.kernel.exception.PortalException,
333 com.liferay.portal.kernel.exception.SystemException {
334 _blogsEntryLocalService.deleteEntry(entry);
335 }
336
337 public void deleteEntry(long entryId)
338 throws com.liferay.portal.kernel.exception.PortalException,
339 com.liferay.portal.kernel.exception.SystemException {
340 _blogsEntryLocalService.deleteEntry(entryId);
341 }
342
343
347 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
348 long companyId, java.util.Date displayDate, int status, int start,
349 int end) throws com.liferay.portal.kernel.exception.SystemException {
350 return _blogsEntryLocalService.getCompanyEntries(companyId,
351 displayDate, status, start, end);
352 }
353
354
358 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
359 long companyId, java.util.Date displayDate, int status, int start,
360 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
361 throws com.liferay.portal.kernel.exception.SystemException {
362 return _blogsEntryLocalService.getCompanyEntries(companyId,
363 displayDate, status, start, end, obc);
364 }
365
366 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
367 long companyId, java.util.Date displayDate,
368 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
369 throws com.liferay.portal.kernel.exception.SystemException {
370 return _blogsEntryLocalService.getCompanyEntries(companyId,
371 displayDate, queryDefinition);
372 }
373
374
378 public int getCompanyEntriesCount(long companyId,
379 java.util.Date displayDate, int status)
380 throws com.liferay.portal.kernel.exception.SystemException {
381 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
382 displayDate, status);
383 }
384
385 public int getCompanyEntriesCount(long companyId,
386 java.util.Date displayDate,
387 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
388 throws com.liferay.portal.kernel.exception.SystemException {
389 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
390 displayDate, queryDefinition);
391 }
392
393 public com.liferay.portlet.blogs.model.BlogsEntry[] getEntriesPrevAndNext(
394 long entryId)
395 throws com.liferay.portal.kernel.exception.PortalException,
396 com.liferay.portal.kernel.exception.SystemException {
397 return _blogsEntryLocalService.getEntriesPrevAndNext(entryId);
398 }
399
400 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long entryId)
401 throws com.liferay.portal.kernel.exception.PortalException,
402 com.liferay.portal.kernel.exception.SystemException {
403 return _blogsEntryLocalService.getEntry(entryId);
404 }
405
406 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long groupId,
407 java.lang.String urlTitle)
408 throws com.liferay.portal.kernel.exception.PortalException,
409 com.liferay.portal.kernel.exception.SystemException {
410 return _blogsEntryLocalService.getEntry(groupId, urlTitle);
411 }
412
413
417 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
418 long groupId, java.util.Date displayDate, int status, int start, int end)
419 throws com.liferay.portal.kernel.exception.SystemException {
420 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
421 status, start, end);
422 }
423
424
428 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
429 long groupId, java.util.Date displayDate, int status, int start,
430 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
431 throws com.liferay.portal.kernel.exception.SystemException {
432 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
433 status, start, end, obc);
434 }
435
436 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
437 long groupId, java.util.Date displayDate,
438 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
439 throws com.liferay.portal.kernel.exception.SystemException {
440 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
441 queryDefinition);
442 }
443
444
448 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
449 long groupId, int status, int start, int end)
450 throws com.liferay.portal.kernel.exception.SystemException {
451 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
452 end);
453 }
454
455
459 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
460 long groupId, int status, int start, int end,
461 com.liferay.portal.kernel.util.OrderByComparator obc)
462 throws com.liferay.portal.kernel.exception.SystemException {
463 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
464 end, obc);
465 }
466
467 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
468 long groupId,
469 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
470 throws com.liferay.portal.kernel.exception.SystemException {
471 return _blogsEntryLocalService.getGroupEntries(groupId, queryDefinition);
472 }
473
474
478 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
479 int status) throws com.liferay.portal.kernel.exception.SystemException {
480 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
481 displayDate, status);
482 }
483
484 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
485 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
486 throws com.liferay.portal.kernel.exception.SystemException {
487 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
488 displayDate, queryDefinition);
489 }
490
491
495 public int getGroupEntriesCount(long groupId, int status)
496 throws com.liferay.portal.kernel.exception.SystemException {
497 return _blogsEntryLocalService.getGroupEntriesCount(groupId, status);
498 }
499
500 public int getGroupEntriesCount(long groupId,
501 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
502 throws com.liferay.portal.kernel.exception.SystemException {
503 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
504 queryDefinition);
505 }
506
507
511 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
512 long companyId, long groupId, java.util.Date displayDate, int status,
513 int start, int end)
514 throws com.liferay.portal.kernel.exception.SystemException {
515 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
516 displayDate, status, start, end);
517 }
518
519 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
520 long companyId, long groupId, java.util.Date displayDate,
521 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
522 throws com.liferay.portal.kernel.exception.SystemException {
523 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
524 displayDate, queryDefinition);
525 }
526
527
531 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
532 long groupId, long userId, java.util.Date displayDate, int status,
533 int start, int end)
534 throws com.liferay.portal.kernel.exception.SystemException {
535 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
536 displayDate, status, start, end);
537 }
538
539
543 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
544 long groupId, long userId, java.util.Date displayDate, int status,
545 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
546 throws com.liferay.portal.kernel.exception.SystemException {
547 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
548 displayDate, status, start, end, obc);
549 }
550
551 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
552 long groupId, long userId, java.util.Date displayDate,
553 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
554 throws com.liferay.portal.kernel.exception.SystemException {
555 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
556 displayDate, queryDefinition);
557 }
558
559
563 public int getGroupUserEntriesCount(long groupId, long userId,
564 java.util.Date displayDate, int status)
565 throws com.liferay.portal.kernel.exception.SystemException {
566 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
567 userId, displayDate, status);
568 }
569
570 public int getGroupUserEntriesCount(long groupId, long userId,
571 java.util.Date displayDate,
572 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
573 throws com.liferay.portal.kernel.exception.SystemException {
574 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
575 userId, displayDate, queryDefinition);
576 }
577
578 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getNoAssetEntries()
579 throws com.liferay.portal.kernel.exception.SystemException {
580 return _blogsEntryLocalService.getNoAssetEntries();
581 }
582
583
587 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
588 long organizationId, java.util.Date displayDate, int status, int start,
589 int end) throws com.liferay.portal.kernel.exception.SystemException {
590 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
591 displayDate, status, start, end);
592 }
593
594
598 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
599 long organizationId, java.util.Date displayDate, int status, int start,
600 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
601 throws com.liferay.portal.kernel.exception.SystemException {
602 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
603 displayDate, status, start, end, obc);
604 }
605
606 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
607 long organizationId, java.util.Date displayDate,
608 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
609 throws com.liferay.portal.kernel.exception.SystemException {
610 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
611 displayDate, queryDefinition);
612 }
613
614
618 public int getOrganizationEntriesCount(long organizationId,
619 java.util.Date displayDate, int status)
620 throws com.liferay.portal.kernel.exception.SystemException {
621 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
622 displayDate, status);
623 }
624
625 public int getOrganizationEntriesCount(long organizationId,
626 java.util.Date displayDate,
627 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
628 throws com.liferay.portal.kernel.exception.SystemException {
629 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
630 displayDate, queryDefinition);
631 }
632
633 public void moveEntriesToTrash(long groupId, long userId)
634 throws com.liferay.portal.kernel.exception.PortalException,
635 com.liferay.portal.kernel.exception.SystemException {
636 _blogsEntryLocalService.moveEntriesToTrash(groupId, userId);
637 }
638
639
651 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
652 long userId, com.liferay.portlet.blogs.model.BlogsEntry entry)
653 throws com.liferay.portal.kernel.exception.PortalException,
654 com.liferay.portal.kernel.exception.SystemException {
655 return _blogsEntryLocalService.moveEntryToTrash(userId, entry);
656 }
657
658
669 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
670 long userId, long entryId)
671 throws com.liferay.portal.kernel.exception.PortalException,
672 com.liferay.portal.kernel.exception.SystemException {
673 return _blogsEntryLocalService.moveEntryToTrash(userId, entryId);
674 }
675
676
687 public void restoreEntryFromTrash(long userId, long entryId)
688 throws com.liferay.portal.kernel.exception.PortalException,
689 com.liferay.portal.kernel.exception.SystemException {
690 _blogsEntryLocalService.restoreEntryFromTrash(userId, entryId);
691 }
692
693 public void subscribe(long userId, long groupId)
694 throws com.liferay.portal.kernel.exception.PortalException,
695 com.liferay.portal.kernel.exception.SystemException {
696 _blogsEntryLocalService.subscribe(userId, groupId);
697 }
698
699 public void unsubscribe(long userId, long groupId)
700 throws com.liferay.portal.kernel.exception.PortalException,
701 com.liferay.portal.kernel.exception.SystemException {
702 _blogsEntryLocalService.unsubscribe(userId, groupId);
703 }
704
705 public void updateAsset(long userId,
706 com.liferay.portlet.blogs.model.BlogsEntry entry,
707 long[] assetCategoryIds, java.lang.String[] assetTagNames,
708 long[] assetLinkEntryIds)
709 throws com.liferay.portal.kernel.exception.PortalException,
710 com.liferay.portal.kernel.exception.SystemException {
711 _blogsEntryLocalService.updateAsset(userId, entry, assetCategoryIds,
712 assetTagNames, assetLinkEntryIds);
713 }
714
715 public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
716 long entryId, java.lang.String title, java.lang.String description,
717 java.lang.String content, int displayDateMonth, int displayDateDay,
718 int displayDateYear, int displayDateHour, int displayDateMinute,
719 boolean allowPingbacks, boolean allowTrackbacks,
720 java.lang.String[] trackbacks, boolean smallImage,
721 java.lang.String smallImageURL, java.lang.String smallImageFileName,
722 java.io.InputStream smallImageInputStream,
723 com.liferay.portal.service.ServiceContext serviceContext)
724 throws com.liferay.portal.kernel.exception.PortalException,
725 com.liferay.portal.kernel.exception.SystemException {
726 return _blogsEntryLocalService.updateEntry(userId, entryId, title,
727 description, content, displayDateMonth, displayDateDay,
728 displayDateYear, displayDateHour, displayDateMinute,
729 allowPingbacks, allowTrackbacks, trackbacks, smallImage,
730 smallImageURL, smallImageFileName, smallImageInputStream,
731 serviceContext);
732 }
733
734 public void updateEntryResources(
735 com.liferay.portlet.blogs.model.BlogsEntry entry,
736 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
737 throws com.liferay.portal.kernel.exception.PortalException,
738 com.liferay.portal.kernel.exception.SystemException {
739 _blogsEntryLocalService.updateEntryResources(entry, groupPermissions,
740 guestPermissions);
741 }
742
743 public com.liferay.portlet.blogs.model.BlogsEntry updateStatus(
744 long userId, long entryId, int status,
745 com.liferay.portal.service.ServiceContext serviceContext)
746 throws com.liferay.portal.kernel.exception.PortalException,
747 com.liferay.portal.kernel.exception.SystemException {
748 return _blogsEntryLocalService.updateStatus(userId, entryId, status,
749 serviceContext);
750 }
751
752
755 public BlogsEntryLocalService getWrappedBlogsEntryLocalService() {
756 return _blogsEntryLocalService;
757 }
758
759
762 public void setWrappedBlogsEntryLocalService(
763 BlogsEntryLocalService blogsEntryLocalService) {
764 _blogsEntryLocalService = blogsEntryLocalService;
765 }
766
767 public BlogsEntryLocalService getWrappedService() {
768 return _blogsEntryLocalService;
769 }
770
771 public void setWrappedService(BlogsEntryLocalService blogsEntryLocalService) {
772 _blogsEntryLocalService = blogsEntryLocalService;
773 }
774
775 private BlogsEntryLocalService _blogsEntryLocalService;
776 }