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.CompanyPersistence;
024 import com.liferay.portal.service.persistence.GroupFinder;
025 import com.liferay.portal.service.persistence.GroupPersistence;
026 import com.liferay.portal.service.persistence.LockFinder;
027 import com.liferay.portal.service.persistence.LockPersistence;
028 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
029 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
030 import com.liferay.portal.service.persistence.SubscriptionPersistence;
031 import com.liferay.portal.service.persistence.UserFinder;
032 import com.liferay.portal.service.persistence.UserPersistence;
033 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
034
035 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
036 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
037 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
038 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
039 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
040 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
041 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
042 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
043 import com.liferay.portlet.messageboards.model.MBMessage;
044 import com.liferay.portlet.messageboards.service.MBMessageService;
045 import com.liferay.portlet.messageboards.service.persistence.MBBanPersistence;
046 import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
047 import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
048 import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
049 import com.liferay.portlet.messageboards.service.persistence.MBMailingListPersistence;
050 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
051 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
052 import com.liferay.portlet.messageboards.service.persistence.MBStatsUserPersistence;
053 import com.liferay.portlet.messageboards.service.persistence.MBThreadFinder;
054 import com.liferay.portlet.messageboards.service.persistence.MBThreadFlagPersistence;
055 import com.liferay.portlet.messageboards.service.persistence.MBThreadPersistence;
056 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
057 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
058 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
059 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
060 import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
061 import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
062
063 import javax.sql.DataSource;
064
065
077 public abstract class MBMessageServiceBaseImpl extends BaseServiceImpl
078 implements MBMessageService, IdentifiableBean {
079
084
085
090 public com.liferay.portlet.messageboards.service.MBBanLocalService getMBBanLocalService() {
091 return mbBanLocalService;
092 }
093
094
099 public void setMBBanLocalService(
100 com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService) {
101 this.mbBanLocalService = mbBanLocalService;
102 }
103
104
109 public com.liferay.portlet.messageboards.service.MBBanService getMBBanService() {
110 return mbBanService;
111 }
112
113
118 public void setMBBanService(
119 com.liferay.portlet.messageboards.service.MBBanService mbBanService) {
120 this.mbBanService = mbBanService;
121 }
122
123
128 public MBBanPersistence getMBBanPersistence() {
129 return mbBanPersistence;
130 }
131
132
137 public void setMBBanPersistence(MBBanPersistence mbBanPersistence) {
138 this.mbBanPersistence = mbBanPersistence;
139 }
140
141
146 public com.liferay.portlet.messageboards.service.MBCategoryLocalService getMBCategoryLocalService() {
147 return mbCategoryLocalService;
148 }
149
150
155 public void setMBCategoryLocalService(
156 com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService) {
157 this.mbCategoryLocalService = mbCategoryLocalService;
158 }
159
160
165 public com.liferay.portlet.messageboards.service.MBCategoryService getMBCategoryService() {
166 return mbCategoryService;
167 }
168
169
174 public void setMBCategoryService(
175 com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService) {
176 this.mbCategoryService = mbCategoryService;
177 }
178
179
184 public MBCategoryPersistence getMBCategoryPersistence() {
185 return mbCategoryPersistence;
186 }
187
188
193 public void setMBCategoryPersistence(
194 MBCategoryPersistence mbCategoryPersistence) {
195 this.mbCategoryPersistence = mbCategoryPersistence;
196 }
197
198
203 public MBCategoryFinder getMBCategoryFinder() {
204 return mbCategoryFinder;
205 }
206
207
212 public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
213 this.mbCategoryFinder = mbCategoryFinder;
214 }
215
216
221 public com.liferay.portlet.messageboards.service.MBDiscussionLocalService getMBDiscussionLocalService() {
222 return mbDiscussionLocalService;
223 }
224
225
230 public void setMBDiscussionLocalService(
231 com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService) {
232 this.mbDiscussionLocalService = mbDiscussionLocalService;
233 }
234
235
240 public MBDiscussionPersistence getMBDiscussionPersistence() {
241 return mbDiscussionPersistence;
242 }
243
244
249 public void setMBDiscussionPersistence(
250 MBDiscussionPersistence mbDiscussionPersistence) {
251 this.mbDiscussionPersistence = mbDiscussionPersistence;
252 }
253
254
259 public com.liferay.portlet.messageboards.service.MBMailingListLocalService getMBMailingListLocalService() {
260 return mbMailingListLocalService;
261 }
262
263
268 public void setMBMailingListLocalService(
269 com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService) {
270 this.mbMailingListLocalService = mbMailingListLocalService;
271 }
272
273
278 public MBMailingListPersistence getMBMailingListPersistence() {
279 return mbMailingListPersistence;
280 }
281
282
287 public void setMBMailingListPersistence(
288 MBMailingListPersistence mbMailingListPersistence) {
289 this.mbMailingListPersistence = mbMailingListPersistence;
290 }
291
292
297 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
298 return mbMessageLocalService;
299 }
300
301
306 public void setMBMessageLocalService(
307 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
308 this.mbMessageLocalService = mbMessageLocalService;
309 }
310
311
316 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
317 return mbMessageService;
318 }
319
320
325 public void setMBMessageService(
326 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
327 this.mbMessageService = mbMessageService;
328 }
329
330
335 public MBMessagePersistence getMBMessagePersistence() {
336 return mbMessagePersistence;
337 }
338
339
344 public void setMBMessagePersistence(
345 MBMessagePersistence mbMessagePersistence) {
346 this.mbMessagePersistence = mbMessagePersistence;
347 }
348
349
354 public MBMessageFinder getMBMessageFinder() {
355 return mbMessageFinder;
356 }
357
358
363 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
364 this.mbMessageFinder = mbMessageFinder;
365 }
366
367
372 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
373 return mbStatsUserLocalService;
374 }
375
376
381 public void setMBStatsUserLocalService(
382 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
383 this.mbStatsUserLocalService = mbStatsUserLocalService;
384 }
385
386
391 public MBStatsUserPersistence getMBStatsUserPersistence() {
392 return mbStatsUserPersistence;
393 }
394
395
400 public void setMBStatsUserPersistence(
401 MBStatsUserPersistence mbStatsUserPersistence) {
402 this.mbStatsUserPersistence = mbStatsUserPersistence;
403 }
404
405
410 public com.liferay.portlet.messageboards.service.MBThreadLocalService getMBThreadLocalService() {
411 return mbThreadLocalService;
412 }
413
414
419 public void setMBThreadLocalService(
420 com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService) {
421 this.mbThreadLocalService = mbThreadLocalService;
422 }
423
424
429 public com.liferay.portlet.messageboards.service.MBThreadService getMBThreadService() {
430 return mbThreadService;
431 }
432
433
438 public void setMBThreadService(
439 com.liferay.portlet.messageboards.service.MBThreadService mbThreadService) {
440 this.mbThreadService = mbThreadService;
441 }
442
443
448 public MBThreadPersistence getMBThreadPersistence() {
449 return mbThreadPersistence;
450 }
451
452
457 public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
458 this.mbThreadPersistence = mbThreadPersistence;
459 }
460
461
466 public MBThreadFinder getMBThreadFinder() {
467 return mbThreadFinder;
468 }
469
470
475 public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
476 this.mbThreadFinder = mbThreadFinder;
477 }
478
479
484 public com.liferay.portlet.messageboards.service.MBThreadFlagLocalService getMBThreadFlagLocalService() {
485 return mbThreadFlagLocalService;
486 }
487
488
493 public void setMBThreadFlagLocalService(
494 com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService) {
495 this.mbThreadFlagLocalService = mbThreadFlagLocalService;
496 }
497
498
503 public MBThreadFlagPersistence getMBThreadFlagPersistence() {
504 return mbThreadFlagPersistence;
505 }
506
507
512 public void setMBThreadFlagPersistence(
513 MBThreadFlagPersistence mbThreadFlagPersistence) {
514 this.mbThreadFlagPersistence = mbThreadFlagPersistence;
515 }
516
517
522 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
523 return counterLocalService;
524 }
525
526
531 public void setCounterLocalService(
532 com.liferay.counter.service.CounterLocalService counterLocalService) {
533 this.counterLocalService = counterLocalService;
534 }
535
536
541 public com.liferay.mail.service.MailService getMailService() {
542 return mailService;
543 }
544
545
550 public void setMailService(com.liferay.mail.service.MailService mailService) {
551 this.mailService = mailService;
552 }
553
554
559 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
560 return companyLocalService;
561 }
562
563
568 public void setCompanyLocalService(
569 com.liferay.portal.service.CompanyLocalService companyLocalService) {
570 this.companyLocalService = companyLocalService;
571 }
572
573
578 public com.liferay.portal.service.CompanyService getCompanyService() {
579 return companyService;
580 }
581
582
587 public void setCompanyService(
588 com.liferay.portal.service.CompanyService companyService) {
589 this.companyService = companyService;
590 }
591
592
597 public CompanyPersistence getCompanyPersistence() {
598 return companyPersistence;
599 }
600
601
606 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
607 this.companyPersistence = companyPersistence;
608 }
609
610
615 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
616 return groupLocalService;
617 }
618
619
624 public void setGroupLocalService(
625 com.liferay.portal.service.GroupLocalService groupLocalService) {
626 this.groupLocalService = groupLocalService;
627 }
628
629
634 public com.liferay.portal.service.GroupService getGroupService() {
635 return groupService;
636 }
637
638
643 public void setGroupService(
644 com.liferay.portal.service.GroupService groupService) {
645 this.groupService = groupService;
646 }
647
648
653 public GroupPersistence getGroupPersistence() {
654 return groupPersistence;
655 }
656
657
662 public void setGroupPersistence(GroupPersistence groupPersistence) {
663 this.groupPersistence = groupPersistence;
664 }
665
666
671 public GroupFinder getGroupFinder() {
672 return groupFinder;
673 }
674
675
680 public void setGroupFinder(GroupFinder groupFinder) {
681 this.groupFinder = groupFinder;
682 }
683
684
689 public com.liferay.portal.service.LockLocalService getLockLocalService() {
690 return lockLocalService;
691 }
692
693
698 public void setLockLocalService(
699 com.liferay.portal.service.LockLocalService lockLocalService) {
700 this.lockLocalService = lockLocalService;
701 }
702
703
708 public LockPersistence getLockPersistence() {
709 return lockPersistence;
710 }
711
712
717 public void setLockPersistence(LockPersistence lockPersistence) {
718 this.lockPersistence = lockPersistence;
719 }
720
721
726 public LockFinder getLockFinder() {
727 return lockFinder;
728 }
729
730
735 public void setLockFinder(LockFinder lockFinder) {
736 this.lockFinder = lockFinder;
737 }
738
739
744 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
745 return portletPreferencesLocalService;
746 }
747
748
753 public void setPortletPreferencesLocalService(
754 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
755 this.portletPreferencesLocalService = portletPreferencesLocalService;
756 }
757
758
763 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
764 return portletPreferencesService;
765 }
766
767
772 public void setPortletPreferencesService(
773 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
774 this.portletPreferencesService = portletPreferencesService;
775 }
776
777
782 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
783 return portletPreferencesPersistence;
784 }
785
786
791 public void setPortletPreferencesPersistence(
792 PortletPreferencesPersistence portletPreferencesPersistence) {
793 this.portletPreferencesPersistence = portletPreferencesPersistence;
794 }
795
796
801 public PortletPreferencesFinder getPortletPreferencesFinder() {
802 return portletPreferencesFinder;
803 }
804
805
810 public void setPortletPreferencesFinder(
811 PortletPreferencesFinder portletPreferencesFinder) {
812 this.portletPreferencesFinder = portletPreferencesFinder;
813 }
814
815
820 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
821 return resourceLocalService;
822 }
823
824
829 public void setResourceLocalService(
830 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
831 this.resourceLocalService = resourceLocalService;
832 }
833
834
839 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
840 return subscriptionLocalService;
841 }
842
843
848 public void setSubscriptionLocalService(
849 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
850 this.subscriptionLocalService = subscriptionLocalService;
851 }
852
853
858 public SubscriptionPersistence getSubscriptionPersistence() {
859 return subscriptionPersistence;
860 }
861
862
867 public void setSubscriptionPersistence(
868 SubscriptionPersistence subscriptionPersistence) {
869 this.subscriptionPersistence = subscriptionPersistence;
870 }
871
872
877 public com.liferay.portal.service.UserLocalService getUserLocalService() {
878 return userLocalService;
879 }
880
881
886 public void setUserLocalService(
887 com.liferay.portal.service.UserLocalService userLocalService) {
888 this.userLocalService = userLocalService;
889 }
890
891
896 public com.liferay.portal.service.UserService getUserService() {
897 return userService;
898 }
899
900
905 public void setUserService(
906 com.liferay.portal.service.UserService userService) {
907 this.userService = userService;
908 }
909
910
915 public UserPersistence getUserPersistence() {
916 return userPersistence;
917 }
918
919
924 public void setUserPersistence(UserPersistence userPersistence) {
925 this.userPersistence = userPersistence;
926 }
927
928
933 public UserFinder getUserFinder() {
934 return userFinder;
935 }
936
937
942 public void setUserFinder(UserFinder userFinder) {
943 this.userFinder = userFinder;
944 }
945
946
951 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
952 return workflowInstanceLinkLocalService;
953 }
954
955
960 public void setWorkflowInstanceLinkLocalService(
961 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
962 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
963 }
964
965
970 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
971 return workflowInstanceLinkPersistence;
972 }
973
974
979 public void setWorkflowInstanceLinkPersistence(
980 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
981 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
982 }
983
984
989 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
990 return assetEntryLocalService;
991 }
992
993
998 public void setAssetEntryLocalService(
999 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1000 this.assetEntryLocalService = assetEntryLocalService;
1001 }
1002
1003
1008 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1009 return assetEntryService;
1010 }
1011
1012
1017 public void setAssetEntryService(
1018 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1019 this.assetEntryService = assetEntryService;
1020 }
1021
1022
1027 public AssetEntryPersistence getAssetEntryPersistence() {
1028 return assetEntryPersistence;
1029 }
1030
1031
1036 public void setAssetEntryPersistence(
1037 AssetEntryPersistence assetEntryPersistence) {
1038 this.assetEntryPersistence = assetEntryPersistence;
1039 }
1040
1041
1046 public AssetEntryFinder getAssetEntryFinder() {
1047 return assetEntryFinder;
1048 }
1049
1050
1055 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1056 this.assetEntryFinder = assetEntryFinder;
1057 }
1058
1059
1064 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1065 return assetLinkLocalService;
1066 }
1067
1068
1073 public void setAssetLinkLocalService(
1074 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1075 this.assetLinkLocalService = assetLinkLocalService;
1076 }
1077
1078
1083 public AssetLinkPersistence getAssetLinkPersistence() {
1084 return assetLinkPersistence;
1085 }
1086
1087
1092 public void setAssetLinkPersistence(
1093 AssetLinkPersistence assetLinkPersistence) {
1094 this.assetLinkPersistence = assetLinkPersistence;
1095 }
1096
1097
1102 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1103 return assetTagLocalService;
1104 }
1105
1106
1111 public void setAssetTagLocalService(
1112 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1113 this.assetTagLocalService = assetTagLocalService;
1114 }
1115
1116
1121 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1122 return assetTagService;
1123 }
1124
1125
1130 public void setAssetTagService(
1131 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1132 this.assetTagService = assetTagService;
1133 }
1134
1135
1140 public AssetTagPersistence getAssetTagPersistence() {
1141 return assetTagPersistence;
1142 }
1143
1144
1149 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1150 this.assetTagPersistence = assetTagPersistence;
1151 }
1152
1153
1158 public AssetTagFinder getAssetTagFinder() {
1159 return assetTagFinder;
1160 }
1161
1162
1167 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1168 this.assetTagFinder = assetTagFinder;
1169 }
1170
1171
1176 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
1177 return blogsEntryLocalService;
1178 }
1179
1180
1185 public void setBlogsEntryLocalService(
1186 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
1187 this.blogsEntryLocalService = blogsEntryLocalService;
1188 }
1189
1190
1195 public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
1196 return blogsEntryService;
1197 }
1198
1199
1204 public void setBlogsEntryService(
1205 com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
1206 this.blogsEntryService = blogsEntryService;
1207 }
1208
1209
1214 public BlogsEntryPersistence getBlogsEntryPersistence() {
1215 return blogsEntryPersistence;
1216 }
1217
1218
1223 public void setBlogsEntryPersistence(
1224 BlogsEntryPersistence blogsEntryPersistence) {
1225 this.blogsEntryPersistence = blogsEntryPersistence;
1226 }
1227
1228
1233 public BlogsEntryFinder getBlogsEntryFinder() {
1234 return blogsEntryFinder;
1235 }
1236
1237
1242 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
1243 this.blogsEntryFinder = blogsEntryFinder;
1244 }
1245
1246
1251 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1252 return expandoRowLocalService;
1253 }
1254
1255
1260 public void setExpandoRowLocalService(
1261 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1262 this.expandoRowLocalService = expandoRowLocalService;
1263 }
1264
1265
1270 public ExpandoRowPersistence getExpandoRowPersistence() {
1271 return expandoRowPersistence;
1272 }
1273
1274
1279 public void setExpandoRowPersistence(
1280 ExpandoRowPersistence expandoRowPersistence) {
1281 this.expandoRowPersistence = expandoRowPersistence;
1282 }
1283
1284
1289 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1290 return ratingsStatsLocalService;
1291 }
1292
1293
1298 public void setRatingsStatsLocalService(
1299 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1300 this.ratingsStatsLocalService = ratingsStatsLocalService;
1301 }
1302
1303
1308 public RatingsStatsPersistence getRatingsStatsPersistence() {
1309 return ratingsStatsPersistence;
1310 }
1311
1312
1317 public void setRatingsStatsPersistence(
1318 RatingsStatsPersistence ratingsStatsPersistence) {
1319 this.ratingsStatsPersistence = ratingsStatsPersistence;
1320 }
1321
1322
1327 public RatingsStatsFinder getRatingsStatsFinder() {
1328 return ratingsStatsFinder;
1329 }
1330
1331
1336 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1337 this.ratingsStatsFinder = ratingsStatsFinder;
1338 }
1339
1340
1345 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1346 return socialActivityLocalService;
1347 }
1348
1349
1354 public void setSocialActivityLocalService(
1355 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1356 this.socialActivityLocalService = socialActivityLocalService;
1357 }
1358
1359
1364 public SocialActivityPersistence getSocialActivityPersistence() {
1365 return socialActivityPersistence;
1366 }
1367
1368
1373 public void setSocialActivityPersistence(
1374 SocialActivityPersistence socialActivityPersistence) {
1375 this.socialActivityPersistence = socialActivityPersistence;
1376 }
1377
1378
1383 public SocialActivityFinder getSocialActivityFinder() {
1384 return socialActivityFinder;
1385 }
1386
1387
1392 public void setSocialActivityFinder(
1393 SocialActivityFinder socialActivityFinder) {
1394 this.socialActivityFinder = socialActivityFinder;
1395 }
1396
1397
1402 public com.liferay.portlet.wiki.service.WikiPageLocalService getWikiPageLocalService() {
1403 return wikiPageLocalService;
1404 }
1405
1406
1411 public void setWikiPageLocalService(
1412 com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService) {
1413 this.wikiPageLocalService = wikiPageLocalService;
1414 }
1415
1416
1421 public com.liferay.portlet.wiki.service.WikiPageService getWikiPageService() {
1422 return wikiPageService;
1423 }
1424
1425
1430 public void setWikiPageService(
1431 com.liferay.portlet.wiki.service.WikiPageService wikiPageService) {
1432 this.wikiPageService = wikiPageService;
1433 }
1434
1435
1440 public WikiPagePersistence getWikiPagePersistence() {
1441 return wikiPagePersistence;
1442 }
1443
1444
1449 public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
1450 this.wikiPagePersistence = wikiPagePersistence;
1451 }
1452
1453
1458 public WikiPageFinder getWikiPageFinder() {
1459 return wikiPageFinder;
1460 }
1461
1462
1467 public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
1468 this.wikiPageFinder = wikiPageFinder;
1469 }
1470
1471 public void afterPropertiesSet() {
1472 }
1473
1474 public void destroy() {
1475 }
1476
1477
1482 @Override
1483 public String getBeanIdentifier() {
1484 return _beanIdentifier;
1485 }
1486
1487
1492 @Override
1493 public void setBeanIdentifier(String beanIdentifier) {
1494 _beanIdentifier = beanIdentifier;
1495 }
1496
1497 protected Class<?> getModelClass() {
1498 return MBMessage.class;
1499 }
1500
1501 protected String getModelClassName() {
1502 return MBMessage.class.getName();
1503 }
1504
1505
1510 protected void runSQL(String sql) throws SystemException {
1511 try {
1512 DataSource dataSource = mbMessagePersistence.getDataSource();
1513
1514 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1515 sql, new int[0]);
1516
1517 sqlUpdate.update();
1518 }
1519 catch (Exception e) {
1520 throw new SystemException(e);
1521 }
1522 }
1523
1524 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
1525 protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
1526 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
1527 protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
1528 @BeanReference(type = MBBanPersistence.class)
1529 protected MBBanPersistence mbBanPersistence;
1530 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1531 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1532 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1533 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1534 @BeanReference(type = MBCategoryPersistence.class)
1535 protected MBCategoryPersistence mbCategoryPersistence;
1536 @BeanReference(type = MBCategoryFinder.class)
1537 protected MBCategoryFinder mbCategoryFinder;
1538 @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1539 protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1540 @BeanReference(type = MBDiscussionPersistence.class)
1541 protected MBDiscussionPersistence mbDiscussionPersistence;
1542 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMailingListLocalService.class)
1543 protected com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService;
1544 @BeanReference(type = MBMailingListPersistence.class)
1545 protected MBMailingListPersistence mbMailingListPersistence;
1546 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1547 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1548 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1549 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1550 @BeanReference(type = MBMessagePersistence.class)
1551 protected MBMessagePersistence mbMessagePersistence;
1552 @BeanReference(type = MBMessageFinder.class)
1553 protected MBMessageFinder mbMessageFinder;
1554 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1555 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1556 @BeanReference(type = MBStatsUserPersistence.class)
1557 protected MBStatsUserPersistence mbStatsUserPersistence;
1558 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1559 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1560 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1561 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1562 @BeanReference(type = MBThreadPersistence.class)
1563 protected MBThreadPersistence mbThreadPersistence;
1564 @BeanReference(type = MBThreadFinder.class)
1565 protected MBThreadFinder mbThreadFinder;
1566 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
1567 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
1568 @BeanReference(type = MBThreadFlagPersistence.class)
1569 protected MBThreadFlagPersistence mbThreadFlagPersistence;
1570 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1571 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1572 @BeanReference(type = com.liferay.mail.service.MailService.class)
1573 protected com.liferay.mail.service.MailService mailService;
1574 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1575 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1576 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1577 protected com.liferay.portal.service.CompanyService companyService;
1578 @BeanReference(type = CompanyPersistence.class)
1579 protected CompanyPersistence companyPersistence;
1580 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1581 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1582 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1583 protected com.liferay.portal.service.GroupService groupService;
1584 @BeanReference(type = GroupPersistence.class)
1585 protected GroupPersistence groupPersistence;
1586 @BeanReference(type = GroupFinder.class)
1587 protected GroupFinder groupFinder;
1588 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1589 protected com.liferay.portal.service.LockLocalService lockLocalService;
1590 @BeanReference(type = LockPersistence.class)
1591 protected LockPersistence lockPersistence;
1592 @BeanReference(type = LockFinder.class)
1593 protected LockFinder lockFinder;
1594 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1595 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1596 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1597 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1598 @BeanReference(type = PortletPreferencesPersistence.class)
1599 protected PortletPreferencesPersistence portletPreferencesPersistence;
1600 @BeanReference(type = PortletPreferencesFinder.class)
1601 protected PortletPreferencesFinder portletPreferencesFinder;
1602 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1603 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1604 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1605 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1606 @BeanReference(type = SubscriptionPersistence.class)
1607 protected SubscriptionPersistence subscriptionPersistence;
1608 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1609 protected com.liferay.portal.service.UserLocalService userLocalService;
1610 @BeanReference(type = com.liferay.portal.service.UserService.class)
1611 protected com.liferay.portal.service.UserService userService;
1612 @BeanReference(type = UserPersistence.class)
1613 protected UserPersistence userPersistence;
1614 @BeanReference(type = UserFinder.class)
1615 protected UserFinder userFinder;
1616 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1617 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1618 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1619 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1620 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1621 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1622 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1623 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1624 @BeanReference(type = AssetEntryPersistence.class)
1625 protected AssetEntryPersistence assetEntryPersistence;
1626 @BeanReference(type = AssetEntryFinder.class)
1627 protected AssetEntryFinder assetEntryFinder;
1628 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1629 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1630 @BeanReference(type = AssetLinkPersistence.class)
1631 protected AssetLinkPersistence assetLinkPersistence;
1632 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1633 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1634 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1635 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1636 @BeanReference(type = AssetTagPersistence.class)
1637 protected AssetTagPersistence assetTagPersistence;
1638 @BeanReference(type = AssetTagFinder.class)
1639 protected AssetTagFinder assetTagFinder;
1640 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1641 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1642 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1643 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1644 @BeanReference(type = BlogsEntryPersistence.class)
1645 protected BlogsEntryPersistence blogsEntryPersistence;
1646 @BeanReference(type = BlogsEntryFinder.class)
1647 protected BlogsEntryFinder blogsEntryFinder;
1648 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1649 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1650 @BeanReference(type = ExpandoRowPersistence.class)
1651 protected ExpandoRowPersistence expandoRowPersistence;
1652 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1653 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1654 @BeanReference(type = RatingsStatsPersistence.class)
1655 protected RatingsStatsPersistence ratingsStatsPersistence;
1656 @BeanReference(type = RatingsStatsFinder.class)
1657 protected RatingsStatsFinder ratingsStatsFinder;
1658 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1659 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1660 @BeanReference(type = SocialActivityPersistence.class)
1661 protected SocialActivityPersistence socialActivityPersistence;
1662 @BeanReference(type = SocialActivityFinder.class)
1663 protected SocialActivityFinder socialActivityFinder;
1664 @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageLocalService.class)
1665 protected com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService;
1666 @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageService.class)
1667 protected com.liferay.portlet.wiki.service.WikiPageService wikiPageService;
1668 @BeanReference(type = WikiPagePersistence.class)
1669 protected WikiPagePersistence wikiPagePersistence;
1670 @BeanReference(type = WikiPageFinder.class)
1671 protected WikiPageFinder wikiPageFinder;
1672 private String _beanIdentifier;
1673 }