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