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 com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1365 return socialActivityService;
1366 }
1367
1368
1373 public void setSocialActivityService(
1374 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1375 this.socialActivityService = socialActivityService;
1376 }
1377
1378
1383 public SocialActivityPersistence getSocialActivityPersistence() {
1384 return socialActivityPersistence;
1385 }
1386
1387
1392 public void setSocialActivityPersistence(
1393 SocialActivityPersistence socialActivityPersistence) {
1394 this.socialActivityPersistence = socialActivityPersistence;
1395 }
1396
1397
1402 public SocialActivityFinder getSocialActivityFinder() {
1403 return socialActivityFinder;
1404 }
1405
1406
1411 public void setSocialActivityFinder(
1412 SocialActivityFinder socialActivityFinder) {
1413 this.socialActivityFinder = socialActivityFinder;
1414 }
1415
1416
1421 public com.liferay.portlet.wiki.service.WikiPageLocalService getWikiPageLocalService() {
1422 return wikiPageLocalService;
1423 }
1424
1425
1430 public void setWikiPageLocalService(
1431 com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService) {
1432 this.wikiPageLocalService = wikiPageLocalService;
1433 }
1434
1435
1440 public com.liferay.portlet.wiki.service.WikiPageService getWikiPageService() {
1441 return wikiPageService;
1442 }
1443
1444
1449 public void setWikiPageService(
1450 com.liferay.portlet.wiki.service.WikiPageService wikiPageService) {
1451 this.wikiPageService = wikiPageService;
1452 }
1453
1454
1459 public WikiPagePersistence getWikiPagePersistence() {
1460 return wikiPagePersistence;
1461 }
1462
1463
1468 public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
1469 this.wikiPagePersistence = wikiPagePersistence;
1470 }
1471
1472
1477 public WikiPageFinder getWikiPageFinder() {
1478 return wikiPageFinder;
1479 }
1480
1481
1486 public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
1487 this.wikiPageFinder = wikiPageFinder;
1488 }
1489
1490 public void afterPropertiesSet() {
1491 }
1492
1493 public void destroy() {
1494 }
1495
1496
1501 @Override
1502 public String getBeanIdentifier() {
1503 return _beanIdentifier;
1504 }
1505
1506
1511 @Override
1512 public void setBeanIdentifier(String beanIdentifier) {
1513 _beanIdentifier = beanIdentifier;
1514 }
1515
1516 protected Class<?> getModelClass() {
1517 return MBMessage.class;
1518 }
1519
1520 protected String getModelClassName() {
1521 return MBMessage.class.getName();
1522 }
1523
1524
1529 protected void runSQL(String sql) throws SystemException {
1530 try {
1531 DataSource dataSource = mbMessagePersistence.getDataSource();
1532
1533 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1534 sql, new int[0]);
1535
1536 sqlUpdate.update();
1537 }
1538 catch (Exception e) {
1539 throw new SystemException(e);
1540 }
1541 }
1542
1543 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanLocalService.class)
1544 protected com.liferay.portlet.messageboards.service.MBBanLocalService mbBanLocalService;
1545 @BeanReference(type = com.liferay.portlet.messageboards.service.MBBanService.class)
1546 protected com.liferay.portlet.messageboards.service.MBBanService mbBanService;
1547 @BeanReference(type = MBBanPersistence.class)
1548 protected MBBanPersistence mbBanPersistence;
1549 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1550 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1551 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1552 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1553 @BeanReference(type = MBCategoryPersistence.class)
1554 protected MBCategoryPersistence mbCategoryPersistence;
1555 @BeanReference(type = MBCategoryFinder.class)
1556 protected MBCategoryFinder mbCategoryFinder;
1557 @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1558 protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1559 @BeanReference(type = MBDiscussionPersistence.class)
1560 protected MBDiscussionPersistence mbDiscussionPersistence;
1561 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMailingListLocalService.class)
1562 protected com.liferay.portlet.messageboards.service.MBMailingListLocalService mbMailingListLocalService;
1563 @BeanReference(type = MBMailingListPersistence.class)
1564 protected MBMailingListPersistence mbMailingListPersistence;
1565 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1566 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1567 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1568 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1569 @BeanReference(type = MBMessagePersistence.class)
1570 protected MBMessagePersistence mbMessagePersistence;
1571 @BeanReference(type = MBMessageFinder.class)
1572 protected MBMessageFinder mbMessageFinder;
1573 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1574 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1575 @BeanReference(type = MBStatsUserPersistence.class)
1576 protected MBStatsUserPersistence mbStatsUserPersistence;
1577 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1578 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1579 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1580 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1581 @BeanReference(type = MBThreadPersistence.class)
1582 protected MBThreadPersistence mbThreadPersistence;
1583 @BeanReference(type = MBThreadFinder.class)
1584 protected MBThreadFinder mbThreadFinder;
1585 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadFlagLocalService.class)
1586 protected com.liferay.portlet.messageboards.service.MBThreadFlagLocalService mbThreadFlagLocalService;
1587 @BeanReference(type = MBThreadFlagPersistence.class)
1588 protected MBThreadFlagPersistence mbThreadFlagPersistence;
1589 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1590 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1591 @BeanReference(type = com.liferay.mail.service.MailService.class)
1592 protected com.liferay.mail.service.MailService mailService;
1593 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1594 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1595 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1596 protected com.liferay.portal.service.CompanyService companyService;
1597 @BeanReference(type = CompanyPersistence.class)
1598 protected CompanyPersistence companyPersistence;
1599 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1600 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1601 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1602 protected com.liferay.portal.service.GroupService groupService;
1603 @BeanReference(type = GroupPersistence.class)
1604 protected GroupPersistence groupPersistence;
1605 @BeanReference(type = GroupFinder.class)
1606 protected GroupFinder groupFinder;
1607 @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1608 protected com.liferay.portal.service.LockLocalService lockLocalService;
1609 @BeanReference(type = LockPersistence.class)
1610 protected LockPersistence lockPersistence;
1611 @BeanReference(type = LockFinder.class)
1612 protected LockFinder lockFinder;
1613 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1614 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1615 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1616 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1617 @BeanReference(type = PortletPreferencesPersistence.class)
1618 protected PortletPreferencesPersistence portletPreferencesPersistence;
1619 @BeanReference(type = PortletPreferencesFinder.class)
1620 protected PortletPreferencesFinder portletPreferencesFinder;
1621 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1622 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1623 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1624 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1625 @BeanReference(type = SubscriptionPersistence.class)
1626 protected SubscriptionPersistence subscriptionPersistence;
1627 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1628 protected com.liferay.portal.service.UserLocalService userLocalService;
1629 @BeanReference(type = com.liferay.portal.service.UserService.class)
1630 protected com.liferay.portal.service.UserService userService;
1631 @BeanReference(type = UserPersistence.class)
1632 protected UserPersistence userPersistence;
1633 @BeanReference(type = UserFinder.class)
1634 protected UserFinder userFinder;
1635 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1636 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1637 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1638 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1639 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1640 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1641 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1642 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1643 @BeanReference(type = AssetEntryPersistence.class)
1644 protected AssetEntryPersistence assetEntryPersistence;
1645 @BeanReference(type = AssetEntryFinder.class)
1646 protected AssetEntryFinder assetEntryFinder;
1647 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1648 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1649 @BeanReference(type = AssetLinkPersistence.class)
1650 protected AssetLinkPersistence assetLinkPersistence;
1651 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1652 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1653 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1654 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1655 @BeanReference(type = AssetTagPersistence.class)
1656 protected AssetTagPersistence assetTagPersistence;
1657 @BeanReference(type = AssetTagFinder.class)
1658 protected AssetTagFinder assetTagFinder;
1659 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1660 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1661 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1662 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1663 @BeanReference(type = BlogsEntryPersistence.class)
1664 protected BlogsEntryPersistence blogsEntryPersistence;
1665 @BeanReference(type = BlogsEntryFinder.class)
1666 protected BlogsEntryFinder blogsEntryFinder;
1667 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1668 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1669 @BeanReference(type = ExpandoRowPersistence.class)
1670 protected ExpandoRowPersistence expandoRowPersistence;
1671 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1672 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1673 @BeanReference(type = RatingsStatsPersistence.class)
1674 protected RatingsStatsPersistence ratingsStatsPersistence;
1675 @BeanReference(type = RatingsStatsFinder.class)
1676 protected RatingsStatsFinder ratingsStatsFinder;
1677 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1678 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1679 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1680 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1681 @BeanReference(type = SocialActivityPersistence.class)
1682 protected SocialActivityPersistence socialActivityPersistence;
1683 @BeanReference(type = SocialActivityFinder.class)
1684 protected SocialActivityFinder socialActivityFinder;
1685 @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageLocalService.class)
1686 protected com.liferay.portlet.wiki.service.WikiPageLocalService wikiPageLocalService;
1687 @BeanReference(type = com.liferay.portlet.wiki.service.WikiPageService.class)
1688 protected com.liferay.portlet.wiki.service.WikiPageService wikiPageService;
1689 @BeanReference(type = WikiPagePersistence.class)
1690 protected WikiPagePersistence wikiPagePersistence;
1691 @BeanReference(type = WikiPageFinder.class)
1692 protected WikiPageFinder wikiPageFinder;
1693 private String _beanIdentifier;
1694 }