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
346 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
347 long companyId, java.util.Date displayDate, int status, int start,
348 int end) throws com.liferay.portal.kernel.exception.SystemException {
349 return _blogsEntryLocalService.getCompanyEntries(companyId,
350 displayDate, status, start, end);
351 }
352
353
356 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
357 long companyId, java.util.Date displayDate, int status, int start,
358 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
359 throws com.liferay.portal.kernel.exception.SystemException {
360 return _blogsEntryLocalService.getCompanyEntries(companyId,
361 displayDate, status, start, end, obc);
362 }
363
364 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getCompanyEntries(
365 long companyId, java.util.Date displayDate,
366 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
367 throws com.liferay.portal.kernel.exception.SystemException {
368 return _blogsEntryLocalService.getCompanyEntries(companyId,
369 displayDate, queryDefinition);
370 }
371
372
375 public int getCompanyEntriesCount(long companyId,
376 java.util.Date displayDate, int status)
377 throws com.liferay.portal.kernel.exception.SystemException {
378 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
379 displayDate, status);
380 }
381
382 public int getCompanyEntriesCount(long companyId,
383 java.util.Date displayDate,
384 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
385 throws com.liferay.portal.kernel.exception.SystemException {
386 return _blogsEntryLocalService.getCompanyEntriesCount(companyId,
387 displayDate, queryDefinition);
388 }
389
390 public com.liferay.portlet.blogs.model.BlogsEntry[] getEntriesPrevAndNext(
391 long entryId)
392 throws com.liferay.portal.kernel.exception.PortalException,
393 com.liferay.portal.kernel.exception.SystemException {
394 return _blogsEntryLocalService.getEntriesPrevAndNext(entryId);
395 }
396
397 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long entryId)
398 throws com.liferay.portal.kernel.exception.PortalException,
399 com.liferay.portal.kernel.exception.SystemException {
400 return _blogsEntryLocalService.getEntry(entryId);
401 }
402
403 public com.liferay.portlet.blogs.model.BlogsEntry getEntry(long groupId,
404 java.lang.String urlTitle)
405 throws com.liferay.portal.kernel.exception.PortalException,
406 com.liferay.portal.kernel.exception.SystemException {
407 return _blogsEntryLocalService.getEntry(groupId, urlTitle);
408 }
409
410
413 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
414 long groupId, java.util.Date displayDate, int status, int start, int end)
415 throws com.liferay.portal.kernel.exception.SystemException {
416 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
417 status, start, end);
418 }
419
420
423 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
424 long groupId, java.util.Date displayDate, int status, int start,
425 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
426 throws com.liferay.portal.kernel.exception.SystemException {
427 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
428 status, start, end, obc);
429 }
430
431 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
432 long groupId, java.util.Date displayDate,
433 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
434 throws com.liferay.portal.kernel.exception.SystemException {
435 return _blogsEntryLocalService.getGroupEntries(groupId, displayDate,
436 queryDefinition);
437 }
438
439
442 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
443 long groupId, int status, int start, int end)
444 throws com.liferay.portal.kernel.exception.SystemException {
445 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
446 end);
447 }
448
449
452 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
453 long groupId, int status, int start, int end,
454 com.liferay.portal.kernel.util.OrderByComparator obc)
455 throws com.liferay.portal.kernel.exception.SystemException {
456 return _blogsEntryLocalService.getGroupEntries(groupId, status, start,
457 end, obc);
458 }
459
460 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupEntries(
461 long groupId,
462 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
463 throws com.liferay.portal.kernel.exception.SystemException {
464 return _blogsEntryLocalService.getGroupEntries(groupId, queryDefinition);
465 }
466
467
470 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
471 int status) throws com.liferay.portal.kernel.exception.SystemException {
472 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
473 displayDate, status);
474 }
475
476 public int getGroupEntriesCount(long groupId, java.util.Date displayDate,
477 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
478 throws com.liferay.portal.kernel.exception.SystemException {
479 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
480 displayDate, queryDefinition);
481 }
482
483
486 public int getGroupEntriesCount(long groupId, int status)
487 throws com.liferay.portal.kernel.exception.SystemException {
488 return _blogsEntryLocalService.getGroupEntriesCount(groupId, status);
489 }
490
491 public int getGroupEntriesCount(long groupId,
492 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
493 throws com.liferay.portal.kernel.exception.SystemException {
494 return _blogsEntryLocalService.getGroupEntriesCount(groupId,
495 queryDefinition);
496 }
497
498
501 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
502 long companyId, long groupId, java.util.Date displayDate, int status,
503 int start, int end)
504 throws com.liferay.portal.kernel.exception.SystemException {
505 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
506 displayDate, status, start, end);
507 }
508
509 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupsEntries(
510 long companyId, long groupId, java.util.Date displayDate,
511 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
512 throws com.liferay.portal.kernel.exception.SystemException {
513 return _blogsEntryLocalService.getGroupsEntries(companyId, groupId,
514 displayDate, queryDefinition);
515 }
516
517
521 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
522 long groupId, long userId, java.util.Date displayDate, int status,
523 int start, int end)
524 throws com.liferay.portal.kernel.exception.SystemException {
525 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
526 displayDate, status, start, end);
527 }
528
529
533 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
534 long groupId, long userId, java.util.Date displayDate, int status,
535 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
536 throws com.liferay.portal.kernel.exception.SystemException {
537 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
538 displayDate, status, start, end, obc);
539 }
540
541 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getGroupUserEntries(
542 long groupId, long userId, java.util.Date displayDate,
543 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
544 throws com.liferay.portal.kernel.exception.SystemException {
545 return _blogsEntryLocalService.getGroupUserEntries(groupId, userId,
546 displayDate, queryDefinition);
547 }
548
549
553 public int getGroupUserEntriesCount(long groupId, long userId,
554 java.util.Date displayDate, int status)
555 throws com.liferay.portal.kernel.exception.SystemException {
556 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
557 userId, displayDate, status);
558 }
559
560 public int getGroupUserEntriesCount(long groupId, long userId,
561 java.util.Date displayDate,
562 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
563 throws com.liferay.portal.kernel.exception.SystemException {
564 return _blogsEntryLocalService.getGroupUserEntriesCount(groupId,
565 userId, displayDate, queryDefinition);
566 }
567
568 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getNoAssetEntries()
569 throws com.liferay.portal.kernel.exception.SystemException {
570 return _blogsEntryLocalService.getNoAssetEntries();
571 }
572
573
576 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
577 long organizationId, java.util.Date displayDate, int status, int start,
578 int end) throws com.liferay.portal.kernel.exception.SystemException {
579 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
580 displayDate, status, start, end);
581 }
582
583
586 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
587 long organizationId, java.util.Date displayDate, int status, int start,
588 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
589 throws com.liferay.portal.kernel.exception.SystemException {
590 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
591 displayDate, status, start, end, obc);
592 }
593
594 public java.util.List<com.liferay.portlet.blogs.model.BlogsEntry> getOrganizationEntries(
595 long organizationId, java.util.Date displayDate,
596 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
597 throws com.liferay.portal.kernel.exception.SystemException {
598 return _blogsEntryLocalService.getOrganizationEntries(organizationId,
599 displayDate, queryDefinition);
600 }
601
602
606 public int getOrganizationEntriesCount(long organizationId,
607 java.util.Date displayDate, int status)
608 throws com.liferay.portal.kernel.exception.SystemException {
609 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
610 displayDate, status);
611 }
612
613 public int getOrganizationEntriesCount(long organizationId,
614 java.util.Date displayDate,
615 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
616 throws com.liferay.portal.kernel.exception.SystemException {
617 return _blogsEntryLocalService.getOrganizationEntriesCount(organizationId,
618 displayDate, queryDefinition);
619 }
620
621 public void moveEntriesToTrash(long groupId, long userId)
622 throws com.liferay.portal.kernel.exception.PortalException,
623 com.liferay.portal.kernel.exception.SystemException {
624 _blogsEntryLocalService.moveEntriesToTrash(groupId, userId);
625 }
626
627
639 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
640 long userId, com.liferay.portlet.blogs.model.BlogsEntry entry)
641 throws com.liferay.portal.kernel.exception.PortalException,
642 com.liferay.portal.kernel.exception.SystemException {
643 return _blogsEntryLocalService.moveEntryToTrash(userId, entry);
644 }
645
646
657 public com.liferay.portlet.blogs.model.BlogsEntry moveEntryToTrash(
658 long userId, long entryId)
659 throws com.liferay.portal.kernel.exception.PortalException,
660 com.liferay.portal.kernel.exception.SystemException {
661 return _blogsEntryLocalService.moveEntryToTrash(userId, entryId);
662 }
663
664
675 public void restoreEntryFromTrash(long userId, long entryId)
676 throws com.liferay.portal.kernel.exception.PortalException,
677 com.liferay.portal.kernel.exception.SystemException {
678 _blogsEntryLocalService.restoreEntryFromTrash(userId, entryId);
679 }
680
681 public void subscribe(long userId, long groupId)
682 throws com.liferay.portal.kernel.exception.PortalException,
683 com.liferay.portal.kernel.exception.SystemException {
684 _blogsEntryLocalService.subscribe(userId, groupId);
685 }
686
687 public void unsubscribe(long userId, long groupId)
688 throws com.liferay.portal.kernel.exception.PortalException,
689 com.liferay.portal.kernel.exception.SystemException {
690 _blogsEntryLocalService.unsubscribe(userId, groupId);
691 }
692
693 public void updateAsset(long userId,
694 com.liferay.portlet.blogs.model.BlogsEntry entry,
695 long[] assetCategoryIds, java.lang.String[] assetTagNames,
696 long[] assetLinkEntryIds)
697 throws com.liferay.portal.kernel.exception.PortalException,
698 com.liferay.portal.kernel.exception.SystemException {
699 _blogsEntryLocalService.updateAsset(userId, entry, assetCategoryIds,
700 assetTagNames, assetLinkEntryIds);
701 }
702
703 public com.liferay.portlet.blogs.model.BlogsEntry updateEntry(long userId,
704 long entryId, java.lang.String title, java.lang.String description,
705 java.lang.String content, int displayDateMonth, int displayDateDay,
706 int displayDateYear, int displayDateHour, int displayDateMinute,
707 boolean allowPingbacks, boolean allowTrackbacks,
708 java.lang.String[] trackbacks, boolean smallImage,
709 java.lang.String smallImageURL, java.lang.String smallImageFileName,
710 java.io.InputStream smallImageInputStream,
711 com.liferay.portal.service.ServiceContext serviceContext)
712 throws com.liferay.portal.kernel.exception.PortalException,
713 com.liferay.portal.kernel.exception.SystemException {
714 return _blogsEntryLocalService.updateEntry(userId, entryId, title,
715 description, content, displayDateMonth, displayDateDay,
716 displayDateYear, displayDateHour, displayDateMinute,
717 allowPingbacks, allowTrackbacks, trackbacks, smallImage,
718 smallImageURL, smallImageFileName, smallImageInputStream,
719 serviceContext);
720 }
721
722 public void updateEntryResources(
723 com.liferay.portlet.blogs.model.BlogsEntry entry,
724 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
725 throws com.liferay.portal.kernel.exception.PortalException,
726 com.liferay.portal.kernel.exception.SystemException {
727 _blogsEntryLocalService.updateEntryResources(entry, groupPermissions,
728 guestPermissions);
729 }
730
731 public com.liferay.portlet.blogs.model.BlogsEntry updateStatus(
732 long userId, long entryId, int status,
733 com.liferay.portal.service.ServiceContext serviceContext)
734 throws com.liferay.portal.kernel.exception.PortalException,
735 com.liferay.portal.kernel.exception.SystemException {
736 return _blogsEntryLocalService.updateStatus(userId, entryId, status,
737 serviceContext);
738 }
739
740
743 public BlogsEntryLocalService getWrappedBlogsEntryLocalService() {
744 return _blogsEntryLocalService;
745 }
746
747
750 public void setWrappedBlogsEntryLocalService(
751 BlogsEntryLocalService blogsEntryLocalService) {
752 _blogsEntryLocalService = blogsEntryLocalService;
753 }
754
755 public BlogsEntryLocalService getWrappedService() {
756 return _blogsEntryLocalService;
757 }
758
759 public void setWrappedService(BlogsEntryLocalService blogsEntryLocalService) {
760 _blogsEntryLocalService = blogsEntryLocalService;
761 }
762
763 private BlogsEntryLocalService _blogsEntryLocalService;
764 }