1
22
23 package com.liferay.portlet.blogs.service.base;
24
25 import com.liferay.counter.service.CounterLocalService;
26 import com.liferay.counter.service.CounterService;
27
28 import com.liferay.portal.kernel.bean.InitializingBean;
29 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
30 import com.liferay.portal.service.CompanyLocalService;
31 import com.liferay.portal.service.CompanyService;
32 import com.liferay.portal.service.GroupLocalService;
33 import com.liferay.portal.service.GroupService;
34 import com.liferay.portal.service.OrganizationLocalService;
35 import com.liferay.portal.service.OrganizationService;
36 import com.liferay.portal.service.ResourceLocalService;
37 import com.liferay.portal.service.ResourceService;
38 import com.liferay.portal.service.UserLocalService;
39 import com.liferay.portal.service.UserService;
40 import com.liferay.portal.service.base.PrincipalBean;
41 import com.liferay.portal.service.persistence.CompanyPersistence;
42 import com.liferay.portal.service.persistence.GroupFinder;
43 import com.liferay.portal.service.persistence.GroupPersistence;
44 import com.liferay.portal.service.persistence.OrganizationFinder;
45 import com.liferay.portal.service.persistence.OrganizationPersistence;
46 import com.liferay.portal.service.persistence.ResourceFinder;
47 import com.liferay.portal.service.persistence.ResourcePersistence;
48 import com.liferay.portal.service.persistence.UserFinder;
49 import com.liferay.portal.service.persistence.UserPersistence;
50
51 import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
52 import com.liferay.portlet.blogs.service.BlogsEntryService;
53 import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
54 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
55 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
56 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
57 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
58 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
59 import com.liferay.portlet.messageboards.service.MBMessageService;
60 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
61 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
62 import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
63 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
64 import com.liferay.portlet.social.service.SocialActivityLocalService;
65 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
66 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
67 import com.liferay.portlet.tags.service.TagsAssetLocalService;
68 import com.liferay.portlet.tags.service.TagsAssetService;
69 import com.liferay.portlet.tags.service.TagsEntryLocalService;
70 import com.liferay.portlet.tags.service.TagsEntryService;
71 import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
72 import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
73 import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
74 import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
75
76
82 public abstract class BlogsEntryServiceBaseImpl extends PrincipalBean
83 implements BlogsEntryService, InitializingBean {
84 public BlogsEntryLocalService getBlogsEntryLocalService() {
85 return blogsEntryLocalService;
86 }
87
88 public void setBlogsEntryLocalService(
89 BlogsEntryLocalService blogsEntryLocalService) {
90 this.blogsEntryLocalService = blogsEntryLocalService;
91 }
92
93 public BlogsEntryPersistence getBlogsEntryPersistence() {
94 return blogsEntryPersistence;
95 }
96
97 public void setBlogsEntryPersistence(
98 BlogsEntryPersistence blogsEntryPersistence) {
99 this.blogsEntryPersistence = blogsEntryPersistence;
100 }
101
102 public BlogsEntryFinder getBlogsEntryFinder() {
103 return blogsEntryFinder;
104 }
105
106 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
107 this.blogsEntryFinder = blogsEntryFinder;
108 }
109
110 public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
111 return blogsStatsUserLocalService;
112 }
113
114 public void setBlogsStatsUserLocalService(
115 BlogsStatsUserLocalService blogsStatsUserLocalService) {
116 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
117 }
118
119 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
120 return blogsStatsUserPersistence;
121 }
122
123 public void setBlogsStatsUserPersistence(
124 BlogsStatsUserPersistence blogsStatsUserPersistence) {
125 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
126 }
127
128 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
129 return blogsStatsUserFinder;
130 }
131
132 public void setBlogsStatsUserFinder(
133 BlogsStatsUserFinder blogsStatsUserFinder) {
134 this.blogsStatsUserFinder = blogsStatsUserFinder;
135 }
136
137 public CounterLocalService getCounterLocalService() {
138 return counterLocalService;
139 }
140
141 public void setCounterLocalService(CounterLocalService counterLocalService) {
142 this.counterLocalService = counterLocalService;
143 }
144
145 public CounterService getCounterService() {
146 return counterService;
147 }
148
149 public void setCounterService(CounterService counterService) {
150 this.counterService = counterService;
151 }
152
153 public CompanyLocalService getCompanyLocalService() {
154 return companyLocalService;
155 }
156
157 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
158 this.companyLocalService = companyLocalService;
159 }
160
161 public CompanyService getCompanyService() {
162 return companyService;
163 }
164
165 public void setCompanyService(CompanyService companyService) {
166 this.companyService = companyService;
167 }
168
169 public CompanyPersistence getCompanyPersistence() {
170 return companyPersistence;
171 }
172
173 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
174 this.companyPersistence = companyPersistence;
175 }
176
177 public GroupLocalService getGroupLocalService() {
178 return groupLocalService;
179 }
180
181 public void setGroupLocalService(GroupLocalService groupLocalService) {
182 this.groupLocalService = groupLocalService;
183 }
184
185 public GroupService getGroupService() {
186 return groupService;
187 }
188
189 public void setGroupService(GroupService groupService) {
190 this.groupService = groupService;
191 }
192
193 public GroupPersistence getGroupPersistence() {
194 return groupPersistence;
195 }
196
197 public void setGroupPersistence(GroupPersistence groupPersistence) {
198 this.groupPersistence = groupPersistence;
199 }
200
201 public GroupFinder getGroupFinder() {
202 return groupFinder;
203 }
204
205 public void setGroupFinder(GroupFinder groupFinder) {
206 this.groupFinder = groupFinder;
207 }
208
209 public OrganizationLocalService getOrganizationLocalService() {
210 return organizationLocalService;
211 }
212
213 public void setOrganizationLocalService(
214 OrganizationLocalService organizationLocalService) {
215 this.organizationLocalService = organizationLocalService;
216 }
217
218 public OrganizationService getOrganizationService() {
219 return organizationService;
220 }
221
222 public void setOrganizationService(OrganizationService organizationService) {
223 this.organizationService = organizationService;
224 }
225
226 public OrganizationPersistence getOrganizationPersistence() {
227 return organizationPersistence;
228 }
229
230 public void setOrganizationPersistence(
231 OrganizationPersistence organizationPersistence) {
232 this.organizationPersistence = organizationPersistence;
233 }
234
235 public OrganizationFinder getOrganizationFinder() {
236 return organizationFinder;
237 }
238
239 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
240 this.organizationFinder = organizationFinder;
241 }
242
243 public ResourceLocalService getResourceLocalService() {
244 return resourceLocalService;
245 }
246
247 public void setResourceLocalService(
248 ResourceLocalService resourceLocalService) {
249 this.resourceLocalService = resourceLocalService;
250 }
251
252 public ResourceService getResourceService() {
253 return resourceService;
254 }
255
256 public void setResourceService(ResourceService resourceService) {
257 this.resourceService = resourceService;
258 }
259
260 public ResourcePersistence getResourcePersistence() {
261 return resourcePersistence;
262 }
263
264 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
265 this.resourcePersistence = resourcePersistence;
266 }
267
268 public ResourceFinder getResourceFinder() {
269 return resourceFinder;
270 }
271
272 public void setResourceFinder(ResourceFinder resourceFinder) {
273 this.resourceFinder = resourceFinder;
274 }
275
276 public UserLocalService getUserLocalService() {
277 return userLocalService;
278 }
279
280 public void setUserLocalService(UserLocalService userLocalService) {
281 this.userLocalService = userLocalService;
282 }
283
284 public UserService getUserService() {
285 return userService;
286 }
287
288 public void setUserService(UserService userService) {
289 this.userService = userService;
290 }
291
292 public UserPersistence getUserPersistence() {
293 return userPersistence;
294 }
295
296 public void setUserPersistence(UserPersistence userPersistence) {
297 this.userPersistence = userPersistence;
298 }
299
300 public UserFinder getUserFinder() {
301 return userFinder;
302 }
303
304 public void setUserFinder(UserFinder userFinder) {
305 this.userFinder = userFinder;
306 }
307
308 public MBMessageLocalService getMBMessageLocalService() {
309 return mbMessageLocalService;
310 }
311
312 public void setMBMessageLocalService(
313 MBMessageLocalService mbMessageLocalService) {
314 this.mbMessageLocalService = mbMessageLocalService;
315 }
316
317 public MBMessageService getMBMessageService() {
318 return mbMessageService;
319 }
320
321 public void setMBMessageService(MBMessageService mbMessageService) {
322 this.mbMessageService = mbMessageService;
323 }
324
325 public MBMessagePersistence getMBMessagePersistence() {
326 return mbMessagePersistence;
327 }
328
329 public void setMBMessagePersistence(
330 MBMessagePersistence mbMessagePersistence) {
331 this.mbMessagePersistence = mbMessagePersistence;
332 }
333
334 public MBMessageFinder getMBMessageFinder() {
335 return mbMessageFinder;
336 }
337
338 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
339 this.mbMessageFinder = mbMessageFinder;
340 }
341
342 public RatingsStatsLocalService getRatingsStatsLocalService() {
343 return ratingsStatsLocalService;
344 }
345
346 public void setRatingsStatsLocalService(
347 RatingsStatsLocalService ratingsStatsLocalService) {
348 this.ratingsStatsLocalService = ratingsStatsLocalService;
349 }
350
351 public RatingsStatsPersistence getRatingsStatsPersistence() {
352 return ratingsStatsPersistence;
353 }
354
355 public void setRatingsStatsPersistence(
356 RatingsStatsPersistence ratingsStatsPersistence) {
357 this.ratingsStatsPersistence = ratingsStatsPersistence;
358 }
359
360 public SocialActivityLocalService getSocialActivityLocalService() {
361 return socialActivityLocalService;
362 }
363
364 public void setSocialActivityLocalService(
365 SocialActivityLocalService socialActivityLocalService) {
366 this.socialActivityLocalService = socialActivityLocalService;
367 }
368
369 public SocialActivityPersistence getSocialActivityPersistence() {
370 return socialActivityPersistence;
371 }
372
373 public void setSocialActivityPersistence(
374 SocialActivityPersistence socialActivityPersistence) {
375 this.socialActivityPersistence = socialActivityPersistence;
376 }
377
378 public SocialActivityFinder getSocialActivityFinder() {
379 return socialActivityFinder;
380 }
381
382 public void setSocialActivityFinder(
383 SocialActivityFinder socialActivityFinder) {
384 this.socialActivityFinder = socialActivityFinder;
385 }
386
387 public TagsAssetLocalService getTagsAssetLocalService() {
388 return tagsAssetLocalService;
389 }
390
391 public void setTagsAssetLocalService(
392 TagsAssetLocalService tagsAssetLocalService) {
393 this.tagsAssetLocalService = tagsAssetLocalService;
394 }
395
396 public TagsAssetService getTagsAssetService() {
397 return tagsAssetService;
398 }
399
400 public void setTagsAssetService(TagsAssetService tagsAssetService) {
401 this.tagsAssetService = tagsAssetService;
402 }
403
404 public TagsAssetPersistence getTagsAssetPersistence() {
405 return tagsAssetPersistence;
406 }
407
408 public void setTagsAssetPersistence(
409 TagsAssetPersistence tagsAssetPersistence) {
410 this.tagsAssetPersistence = tagsAssetPersistence;
411 }
412
413 public TagsAssetFinder getTagsAssetFinder() {
414 return tagsAssetFinder;
415 }
416
417 public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
418 this.tagsAssetFinder = tagsAssetFinder;
419 }
420
421 public TagsEntryLocalService getTagsEntryLocalService() {
422 return tagsEntryLocalService;
423 }
424
425 public void setTagsEntryLocalService(
426 TagsEntryLocalService tagsEntryLocalService) {
427 this.tagsEntryLocalService = tagsEntryLocalService;
428 }
429
430 public TagsEntryService getTagsEntryService() {
431 return tagsEntryService;
432 }
433
434 public void setTagsEntryService(TagsEntryService tagsEntryService) {
435 this.tagsEntryService = tagsEntryService;
436 }
437
438 public TagsEntryPersistence getTagsEntryPersistence() {
439 return tagsEntryPersistence;
440 }
441
442 public void setTagsEntryPersistence(
443 TagsEntryPersistence tagsEntryPersistence) {
444 this.tagsEntryPersistence = tagsEntryPersistence;
445 }
446
447 public TagsEntryFinder getTagsEntryFinder() {
448 return tagsEntryFinder;
449 }
450
451 public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
452 this.tagsEntryFinder = tagsEntryFinder;
453 }
454
455 public void afterPropertiesSet() {
456 if (blogsEntryLocalService == null) {
457 blogsEntryLocalService = (BlogsEntryLocalService)PortalBeanLocatorUtil.locate(BlogsEntryLocalService.class.getName() +
458 ".impl");
459 }
460
461 if (blogsEntryPersistence == null) {
462 blogsEntryPersistence = (BlogsEntryPersistence)PortalBeanLocatorUtil.locate(BlogsEntryPersistence.class.getName() +
463 ".impl");
464 }
465
466 if (blogsEntryFinder == null) {
467 blogsEntryFinder = (BlogsEntryFinder)PortalBeanLocatorUtil.locate(BlogsEntryFinder.class.getName() +
468 ".impl");
469 }
470
471 if (blogsStatsUserLocalService == null) {
472 blogsStatsUserLocalService = (BlogsStatsUserLocalService)PortalBeanLocatorUtil.locate(BlogsStatsUserLocalService.class.getName() +
473 ".impl");
474 }
475
476 if (blogsStatsUserPersistence == null) {
477 blogsStatsUserPersistence = (BlogsStatsUserPersistence)PortalBeanLocatorUtil.locate(BlogsStatsUserPersistence.class.getName() +
478 ".impl");
479 }
480
481 if (blogsStatsUserFinder == null) {
482 blogsStatsUserFinder = (BlogsStatsUserFinder)PortalBeanLocatorUtil.locate(BlogsStatsUserFinder.class.getName() +
483 ".impl");
484 }
485
486 if (counterLocalService == null) {
487 counterLocalService = (CounterLocalService)PortalBeanLocatorUtil.locate(CounterLocalService.class.getName() +
488 ".impl");
489 }
490
491 if (counterService == null) {
492 counterService = (CounterService)PortalBeanLocatorUtil.locate(CounterService.class.getName() +
493 ".impl");
494 }
495
496 if (companyLocalService == null) {
497 companyLocalService = (CompanyLocalService)PortalBeanLocatorUtil.locate(CompanyLocalService.class.getName() +
498 ".impl");
499 }
500
501 if (companyService == null) {
502 companyService = (CompanyService)PortalBeanLocatorUtil.locate(CompanyService.class.getName() +
503 ".impl");
504 }
505
506 if (companyPersistence == null) {
507 companyPersistence = (CompanyPersistence)PortalBeanLocatorUtil.locate(CompanyPersistence.class.getName() +
508 ".impl");
509 }
510
511 if (groupLocalService == null) {
512 groupLocalService = (GroupLocalService)PortalBeanLocatorUtil.locate(GroupLocalService.class.getName() +
513 ".impl");
514 }
515
516 if (groupService == null) {
517 groupService = (GroupService)PortalBeanLocatorUtil.locate(GroupService.class.getName() +
518 ".impl");
519 }
520
521 if (groupPersistence == null) {
522 groupPersistence = (GroupPersistence)PortalBeanLocatorUtil.locate(GroupPersistence.class.getName() +
523 ".impl");
524 }
525
526 if (groupFinder == null) {
527 groupFinder = (GroupFinder)PortalBeanLocatorUtil.locate(GroupFinder.class.getName() +
528 ".impl");
529 }
530
531 if (organizationLocalService == null) {
532 organizationLocalService = (OrganizationLocalService)PortalBeanLocatorUtil.locate(OrganizationLocalService.class.getName() +
533 ".impl");
534 }
535
536 if (organizationService == null) {
537 organizationService = (OrganizationService)PortalBeanLocatorUtil.locate(OrganizationService.class.getName() +
538 ".impl");
539 }
540
541 if (organizationPersistence == null) {
542 organizationPersistence = (OrganizationPersistence)PortalBeanLocatorUtil.locate(OrganizationPersistence.class.getName() +
543 ".impl");
544 }
545
546 if (organizationFinder == null) {
547 organizationFinder = (OrganizationFinder)PortalBeanLocatorUtil.locate(OrganizationFinder.class.getName() +
548 ".impl");
549 }
550
551 if (resourceLocalService == null) {
552 resourceLocalService = (ResourceLocalService)PortalBeanLocatorUtil.locate(ResourceLocalService.class.getName() +
553 ".impl");
554 }
555
556 if (resourceService == null) {
557 resourceService = (ResourceService)PortalBeanLocatorUtil.locate(ResourceService.class.getName() +
558 ".impl");
559 }
560
561 if (resourcePersistence == null) {
562 resourcePersistence = (ResourcePersistence)PortalBeanLocatorUtil.locate(ResourcePersistence.class.getName() +
563 ".impl");
564 }
565
566 if (resourceFinder == null) {
567 resourceFinder = (ResourceFinder)PortalBeanLocatorUtil.locate(ResourceFinder.class.getName() +
568 ".impl");
569 }
570
571 if (userLocalService == null) {
572 userLocalService = (UserLocalService)PortalBeanLocatorUtil.locate(UserLocalService.class.getName() +
573 ".impl");
574 }
575
576 if (userService == null) {
577 userService = (UserService)PortalBeanLocatorUtil.locate(UserService.class.getName() +
578 ".impl");
579 }
580
581 if (userPersistence == null) {
582 userPersistence = (UserPersistence)PortalBeanLocatorUtil.locate(UserPersistence.class.getName() +
583 ".impl");
584 }
585
586 if (userFinder == null) {
587 userFinder = (UserFinder)PortalBeanLocatorUtil.locate(UserFinder.class.getName() +
588 ".impl");
589 }
590
591 if (mbMessageLocalService == null) {
592 mbMessageLocalService = (MBMessageLocalService)PortalBeanLocatorUtil.locate(MBMessageLocalService.class.getName() +
593 ".impl");
594 }
595
596 if (mbMessageService == null) {
597 mbMessageService = (MBMessageService)PortalBeanLocatorUtil.locate(MBMessageService.class.getName() +
598 ".impl");
599 }
600
601 if (mbMessagePersistence == null) {
602 mbMessagePersistence = (MBMessagePersistence)PortalBeanLocatorUtil.locate(MBMessagePersistence.class.getName() +
603 ".impl");
604 }
605
606 if (mbMessageFinder == null) {
607 mbMessageFinder = (MBMessageFinder)PortalBeanLocatorUtil.locate(MBMessageFinder.class.getName() +
608 ".impl");
609 }
610
611 if (ratingsStatsLocalService == null) {
612 ratingsStatsLocalService = (RatingsStatsLocalService)PortalBeanLocatorUtil.locate(RatingsStatsLocalService.class.getName() +
613 ".impl");
614 }
615
616 if (ratingsStatsPersistence == null) {
617 ratingsStatsPersistence = (RatingsStatsPersistence)PortalBeanLocatorUtil.locate(RatingsStatsPersistence.class.getName() +
618 ".impl");
619 }
620
621 if (socialActivityLocalService == null) {
622 socialActivityLocalService = (SocialActivityLocalService)PortalBeanLocatorUtil.locate(SocialActivityLocalService.class.getName() +
623 ".impl");
624 }
625
626 if (socialActivityPersistence == null) {
627 socialActivityPersistence = (SocialActivityPersistence)PortalBeanLocatorUtil.locate(SocialActivityPersistence.class.getName() +
628 ".impl");
629 }
630
631 if (socialActivityFinder == null) {
632 socialActivityFinder = (SocialActivityFinder)PortalBeanLocatorUtil.locate(SocialActivityFinder.class.getName() +
633 ".impl");
634 }
635
636 if (tagsAssetLocalService == null) {
637 tagsAssetLocalService = (TagsAssetLocalService)PortalBeanLocatorUtil.locate(TagsAssetLocalService.class.getName() +
638 ".impl");
639 }
640
641 if (tagsAssetService == null) {
642 tagsAssetService = (TagsAssetService)PortalBeanLocatorUtil.locate(TagsAssetService.class.getName() +
643 ".impl");
644 }
645
646 if (tagsAssetPersistence == null) {
647 tagsAssetPersistence = (TagsAssetPersistence)PortalBeanLocatorUtil.locate(TagsAssetPersistence.class.getName() +
648 ".impl");
649 }
650
651 if (tagsAssetFinder == null) {
652 tagsAssetFinder = (TagsAssetFinder)PortalBeanLocatorUtil.locate(TagsAssetFinder.class.getName() +
653 ".impl");
654 }
655
656 if (tagsEntryLocalService == null) {
657 tagsEntryLocalService = (TagsEntryLocalService)PortalBeanLocatorUtil.locate(TagsEntryLocalService.class.getName() +
658 ".impl");
659 }
660
661 if (tagsEntryService == null) {
662 tagsEntryService = (TagsEntryService)PortalBeanLocatorUtil.locate(TagsEntryService.class.getName() +
663 ".impl");
664 }
665
666 if (tagsEntryPersistence == null) {
667 tagsEntryPersistence = (TagsEntryPersistence)PortalBeanLocatorUtil.locate(TagsEntryPersistence.class.getName() +
668 ".impl");
669 }
670
671 if (tagsEntryFinder == null) {
672 tagsEntryFinder = (TagsEntryFinder)PortalBeanLocatorUtil.locate(TagsEntryFinder.class.getName() +
673 ".impl");
674 }
675 }
676
677 protected BlogsEntryLocalService blogsEntryLocalService;
678 protected BlogsEntryPersistence blogsEntryPersistence;
679 protected BlogsEntryFinder blogsEntryFinder;
680 protected BlogsStatsUserLocalService blogsStatsUserLocalService;
681 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
682 protected BlogsStatsUserFinder blogsStatsUserFinder;
683 protected CounterLocalService counterLocalService;
684 protected CounterService counterService;
685 protected CompanyLocalService companyLocalService;
686 protected CompanyService companyService;
687 protected CompanyPersistence companyPersistence;
688 protected GroupLocalService groupLocalService;
689 protected GroupService groupService;
690 protected GroupPersistence groupPersistence;
691 protected GroupFinder groupFinder;
692 protected OrganizationLocalService organizationLocalService;
693 protected OrganizationService organizationService;
694 protected OrganizationPersistence organizationPersistence;
695 protected OrganizationFinder organizationFinder;
696 protected ResourceLocalService resourceLocalService;
697 protected ResourceService resourceService;
698 protected ResourcePersistence resourcePersistence;
699 protected ResourceFinder resourceFinder;
700 protected UserLocalService userLocalService;
701 protected UserService userService;
702 protected UserPersistence userPersistence;
703 protected UserFinder userFinder;
704 protected MBMessageLocalService mbMessageLocalService;
705 protected MBMessageService mbMessageService;
706 protected MBMessagePersistence mbMessagePersistence;
707 protected MBMessageFinder mbMessageFinder;
708 protected RatingsStatsLocalService ratingsStatsLocalService;
709 protected RatingsStatsPersistence ratingsStatsPersistence;
710 protected SocialActivityLocalService socialActivityLocalService;
711 protected SocialActivityPersistence socialActivityPersistence;
712 protected SocialActivityFinder socialActivityFinder;
713 protected TagsAssetLocalService tagsAssetLocalService;
714 protected TagsAssetService tagsAssetService;
715 protected TagsAssetPersistence tagsAssetPersistence;
716 protected TagsAssetFinder tagsAssetFinder;
717 protected TagsEntryLocalService tagsEntryLocalService;
718 protected TagsEntryService tagsEntryService;
719 protected TagsEntryPersistence tagsEntryPersistence;
720 protected TagsEntryFinder tagsEntryFinder;
721 }