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.jdbc.SqlUpdate;
020 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021 import com.liferay.portal.kernel.exception.SystemException;
022 import com.liferay.portal.service.BaseServiceImpl;
023 import com.liferay.portal.service.persistence.GroupFinder;
024 import com.liferay.portal.service.persistence.GroupPersistence;
025 import com.liferay.portal.service.persistence.LockFinder;
026 import com.liferay.portal.service.persistence.LockPersistence;
027 import com.liferay.portal.service.persistence.SubscriptionPersistence;
028 import com.liferay.portal.service.persistence.UserFinder;
029 import com.liferay.portal.service.persistence.UserPersistence;
030 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
031
032 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
033 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
034 import com.liferay.portlet.messageboards.model.MBThread;
035 import com.liferay.portlet.messageboards.service.MBThreadService;
036 import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
037 import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
038 import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
039 import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
040 import com.liferay.portlet.messageboards.service.persistence.MBMailingListPersistence;
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.SocialActivityCounterFinder;
050 import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
051 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
052 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
053 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
054
055 import javax.sql.DataSource;
056
057
069 public abstract class MBThreadServiceBaseImpl extends BaseServiceImpl
070 implements MBThreadService, IdentifiableBean {
071
076
077
082 public com.liferay.portlet.messageboards.service.MBBanLocalService getMBBanLocalService() {
083 return mbBanLocalService;
084 }
085
086
091 public void setMBBanLocalService(
092 com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService) {
093 this.mbBanLocalService = mbBanLocalService;
094 }
095
096
101 public com.liferay.portlet.messageboards.service.MBBanService getMBBanService() {
102 return mbBanService;
103 }
104
105
110 public void setMBBanService(
111 com.liferay.portlet.messageboards.service.MBBanService mbBanService) {
112 this.mbBanService = mbBanService;
113 }
114
115
120 public MBBanPersistence getMBBanPersistence() {
121 return mbBanPersistence;
122 }
123
124
129 public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
130 this.mbBanPersistence = mbBanPersistence;
131 }
132
133
138 public com.liferay.portlet.messageboards.service.MBCategoryLocalService getMBCategoryLocalService() {
139 return mbCategoryLocalService;
140 }
141
142
147 public void setMBCategoryLocalService(
148 com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService) {
149 this.mbCategoryLocalService = mbCategoryLocalService;
150 }
151
152
157 public com.liferay.portlet.messageboards.service.MBCategoryService getMBCategoryService() {
158 return mbCategoryService;
159 }
160
161
166 public void setMBCategoryService(
167 com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService) {
168 this.mbCategoryService = mbCategoryService;
169 }
170
171
176 public MBCategoryPersistence getMBCategoryPersistence() {
177 return mbCategoryPersistence;
178 }
179
180
185 public void setMBCategoryPersistence(
186 MBCategoryPersistence mbCategoryPersistence) {
187 this.mbCategoryPersistence = mbCategoryPersistence;
188 }
189
190
195 public MBCategoryFinder getMBCategoryFinder() {
196 return mbCategoryFinder;
197 }
198
199
204 public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
205 this.mbCategoryFinder = mbCategoryFinder;
206 }
207
208
213 public com.liferay.portlet.messageboards.service.MBDiscussionLocalService getMBDiscussionLocalService() {
214 return mbDiscussionLocalService;
215 }
216
217
222 public void setMBDiscussionLocalService(
223 com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService) {
224 this.mbDiscussionLocalService = mbDiscussionLocalService;
225 }
226
227
232 public MBDiscussionPersistence getMBDiscussionPersistence() {
233 return mbDiscussionPersistence;
234 }
235
236
241 public void setMBDiscussionPersistence(
242 MBDiscussionPersistence mbDiscussionPersistence) {
243 this.mbDiscussionPersistence = mbDiscussionPersistence;
244 }
245
246
251 public com.liferay.portlet.messageboards.service.MBMailingListLocalService getMBMailingListLocalService() {
252 return mbMailingListLocalService;
253 }
254
255
260 public void setMBMailingListLocalService(
261 com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService) {
262 this.mbMailingListLocalService = mbMailingListLocalService;
263 }
264
265
270 public MBMailingListPersistence getMBMailingListPersistence() {
271 return mbMailingListPersistence;
272 }
273
274
279 public void setMBMailingListPersistence(
280 MBMailingListPersistence mbMailingListPersistence) {
281 this.mbMailingListPersistence = mbMailingListPersistence;
282 }
283
284
289 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
290 return mbMessageLocalService;
291 }
292
293
298 public void setMBMessageLocalService(
299 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
300 this.mbMessageLocalService = mbMessageLocalService;
301 }
302
303
308 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
309 return mbMessageService;
310 }
311
312
317 public void setMBMessageService(
318 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
319 this.mbMessageService = mbMessageService;
320 }
321
322
327 public MBMessagePersistence getMBMessagePersistence() {
328 return mbMessagePersistence;
329 }
330
331
336 public void setMBMessagePersistence(
337 MBMessagePersistence mbMessagePersistence) {
338 this.mbMessagePersistence = mbMessagePersistence;
339 }
340
341
346 public MBMessageFinder getMBMessageFinder() {
347 return mbMessageFinder;
348 }
349
350
355 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
356 this.mbMessageFinder = mbMessageFinder;
357 }
358
359
364 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
365 return mbStatsUserLocalService;
366 }
367
368
373 public void setMBStatsUserLocalService(
374 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
375 this.mbStatsUserLocalService = mbStatsUserLocalService;
376 }
377
378
383 public MBStatsUserPersistence getMBStatsUserPersistence() {
384 return mbStatsUserPersistence;
385 }
386
387
392 public void setMBStatsUserPersistence(
393 MBStatsUserPersistence mbStatsUserPersistence) {
394 this.mbStatsUserPersistence = mbStatsUserPersistence;
395 }
396
397
402 public com.liferay.portlet.messageboards.service.MBThreadLocalService getMBThreadLocalService() {
403 return mbThreadLocalService;
404 }
405
406
411 public void setMBThreadLocalService(
412 com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService) {
413 this.mbThreadLocalService = mbThreadLocalService;
414 }
415
416
421 public com.liferay.portlet.messageboards.service.MBThreadService getMBThreadService() {
422 return mbThreadService;
423 }
424
425
430 public void setMBThreadService(
431 com.liferay.portlet.messageboards.service.MBThreadService mbThreadService) {
432 this.mbThreadService = mbThreadService;
433 }
434
435
440 public MBThreadPersistence getMBThreadPersistence() {
441 return mbThreadPersistence;
442 }
443
444
449 public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
450 this.mbThreadPersistence = mbThreadPersistence;
451 }
452
453
458 public MBThreadFinder getMBThreadFinder() {
459 return mbThreadFinder;
460 }
461
462
467 public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
468 this.mbThreadFinder = mbThreadFinder;
469 }
470
471
476 public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
477 return mbThreadFlagLocalService;
478 }
479
480
485 public void setMBThreadFlagLocalService(
486 com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
487 this.mbThreadFlagLocalService = mbThreadFlagLocalService;
488 }
489
490
495 public MBThreadFlagPersistence getMBThreadFlagPersistence() {
496 return mbThreadFlagPersistence;
497 }
498
499
504 public void setMBThreadFlagPersistence(
505 MBThreadFlagPersistence mbThreadFlagPersistence) {
506 this.mbThreadFlagPersistence = mbThreadFlagPersistence;
507 }
508
509
514 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
515 return counterLocalService;
516 }
517
518
523 public void setCounterLocalService(
524 com.liferay.counter.service.CounterLocalService counterLocalService) {
525 this.counterLocalService = counterLocalService;
526 }
527
528
533 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
534 return groupLocalService;
535 }
536
537
542 public void setGroupLocalService(
543 com.liferay.portal.service.GroupLocalService groupLocalService) {
544 this.groupLocalService = groupLocalService;
545 }
546
547
552 public com.liferay.portal.service.GroupService getGroupService() {
553 return groupService;
554 }
555
556
561 public void setGroupService(
562 com.liferay.portal.service.GroupService groupService) {
563 this.groupService = groupService;
564 }
565
566
571 public GroupPersistence getGroupPersistence() {
572 return groupPersistence;
573 }
574
575
580 public void setGroupPersistence(GroupPersistence groupPersistence) {
581 this.groupPersistence = groupPersistence;
582 }
583
584
589 public GroupFinder getGroupFinder() {
590 return groupFinder;
591 }
592
593
598 public void setGroupFinder(GroupFinder groupFinder) {
599 this.groupFinder = groupFinder;
600 }
601
602
607 public com.liferay.portal.service.LockLocalService getLockLocalService() {
608 return lockLocalService;
609 }
610
611
616 public void setLockLocalService(
617 com.liferay.portal.service.LockLocalService lockLocalService) {
618 this.lockLocalService = lockLocalService;
619 }
620
621
626 public LockPersistence getLockPersistence() {
627 return lockPersistence;
628 }
629
630
635 public void setLockPersistence(LockPersistence lockPersistence) {
636 this.lockPersistence = lockPersistence;
637 }
638
639
644 public LockFinder getLockFinder() {
645 return lockFinder;
646 }
647
648
653 public void setLockFinder(LockFinder lockFinder) {
654 this.lockFinder = lockFinder;
655 }
656
657
662 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
663 return resourceLocalService;
664 }
665
666
671 public void setResourceLocalService(
672 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
673 this.resourceLocalService = resourceLocalService;
674 }
675
676
681 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
682 return subscriptionLocalService;
683 }
684
685
690 public void setSubscriptionLocalService(
691 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
692 this.subscriptionLocalService = subscriptionLocalService;
693 }
694
695
700 public SubscriptionPersistence getSubscriptionPersistence() {
701 return subscriptionPersistence;
702 }
703
704
709 public void setSubscriptionPersistence(
710 SubscriptionPersistence subscriptionPersistence) {
711 this.subscriptionPersistence = subscriptionPersistence;
712 }
713
714
719 public com.liferay.portal.service.UserLocalService getUserLocalService() {
720 return userLocalService;
721 }
722
723
728 public void setUserLocalService(
729 com.liferay.portal.service.UserLocalService userLocalService) {
730 this.userLocalService = userLocalService;
731 }
732
733
738 public com.liferay.portal.service.UserService getUserService() {
739 return userService;
740 }
741
742
747 public void setUserService(
748 com.liferay.portal.service.UserService userService) {
749 this.userService = userService;
750 }
751
752
757 public UserPersistence getUserPersistence() {
758 return userPersistence;
759 }
760
761
766 public void setUserPersistence(UserPersistence userPersistence) {
767 this.userPersistence = userPersistence;
768 }
769
770
775 public UserFinder getUserFinder() {
776 return userFinder;
777 }
778
779
784 public void setUserFinder(UserFinder userFinder) {
785 this.userFinder = userFinder;
786 }
787
788
793 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
794 return workflowInstanceLinkLocalService;
795 }
796
797
802 public void setWorkflowInstanceLinkLocalService(
803 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
804 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
805 }
806
807
812 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
813 return workflowInstanceLinkPersistence;
814 }
815
816
821 public void setWorkflowInstanceLinkPersistence(
822 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
823 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
824 }
825
826
831 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
832 return assetEntryLocalService;
833 }
834
835
840 public void setAssetEntryLocalService(
841 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
842 this.assetEntryLocalService = assetEntryLocalService;
843 }
844
845
850 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
851 return assetEntryService;
852 }
853
854
859 public void setAssetEntryService(
860 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
861 this.assetEntryService = assetEntryService;
862 }
863
864
869 public AssetEntryPersistence getAssetEntryPersistence() {
870 return assetEntryPersistence;
871 }
872
873
878 public void setAssetEntryPersistence(
879 AssetEntryPersistence assetEntryPersistence) {
880 this.assetEntryPersistence = assetEntryPersistence;
881 }
882
883
888 public AssetEntryFinder getAssetEntryFinder() {
889 return assetEntryFinder;
890 }
891
892
897 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
898 this.assetEntryFinder = assetEntryFinder;
899 }
900
901
906 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
907 return ratingsStatsLocalService;
908 }
909
910
915 public void setRatingsStatsLocalService(
916 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
917 this.ratingsStatsLocalService = ratingsStatsLocalService;
918 }
919
920
925 public RatingsStatsPersistence getRatingsStatsPersistence() {
926 return ratingsStatsPersistence;
927 }
928
929
934 public void setRatingsStatsPersistence(
935 RatingsStatsPersistence ratingsStatsPersistence) {
936 this.ratingsStatsPersistence = ratingsStatsPersistence;
937 }
938
939
944 public RatingsStatsFinder getRatingsStatsFinder() {
945 return ratingsStatsFinder;
946 }
947
948
953 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
954 this.ratingsStatsFinder = ratingsStatsFinder;
955 }
956
957
962 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
963 return socialActivityLocalService;
964 }
965
966
971 public void setSocialActivityLocalService(
972 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
973 this.socialActivityLocalService = socialActivityLocalService;
974 }
975
976
981 public SocialActivityPersistence getSocialActivityPersistence() {
982 return socialActivityPersistence;
983 }
984
985
990 public void setSocialActivityPersistence(
991 SocialActivityPersistence socialActivityPersistence) {
992 this.socialActivityPersistence = socialActivityPersistence;
993 }
994
995
1000 public SocialActivityFinder getSocialActivityFinder() {
1001 return socialActivityFinder;
1002 }
1003
1004
1009 public void setSocialActivityFinder(
1010 SocialActivityFinder socialActivityFinder) {
1011 this.socialActivityFinder = socialActivityFinder;
1012 }
1013
1014
1019 public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1020 return socialActivityCounterLocalService;
1021 }
1022
1023
1028 public void setSocialActivityCounterLocalService(
1029 com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
1030 this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1031 }
1032
1033
1038 public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1039 return socialActivityCounterPersistence;
1040 }
1041
1042
1047 public void setSocialActivityCounterPersistence(
1048 SocialActivityCounterPersistence socialActivityCounterPersistence) {
1049 this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1050 }
1051
1052
1057 public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1058 return socialActivityCounterFinder;
1059 }
1060
1061
1066 public void setSocialActivityCounterFinder(
1067 SocialActivityCounterFinder socialActivityCounterFinder) {
1068 this.socialActivityCounterFinder = socialActivityCounterFinder;
1069 }
1070
1071
1076 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1077 return trashEntryLocalService;
1078 }
1079
1080
1085 public void setTrashEntryLocalService(
1086 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1087 this.trashEntryLocalService = trashEntryLocalService;
1088 }
1089
1090
1095 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1096 return trashEntryService;
1097 }
1098
1099
1104 public void setTrashEntryService(
1105 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1106 this.trashEntryService = trashEntryService;
1107 }
1108
1109
1114 public TrashEntryPersistence getTrashEntryPersistence() {
1115 return trashEntryPersistence;
1116 }
1117
1118
1123 public void setTrashEntryPersistence(
1124 TrashEntryPersistence trashEntryPersistence) {
1125 this.trashEntryPersistence = trashEntryPersistence;
1126 }
1127
1128 public void afterPropertiesSet() {
1129 }
1130
1131 public void destroy() {
1132 }
1133
1134
1139 @Override
1140 public String getBeanIdentifier() {
1141 return _beanIdentifier;
1142 }
1143
1144
1149 @Override
1150 public void setBeanIdentifier(String beanIdentifier) {
1151 _beanIdentifier = beanIdentifier;
1152 }
1153
1154 protected Class<?> getModelClass() {
1155 return MBThread.class;
1156 }
1157
1158 protected String getModelClassName() {
1159 return MBThread.class.getName();
1160 }
1161
1162
1167 protected void runSQL(String sql) throws SystemException {
1168 try {
1169 DataSource dataSource = mbThreadPersistence.getDataSource();
1170
1171 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1172 sql, new int[0]);
1173
1174 sqlUpdate.update();
1175 }
1176 catch (Exception e) {
1177 throw new SystemException(e);
1178 }
1179 }
1180
1181 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
1182 protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
1183 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
1184 protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
1185 @BeanReference(type = MBBanPersistence.class)
1186 protected MBBanPersistence mbBanPersistence;
1187 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1188 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1189 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1190 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1191 @BeanReference(type = MBCategoryPersistence.class)
1192 protected MBCategoryPersistence mbCategoryPersistence;
1193 @BeanReference(type = MBCategoryFinder.class)
1194 protected MBCategoryFinder mbCategoryFinder;
1195 @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1196 protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1197 @BeanReference(type = MBDiscussionPersistence.class)
1198 protected MBDiscussionPersistence mbDiscussionPersistence;
1199 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMailingListLocalService.class)
1200 protected com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService;
1201 @BeanReference(type = MBMailingListPersistence.class)
1202 protected MBMailingListPersistence mbMailingListPersistence;
1203 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1204 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1205 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1206 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1207 @BeanReference(type = MBMessagePersistence.class)
1208 protected MBMessagePersistence mbMessagePersistence;
1209 @BeanReference(type = MBMessageFinder.class)
1210 protected MBMessageFinder mbMessageFinder;
1211 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1212 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1213 @BeanReference(type = MBStatsUserPersistence.class)
1214 protected MBStatsUserPersistence mbStatsUserPersistence;
1215 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1216 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1217 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1218 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1219 @BeanReference(type = MBThreadPersistence.class)
1220 protected MBThreadPersistence mbThreadPersistence;
1221 @BeanReference(type = MBThreadFinder.class)
1222 protected MBThreadFinder mbThreadFinder;
1223 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
1224 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
1225 @BeanReference(type = MBThreadFlagPersistence.class)
1226 protected MBThreadFlagPersistence mbThreadFlagPersistence;
1227 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1228 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1229 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1230 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1231 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1232 protected com.liferay.portal.service.GroupService groupService;
1233 @BeanReference(type = GroupPersistence.class)
1234 protected GroupPersistence groupPersistence;
1235 @BeanReference(type = GroupFinder.class)
1236 protected GroupFinder groupFinder;
1237 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1238 protected com.liferay.portal.service.LockLocalService lockLocalService;
1239 @BeanReference(type = LockPersistence.class)
1240 protected LockPersistence lockPersistence;
1241 @BeanReference(type = LockFinder.class)
1242 protected LockFinder lockFinder;
1243 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1244 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1245 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1246 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1247 @BeanReference(type = SubscriptionPersistence.class)
1248 protected SubscriptionPersistence subscriptionPersistence;
1249 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1250 protected com.liferay.portal.service.UserLocalService userLocalService;
1251 @BeanReference(type = com.liferay.portal.service.UserService.class)
1252 protected com.liferay.portal.service.UserService userService;
1253 @BeanReference(type = UserPersistence.class)
1254 protected UserPersistence userPersistence;
1255 @BeanReference(type = UserFinder.class)
1256 protected UserFinder userFinder;
1257 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1258 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1259 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1260 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1261 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1262 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1263 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1264 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1265 @BeanReference(type = AssetEntryPersistence.class)
1266 protected AssetEntryPersistence assetEntryPersistence;
1267 @BeanReference(type = AssetEntryFinder.class)
1268 protected AssetEntryFinder assetEntryFinder;
1269 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1270 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1271 @BeanReference(type = RatingsStatsPersistence.class)
1272 protected RatingsStatsPersistence ratingsStatsPersistence;
1273 @BeanReference(type = RatingsStatsFinder.class)
1274 protected RatingsStatsFinder ratingsStatsFinder;
1275 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1276 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1277 @BeanReference(type = SocialActivityPersistence.class)
1278 protected SocialActivityPersistence socialActivityPersistence;
1279 @BeanReference(type = SocialActivityFinder.class)
1280 protected SocialActivityFinder socialActivityFinder;
1281 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
1282 protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
1283 @BeanReference(type = SocialActivityCounterPersistence.class)
1284 protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1285 @BeanReference(type = SocialActivityCounterFinder.class)
1286 protected SocialActivityCounterFinder socialActivityCounterFinder;
1287 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1288 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1289 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1290 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1291 @BeanReference(type = TrashEntryPersistence.class)
1292 protected TrashEntryPersistence trashEntryPersistence;
1293 private String _beanIdentifier;
1294 }