001
014
015 package com.liferay.portlet.messageboards.service.base;
016
017 import com.liferay.portal.kernel.bean.BeanReference;
018 import com.liferay.portal.kernel.bean.IdentifiableBean;
019 import com.liferay.portal.kernel.dao.db.DB;
020 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.exception.SystemException;
024 import com.liferay.portal.service.BaseServiceImpl;
025 import com.liferay.portal.service.persistence.GroupFinder;
026 import com.liferay.portal.service.persistence.GroupPersistence;
027 import com.liferay.portal.service.persistence.LockFinder;
028 import com.liferay.portal.service.persistence.LockPersistence;
029 import com.liferay.portal.service.persistence.SubscriptionPersistence;
030 import com.liferay.portal.service.persistence.UserFinder;
031 import com.liferay.portal.service.persistence.UserPersistence;
032 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
033 import com.liferay.portal.util.PortalUtil;
034
035 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
036 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
037 import com.liferay.portlet.messageboards.model.MBThread;
038 import com.liferay.portlet.messageboards.service.MBThreadService;
039 import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
040 import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
041 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
042 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
043 import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
044 import com.liferay.portlet.messageboards.service.persistence.MBThreadFinder;
045 import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
046 import com.liferay.portlet.messageboards.service.persistence.MBThreadPersistence;
047 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
048 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
049 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
050 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
051 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
052 import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
053
054 import javax.sql.DataSource;
055
056
068 public abstract class MBThreadServiceBaseImpl extends BaseServiceImpl
069 implements MBThreadService, IdentifiableBean {
070
075
076
081 public com.liferay.portlet.messageboards.service.MBThreadLocalService getMBThreadLocalService() {
082 return mbThreadLocalService;
083 }
084
085
090 public void setMBThreadLocalService(
091 com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService) {
092 this.mbThreadLocalService = mbThreadLocalService;
093 }
094
095
100 public com.liferay.portlet.messageboards.service.MBThreadService getMBThreadService() {
101 return mbThreadService;
102 }
103
104
109 public void setMBThreadService(
110 com.liferay.portlet.messageboards.service.MBThreadService mbThreadService) {
111 this.mbThreadService = mbThreadService;
112 }
113
114
119 public MBThreadPersistence getMBThreadPersistence() {
120 return mbThreadPersistence;
121 }
122
123
128 public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
129 this.mbThreadPersistence = mbThreadPersistence;
130 }
131
132
137 public MBThreadFinder getMBThreadFinder() {
138 return mbThreadFinder;
139 }
140
141
146 public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
147 this.mbThreadFinder = mbThreadFinder;
148 }
149
150
155 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
156 return counterLocalService;
157 }
158
159
164 public void setCounterLocalService(
165 com.liferay.counter.service.CounterLocalService counterLocalService) {
166 this.counterLocalService = counterLocalService;
167 }
168
169
174 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
175 return groupLocalService;
176 }
177
178
183 public void setGroupLocalService(
184 com.liferay.portal.service.GroupLocalService groupLocalService) {
185 this.groupLocalService = groupLocalService;
186 }
187
188
193 public com.liferay.portal.service.GroupService getGroupService() {
194 return groupService;
195 }
196
197
202 public void setGroupService(
203 com.liferay.portal.service.GroupService groupService) {
204 this.groupService = groupService;
205 }
206
207
212 public GroupPersistence getGroupPersistence() {
213 return groupPersistence;
214 }
215
216
221 public void setGroupPersistence(GroupPersistence groupPersistence) {
222 this.groupPersistence = groupPersistence;
223 }
224
225
230 public GroupFinder getGroupFinder() {
231 return groupFinder;
232 }
233
234
239 public void setGroupFinder(GroupFinder groupFinder) {
240 this.groupFinder = groupFinder;
241 }
242
243
248 public com.liferay.portal.service.LockLocalService getLockLocalService() {
249 return lockLocalService;
250 }
251
252
257 public void setLockLocalService(
258 com.liferay.portal.service.LockLocalService lockLocalService) {
259 this.lockLocalService = lockLocalService;
260 }
261
262
267 public LockPersistence getLockPersistence() {
268 return lockPersistence;
269 }
270
271
276 public void setLockPersistence(LockPersistence lockPersistence) {
277 this.lockPersistence = lockPersistence;
278 }
279
280
285 public LockFinder getLockFinder() {
286 return lockFinder;
287 }
288
289
294 public void setLockFinder(LockFinder lockFinder) {
295 this.lockFinder = lockFinder;
296 }
297
298
303 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
304 return resourceLocalService;
305 }
306
307
312 public void setResourceLocalService(
313 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
314 this.resourceLocalService = resourceLocalService;
315 }
316
317
322 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
323 return subscriptionLocalService;
324 }
325
326
331 public void setSubscriptionLocalService(
332 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
333 this.subscriptionLocalService = subscriptionLocalService;
334 }
335
336
341 public SubscriptionPersistence getSubscriptionPersistence() {
342 return subscriptionPersistence;
343 }
344
345
350 public void setSubscriptionPersistence(
351 SubscriptionPersistence subscriptionPersistence) {
352 this.subscriptionPersistence = subscriptionPersistence;
353 }
354
355
360 public com.liferay.portal.service.UserLocalService getUserLocalService() {
361 return userLocalService;
362 }
363
364
369 public void setUserLocalService(
370 com.liferay.portal.service.UserLocalService userLocalService) {
371 this.userLocalService = userLocalService;
372 }
373
374
379 public com.liferay.portal.service.UserService getUserService() {
380 return userService;
381 }
382
383
388 public void setUserService(
389 com.liferay.portal.service.UserService userService) {
390 this.userService = userService;
391 }
392
393
398 public UserPersistence getUserPersistence() {
399 return userPersistence;
400 }
401
402
407 public void setUserPersistence(UserPersistence userPersistence) {
408 this.userPersistence = userPersistence;
409 }
410
411
416 public UserFinder getUserFinder() {
417 return userFinder;
418 }
419
420
425 public void setUserFinder(UserFinder userFinder) {
426 this.userFinder = userFinder;
427 }
428
429
434 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
435 return workflowInstanceLinkLocalService;
436 }
437
438
443 public void setWorkflowInstanceLinkLocalService(
444 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
445 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
446 }
447
448
453 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
454 return workflowInstanceLinkPersistence;
455 }
456
457
462 public void setWorkflowInstanceLinkPersistence(
463 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
464 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
465 }
466
467
472 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
473 return assetEntryLocalService;
474 }
475
476
481 public void setAssetEntryLocalService(
482 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
483 this.assetEntryLocalService = assetEntryLocalService;
484 }
485
486
491 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
492 return assetEntryService;
493 }
494
495
500 public void setAssetEntryService(
501 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
502 this.assetEntryService = assetEntryService;
503 }
504
505
510 public AssetEntryPersistence getAssetEntryPersistence() {
511 return assetEntryPersistence;
512 }
513
514
519 public void setAssetEntryPersistence(
520 AssetEntryPersistence assetEntryPersistence) {
521 this.assetEntryPersistence = assetEntryPersistence;
522 }
523
524
529 public AssetEntryFinder getAssetEntryFinder() {
530 return assetEntryFinder;
531 }
532
533
538 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
539 this.assetEntryFinder = assetEntryFinder;
540 }
541
542
547 public com.liferay.portlet.messageboards.service.MBCategoryLocalService getMBCategoryLocalService() {
548 return mbCategoryLocalService;
549 }
550
551
556 public void setMBCategoryLocalService(
557 com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService) {
558 this.mbCategoryLocalService = mbCategoryLocalService;
559 }
560
561
566 public com.liferay.portlet.messageboards.service.MBCategoryService getMBCategoryService() {
567 return mbCategoryService;
568 }
569
570
575 public void setMBCategoryService(
576 com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService) {
577 this.mbCategoryService = mbCategoryService;
578 }
579
580
585 public MBCategoryPersistence getMBCategoryPersistence() {
586 return mbCategoryPersistence;
587 }
588
589
594 public void setMBCategoryPersistence(
595 MBCategoryPersistence mbCategoryPersistence) {
596 this.mbCategoryPersistence = mbCategoryPersistence;
597 }
598
599
604 public MBCategoryFinder getMBCategoryFinder() {
605 return mbCategoryFinder;
606 }
607
608
613 public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
614 this.mbCategoryFinder = mbCategoryFinder;
615 }
616
617
622 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
623 return mbMessageLocalService;
624 }
625
626
631 public void setMBMessageLocalService(
632 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
633 this.mbMessageLocalService = mbMessageLocalService;
634 }
635
636
641 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
642 return mbMessageService;
643 }
644
645
650 public void setMBMessageService(
651 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
652 this.mbMessageService = mbMessageService;
653 }
654
655
660 public MBMessagePersistence getMBMessagePersistence() {
661 return mbMessagePersistence;
662 }
663
664
669 public void setMBMessagePersistence(
670 MBMessagePersistence mbMessagePersistence) {
671 this.mbMessagePersistence = mbMessagePersistence;
672 }
673
674
679 public MBMessageFinder getMBMessageFinder() {
680 return mbMessageFinder;
681 }
682
683
688 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
689 this.mbMessageFinder = mbMessageFinder;
690 }
691
692
697 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
698 return mbStatsUserLocalService;
699 }
700
701
706 public void setMBStatsUserLocalService(
707 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
708 this.mbStatsUserLocalService = mbStatsUserLocalService;
709 }
710
711
716 public MBStatsUserPersistence getMBStatsUserPersistence() {
717 return mbStatsUserPersistence;
718 }
719
720
725 public void setMBStatsUserPersistence(
726 MBStatsUserPersistence mbStatsUserPersistence) {
727 this.mbStatsUserPersistence = mbStatsUserPersistence;
728 }
729
730
735 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
736 return ratingsStatsLocalService;
737 }
738
739
744 public void setRatingsStatsLocalService(
745 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
746 this.ratingsStatsLocalService = ratingsStatsLocalService;
747 }
748
749
754 public RatingsStatsPersistence getRatingsStatsPersistence() {
755 return ratingsStatsPersistence;
756 }
757
758
763 public void setRatingsStatsPersistence(
764 RatingsStatsPersistence ratingsStatsPersistence) {
765 this.ratingsStatsPersistence = ratingsStatsPersistence;
766 }
767
768
773 public RatingsStatsFinder getRatingsStatsFinder() {
774 return ratingsStatsFinder;
775 }
776
777
782 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
783 this.ratingsStatsFinder = ratingsStatsFinder;
784 }
785
786
791 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
792 return socialActivityLocalService;
793 }
794
795
800 public void setSocialActivityLocalService(
801 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
802 this.socialActivityLocalService = socialActivityLocalService;
803 }
804
805
810 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
811 return socialActivityService;
812 }
813
814
819 public void setSocialActivityService(
820 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
821 this.socialActivityService = socialActivityService;
822 }
823
824
829 public SocialActivityPersistence getSocialActivityPersistence() {
830 return socialActivityPersistence;
831 }
832
833
838 public void setSocialActivityPersistence(
839 SocialActivityPersistence socialActivityPersistence) {
840 this.socialActivityPersistence = socialActivityPersistence;
841 }
842
843
848 public SocialActivityFinder getSocialActivityFinder() {
849 return socialActivityFinder;
850 }
851
852
857 public void setSocialActivityFinder(
858 SocialActivityFinder socialActivityFinder) {
859 this.socialActivityFinder = socialActivityFinder;
860 }
861
862
867 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
868 return trashEntryLocalService;
869 }
870
871
876 public void setTrashEntryLocalService(
877 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
878 this.trashEntryLocalService = trashEntryLocalService;
879 }
880
881
886 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
887 return trashEntryService;
888 }
889
890
895 public void setTrashEntryService(
896 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
897 this.trashEntryService = trashEntryService;
898 }
899
900
905 public TrashEntryPersistence getTrashEntryPersistence() {
906 return trashEntryPersistence;
907 }
908
909
914 public void setTrashEntryPersistence(
915 TrashEntryPersistence trashEntryPersistence) {
916 this.trashEntryPersistence = trashEntryPersistence;
917 }
918
919
924 public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
925 return trashVersionLocalService;
926 }
927
928
933 public void setTrashVersionLocalService(
934 com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
935 this.trashVersionLocalService = trashVersionLocalService;
936 }
937
938
943 public TrashVersionPersistence getTrashVersionPersistence() {
944 return trashVersionPersistence;
945 }
946
947
952 public void setTrashVersionPersistence(
953 TrashVersionPersistence trashVersionPersistence) {
954 this.trashVersionPersistence = trashVersionPersistence;
955 }
956
957
962 public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
963 return mbThreadFlagLocalService;
964 }
965
966
971 public void setMBThreadFlagLocalService(
972 com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
973 this.mbThreadFlagLocalService = mbThreadFlagLocalService;
974 }
975
976
981 public MBThreadFlagPersistence getMBThreadFlagPersistence() {
982 return mbThreadFlagPersistence;
983 }
984
985
990 public void setMBThreadFlagPersistence(
991 MBThreadFlagPersistence mbThreadFlagPersistence) {
992 this.mbThreadFlagPersistence = mbThreadFlagPersistence;
993 }
994
995 public void afterPropertiesSet() {
996 }
997
998 public void destroy() {
999 }
1000
1001
1006 @Override
1007 public String getBeanIdentifier() {
1008 return _beanIdentifier;
1009 }
1010
1011
1016 @Override
1017 public void setBeanIdentifier(String beanIdentifier) {
1018 _beanIdentifier = beanIdentifier;
1019 }
1020
1021 protected Class<?> getModelClass() {
1022 return MBThread.class;
1023 }
1024
1025 protected String getModelClassName() {
1026 return MBThread.class.getName();
1027 }
1028
1029
1034 protected void runSQL(String sql) {
1035 try {
1036 DataSource dataSource = mbThreadPersistence.getDataSource();
1037
1038 DB db = DBFactoryUtil.getDB();
1039
1040 sql = db.buildSQL(sql);
1041 sql = PortalUtil.transformSQL(sql);
1042
1043 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1044 sql, new int[0]);
1045
1046 sqlUpdate.update();
1047 }
1048 catch (Exception e) {
1049 throw new SystemException(e);
1050 }
1051 }
1052
1053 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1054 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1055 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1056 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1057 @BeanReference(type = MBThreadPersistence.class)
1058 protected MBThreadPersistence mbThreadPersistence;
1059 @BeanReference(type = MBThreadFinder.class)
1060 protected MBThreadFinder mbThreadFinder;
1061 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1062 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1063 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1064 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1065 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1066 protected com.liferay.portal.service.GroupService groupService;
1067 @BeanReference(type = GroupPersistence.class)
1068 protected GroupPersistence groupPersistence;
1069 @BeanReference(type = GroupFinder.class)
1070 protected GroupFinder groupFinder;
1071 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1072 protected com.liferay.portal.service.LockLocalService lockLocalService;
1073 @BeanReference(type = LockPersistence.class)
1074 protected LockPersistence lockPersistence;
1075 @BeanReference(type = LockFinder.class)
1076 protected LockFinder lockFinder;
1077 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1078 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1079 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1080 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1081 @BeanReference(type = SubscriptionPersistence.class)
1082 protected SubscriptionPersistence subscriptionPersistence;
1083 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1084 protected com.liferay.portal.service.UserLocalService userLocalService;
1085 @BeanReference(type = com.liferay.portal.service.UserService.class)
1086 protected com.liferay.portal.service.UserService userService;
1087 @BeanReference(type = UserPersistence.class)
1088 protected UserPersistence userPersistence;
1089 @BeanReference(type = UserFinder.class)
1090 protected UserFinder userFinder;
1091 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1092 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1093 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1094 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1095 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1096 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1097 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1098 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1099 @BeanReference(type = AssetEntryPersistence.class)
1100 protected AssetEntryPersistence assetEntryPersistence;
1101 @BeanReference(type = AssetEntryFinder.class)
1102 protected AssetEntryFinder assetEntryFinder;
1103 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1104 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1105 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1106 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1107 @BeanReference(type = MBCategoryPersistence.class)
1108 protected MBCategoryPersistence mbCategoryPersistence;
1109 @BeanReference(type = MBCategoryFinder.class)
1110 protected MBCategoryFinder mbCategoryFinder;
1111 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1112 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1113 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1114 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1115 @BeanReference(type = MBMessagePersistence.class)
1116 protected MBMessagePersistence mbMessagePersistence;
1117 @BeanReference(type = MBMessageFinder.class)
1118 protected MBMessageFinder mbMessageFinder;
1119 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1120 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1121 @BeanReference(type = MBStatsUserPersistence.class)
1122 protected MBStatsUserPersistence mbStatsUserPersistence;
1123 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1124 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1125 @BeanReference(type = RatingsStatsPersistence.class)
1126 protected RatingsStatsPersistence ratingsStatsPersistence;
1127 @BeanReference(type = RatingsStatsFinder.class)
1128 protected RatingsStatsFinder ratingsStatsFinder;
1129 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1130 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1131 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1132 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1133 @BeanReference(type = SocialActivityPersistence.class)
1134 protected SocialActivityPersistence socialActivityPersistence;
1135 @BeanReference(type = SocialActivityFinder.class)
1136 protected SocialActivityFinder socialActivityFinder;
1137 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1138 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1139 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1140 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1141 @BeanReference(type = TrashEntryPersistence.class)
1142 protected TrashEntryPersistence trashEntryPersistence;
1143 @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
1144 protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
1145 @BeanReference(type = TrashVersionPersistence.class)
1146 protected TrashVersionPersistence trashVersionPersistence;
1147 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
1148 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
1149 @BeanReference(type = MBThreadFlagPersistence.class)
1150 protected MBThreadFlagPersistence mbThreadFlagPersistence;
1151 private String _beanIdentifier;
1152 }