001
014
015 package com.liferay.portlet.messageboards.service.base;
016
017 import com.liferay.portal.kernel.bean.BeanReference;
018 import com.liferay.portal.kernel.bean.IdentifiableBean;
019 import com.liferay.portal.kernel.dao.db.DB;
020 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.exception.SystemException;
024 import com.liferay.portal.service.BaseServiceImpl;
025 import com.liferay.portal.service.persistence.ClassNamePersistence;
026 import com.liferay.portal.service.persistence.CompanyPersistence;
027 import com.liferay.portal.service.persistence.GroupFinder;
028 import com.liferay.portal.service.persistence.GroupPersistence;
029 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
030 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
031 import com.liferay.portal.service.persistence.SubscriptionPersistence;
032 import com.liferay.portal.service.persistence.UserFinder;
033 import com.liferay.portal.service.persistence.UserPersistence;
034 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
035 import com.liferay.portal.util.PortalUtil;
036
037 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
038 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
039 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
040 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
041 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
042 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
043 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
044 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
045 import com.liferay.portlet.messageboards.model.MBMessage;
046 import com.liferay.portlet.messageboards.service.MBMessageService;
047 import com.liferay.portlet.messageboards.service.persistence.MBCategoryFinder;
048 import com.liferay.portlet.messageboards.service.persistence.MBCategoryPersistence;
049 import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
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.MBThreadPersistence;
055 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
056 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
057 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
058 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
059
060 import javax.sql.DataSource;
061
062
074 public abstract class MBMessageServiceBaseImpl extends BaseServiceImpl
075 implements MBMessageService, IdentifiableBean {
076
081
082
087 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
088 return mbMessageLocalService;
089 }
090
091
096 public void setMBMessageLocalService(
097 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
098 this.mbMessageLocalService = mbMessageLocalService;
099 }
100
101
106 public MBMessageService getMBMessageService() {
107 return mbMessageService;
108 }
109
110
115 public void setMBMessageService(MBMessageService mbMessageService) {
116 this.mbMessageService = mbMessageService;
117 }
118
119
124 public MBMessagePersistence getMBMessagePersistence() {
125 return mbMessagePersistence;
126 }
127
128
133 public void setMBMessagePersistence(
134 MBMessagePersistence mbMessagePersistence) {
135 this.mbMessagePersistence = mbMessagePersistence;
136 }
137
138
143 public MBMessageFinder getMBMessageFinder() {
144 return mbMessageFinder;
145 }
146
147
152 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
153 this.mbMessageFinder = mbMessageFinder;
154 }
155
156
161 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
162 return counterLocalService;
163 }
164
165
170 public void setCounterLocalService(
171 com.liferay.counter.service.CounterLocalService counterLocalService) {
172 this.counterLocalService = counterLocalService;
173 }
174
175
180 public com.liferay.mail.service.MailService getMailService() {
181 return mailService;
182 }
183
184
189 public void setMailService(com.liferay.mail.service.MailService mailService) {
190 this.mailService = mailService;
191 }
192
193
198 public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
199 return classNameLocalService;
200 }
201
202
207 public void setClassNameLocalService(
208 com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
209 this.classNameLocalService = classNameLocalService;
210 }
211
212
217 public com.liferay.portal.service.ClassNameService getClassNameService() {
218 return classNameService;
219 }
220
221
226 public void setClassNameService(
227 com.liferay.portal.service.ClassNameService classNameService) {
228 this.classNameService = classNameService;
229 }
230
231
236 public ClassNamePersistence getClassNamePersistence() {
237 return classNamePersistence;
238 }
239
240
245 public void setClassNamePersistence(
246 ClassNamePersistence classNamePersistence) {
247 this.classNamePersistence = classNamePersistence;
248 }
249
250
255 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
256 return companyLocalService;
257 }
258
259
264 public void setCompanyLocalService(
265 com.liferay.portal.service.CompanyLocalService companyLocalService) {
266 this.companyLocalService = companyLocalService;
267 }
268
269
274 public com.liferay.portal.service.CompanyService getCompanyService() {
275 return companyService;
276 }
277
278
283 public void setCompanyService(
284 com.liferay.portal.service.CompanyService companyService) {
285 this.companyService = companyService;
286 }
287
288
293 public CompanyPersistence getCompanyPersistence() {
294 return companyPersistence;
295 }
296
297
302 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
303 this.companyPersistence = companyPersistence;
304 }
305
306
311 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
312 return groupLocalService;
313 }
314
315
320 public void setGroupLocalService(
321 com.liferay.portal.service.GroupLocalService groupLocalService) {
322 this.groupLocalService = groupLocalService;
323 }
324
325
330 public com.liferay.portal.service.GroupService getGroupService() {
331 return groupService;
332 }
333
334
339 public void setGroupService(
340 com.liferay.portal.service.GroupService groupService) {
341 this.groupService = groupService;
342 }
343
344
349 public GroupPersistence getGroupPersistence() {
350 return groupPersistence;
351 }
352
353
358 public void setGroupPersistence(GroupPersistence groupPersistence) {
359 this.groupPersistence = groupPersistence;
360 }
361
362
367 public GroupFinder getGroupFinder() {
368 return groupFinder;
369 }
370
371
376 public void setGroupFinder(GroupFinder groupFinder) {
377 this.groupFinder = groupFinder;
378 }
379
380
385 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
386 return portletPreferencesLocalService;
387 }
388
389
394 public void setPortletPreferencesLocalService(
395 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
396 this.portletPreferencesLocalService = portletPreferencesLocalService;
397 }
398
399
404 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
405 return portletPreferencesService;
406 }
407
408
413 public void setPortletPreferencesService(
414 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
415 this.portletPreferencesService = portletPreferencesService;
416 }
417
418
423 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
424 return portletPreferencesPersistence;
425 }
426
427
432 public void setPortletPreferencesPersistence(
433 PortletPreferencesPersistence portletPreferencesPersistence) {
434 this.portletPreferencesPersistence = portletPreferencesPersistence;
435 }
436
437
442 public PortletPreferencesFinder getPortletPreferencesFinder() {
443 return portletPreferencesFinder;
444 }
445
446
451 public void setPortletPreferencesFinder(
452 PortletPreferencesFinder portletPreferencesFinder) {
453 this.portletPreferencesFinder = portletPreferencesFinder;
454 }
455
456
461 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
462 return resourceLocalService;
463 }
464
465
470 public void setResourceLocalService(
471 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
472 this.resourceLocalService = resourceLocalService;
473 }
474
475
480 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
481 return subscriptionLocalService;
482 }
483
484
489 public void setSubscriptionLocalService(
490 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
491 this.subscriptionLocalService = subscriptionLocalService;
492 }
493
494
499 public SubscriptionPersistence getSubscriptionPersistence() {
500 return subscriptionPersistence;
501 }
502
503
508 public void setSubscriptionPersistence(
509 SubscriptionPersistence subscriptionPersistence) {
510 this.subscriptionPersistence = subscriptionPersistence;
511 }
512
513
518 public com.liferay.portal.service.UserLocalService getUserLocalService() {
519 return userLocalService;
520 }
521
522
527 public void setUserLocalService(
528 com.liferay.portal.service.UserLocalService userLocalService) {
529 this.userLocalService = userLocalService;
530 }
531
532
537 public com.liferay.portal.service.UserService getUserService() {
538 return userService;
539 }
540
541
546 public void setUserService(
547 com.liferay.portal.service.UserService userService) {
548 this.userService = userService;
549 }
550
551
556 public UserPersistence getUserPersistence() {
557 return userPersistence;
558 }
559
560
565 public void setUserPersistence(UserPersistence userPersistence) {
566 this.userPersistence = userPersistence;
567 }
568
569
574 public UserFinder getUserFinder() {
575 return userFinder;
576 }
577
578
583 public void setUserFinder(UserFinder userFinder) {
584 this.userFinder = userFinder;
585 }
586
587
592 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
593 return workflowInstanceLinkLocalService;
594 }
595
596
601 public void setWorkflowInstanceLinkLocalService(
602 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
603 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
604 }
605
606
611 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
612 return workflowInstanceLinkPersistence;
613 }
614
615
620 public void setWorkflowInstanceLinkPersistence(
621 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
622 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
623 }
624
625
630 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
631 return assetEntryLocalService;
632 }
633
634
639 public void setAssetEntryLocalService(
640 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
641 this.assetEntryLocalService = assetEntryLocalService;
642 }
643
644
649 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
650 return assetEntryService;
651 }
652
653
658 public void setAssetEntryService(
659 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
660 this.assetEntryService = assetEntryService;
661 }
662
663
668 public AssetEntryPersistence getAssetEntryPersistence() {
669 return assetEntryPersistence;
670 }
671
672
677 public void setAssetEntryPersistence(
678 AssetEntryPersistence assetEntryPersistence) {
679 this.assetEntryPersistence = assetEntryPersistence;
680 }
681
682
687 public AssetEntryFinder getAssetEntryFinder() {
688 return assetEntryFinder;
689 }
690
691
696 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
697 this.assetEntryFinder = assetEntryFinder;
698 }
699
700
705 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
706 return assetLinkLocalService;
707 }
708
709
714 public void setAssetLinkLocalService(
715 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
716 this.assetLinkLocalService = assetLinkLocalService;
717 }
718
719
724 public AssetLinkPersistence getAssetLinkPersistence() {
725 return assetLinkPersistence;
726 }
727
728
733 public void setAssetLinkPersistence(
734 AssetLinkPersistence assetLinkPersistence) {
735 this.assetLinkPersistence = assetLinkPersistence;
736 }
737
738
743 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
744 return assetTagLocalService;
745 }
746
747
752 public void setAssetTagLocalService(
753 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
754 this.assetTagLocalService = assetTagLocalService;
755 }
756
757
762 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
763 return assetTagService;
764 }
765
766
771 public void setAssetTagService(
772 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
773 this.assetTagService = assetTagService;
774 }
775
776
781 public AssetTagPersistence getAssetTagPersistence() {
782 return assetTagPersistence;
783 }
784
785
790 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
791 this.assetTagPersistence = assetTagPersistence;
792 }
793
794
799 public AssetTagFinder getAssetTagFinder() {
800 return assetTagFinder;
801 }
802
803
808 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
809 this.assetTagFinder = assetTagFinder;
810 }
811
812
817 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
818 return blogsEntryLocalService;
819 }
820
821
826 public void setBlogsEntryLocalService(
827 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
828 this.blogsEntryLocalService = blogsEntryLocalService;
829 }
830
831
836 public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
837 return blogsEntryService;
838 }
839
840
845 public void setBlogsEntryService(
846 com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
847 this.blogsEntryService = blogsEntryService;
848 }
849
850
855 public BlogsEntryPersistence getBlogsEntryPersistence() {
856 return blogsEntryPersistence;
857 }
858
859
864 public void setBlogsEntryPersistence(
865 BlogsEntryPersistence blogsEntryPersistence) {
866 this.blogsEntryPersistence = blogsEntryPersistence;
867 }
868
869
874 public BlogsEntryFinder getBlogsEntryFinder() {
875 return blogsEntryFinder;
876 }
877
878
883 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
884 this.blogsEntryFinder = blogsEntryFinder;
885 }
886
887
892 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
893 return expandoRowLocalService;
894 }
895
896
901 public void setExpandoRowLocalService(
902 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
903 this.expandoRowLocalService = expandoRowLocalService;
904 }
905
906
911 public ExpandoRowPersistence getExpandoRowPersistence() {
912 return expandoRowPersistence;
913 }
914
915
920 public void setExpandoRowPersistence(
921 ExpandoRowPersistence expandoRowPersistence) {
922 this.expandoRowPersistence = expandoRowPersistence;
923 }
924
925
930 public com.liferay.portlet.messageboards.service.MBCategoryLocalService getMBCategoryLocalService() {
931 return mbCategoryLocalService;
932 }
933
934
939 public void setMBCategoryLocalService(
940 com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService) {
941 this.mbCategoryLocalService = mbCategoryLocalService;
942 }
943
944
949 public com.liferay.portlet.messageboards.service.MBCategoryService getMBCategoryService() {
950 return mbCategoryService;
951 }
952
953
958 public void setMBCategoryService(
959 com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService) {
960 this.mbCategoryService = mbCategoryService;
961 }
962
963
968 public MBCategoryPersistence getMBCategoryPersistence() {
969 return mbCategoryPersistence;
970 }
971
972
977 public void setMBCategoryPersistence(
978 MBCategoryPersistence mbCategoryPersistence) {
979 this.mbCategoryPersistence = mbCategoryPersistence;
980 }
981
982
987 public MBCategoryFinder getMBCategoryFinder() {
988 return mbCategoryFinder;
989 }
990
991
996 public void setMBCategoryFinder(MBCategoryFinder mbCategoryFinder) {
997 this.mbCategoryFinder = mbCategoryFinder;
998 }
999
1000
1005 public com.liferay.portlet.messageboards.service.MBDiscussionLocalService getMBDiscussionLocalService() {
1006 return mbDiscussionLocalService;
1007 }
1008
1009
1014 public void setMBDiscussionLocalService(
1015 com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService) {
1016 this.mbDiscussionLocalService = mbDiscussionLocalService;
1017 }
1018
1019
1024 public MBDiscussionPersistence getMBDiscussionPersistence() {
1025 return mbDiscussionPersistence;
1026 }
1027
1028
1033 public void setMBDiscussionPersistence(
1034 MBDiscussionPersistence mbDiscussionPersistence) {
1035 this.mbDiscussionPersistence = mbDiscussionPersistence;
1036 }
1037
1038
1043 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1044 return ratingsStatsLocalService;
1045 }
1046
1047
1052 public void setRatingsStatsLocalService(
1053 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1054 this.ratingsStatsLocalService = ratingsStatsLocalService;
1055 }
1056
1057
1062 public RatingsStatsPersistence getRatingsStatsPersistence() {
1063 return ratingsStatsPersistence;
1064 }
1065
1066
1071 public void setRatingsStatsPersistence(
1072 RatingsStatsPersistence ratingsStatsPersistence) {
1073 this.ratingsStatsPersistence = ratingsStatsPersistence;
1074 }
1075
1076
1081 public RatingsStatsFinder getRatingsStatsFinder() {
1082 return ratingsStatsFinder;
1083 }
1084
1085
1090 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1091 this.ratingsStatsFinder = ratingsStatsFinder;
1092 }
1093
1094
1099 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1100 return socialActivityLocalService;
1101 }
1102
1103
1108 public void setSocialActivityLocalService(
1109 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1110 this.socialActivityLocalService = socialActivityLocalService;
1111 }
1112
1113
1118 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1119 return socialActivityService;
1120 }
1121
1122
1127 public void setSocialActivityService(
1128 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1129 this.socialActivityService = socialActivityService;
1130 }
1131
1132
1137 public SocialActivityPersistence getSocialActivityPersistence() {
1138 return socialActivityPersistence;
1139 }
1140
1141
1146 public void setSocialActivityPersistence(
1147 SocialActivityPersistence socialActivityPersistence) {
1148 this.socialActivityPersistence = socialActivityPersistence;
1149 }
1150
1151
1156 public SocialActivityFinder getSocialActivityFinder() {
1157 return socialActivityFinder;
1158 }
1159
1160
1165 public void setSocialActivityFinder(
1166 SocialActivityFinder socialActivityFinder) {
1167 this.socialActivityFinder = socialActivityFinder;
1168 }
1169
1170
1175 public com.liferay.portlet.messageboards.service.MBStatsUserLocalService getMBStatsUserLocalService() {
1176 return mbStatsUserLocalService;
1177 }
1178
1179
1184 public void setMBStatsUserLocalService(
1185 com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService) {
1186 this.mbStatsUserLocalService = mbStatsUserLocalService;
1187 }
1188
1189
1194 public MBStatsUserPersistence getMBStatsUserPersistence() {
1195 return mbStatsUserPersistence;
1196 }
1197
1198
1203 public void setMBStatsUserPersistence(
1204 MBStatsUserPersistence mbStatsUserPersistence) {
1205 this.mbStatsUserPersistence = mbStatsUserPersistence;
1206 }
1207
1208
1213 public com.liferay.portlet.messageboards.service.MBThreadLocalService getMBThreadLocalService() {
1214 return mbThreadLocalService;
1215 }
1216
1217
1222 public void setMBThreadLocalService(
1223 com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService) {
1224 this.mbThreadLocalService = mbThreadLocalService;
1225 }
1226
1227
1232 public com.liferay.portlet.messageboards.service.MBThreadService getMBThreadService() {
1233 return mbThreadService;
1234 }
1235
1236
1241 public void setMBThreadService(
1242 com.liferay.portlet.messageboards.service.MBThreadService mbThreadService) {
1243 this.mbThreadService = mbThreadService;
1244 }
1245
1246
1251 public MBThreadPersistence getMBThreadPersistence() {
1252 return mbThreadPersistence;
1253 }
1254
1255
1260 public void setMBThreadPersistence(MBThreadPersistence mbThreadPersistence) {
1261 this.mbThreadPersistence = mbThreadPersistence;
1262 }
1263
1264
1269 public MBThreadFinder getMBThreadFinder() {
1270 return mbThreadFinder;
1271 }
1272
1273
1278 public void setMBThreadFinder(MBThreadFinder mbThreadFinder) {
1279 this.mbThreadFinder = mbThreadFinder;
1280 }
1281
1282 public void afterPropertiesSet() {
1283 }
1284
1285 public void destroy() {
1286 }
1287
1288
1293 @Override
1294 public String getBeanIdentifier() {
1295 return _beanIdentifier;
1296 }
1297
1298
1303 @Override
1304 public void setBeanIdentifier(String beanIdentifier) {
1305 _beanIdentifier = beanIdentifier;
1306 }
1307
1308 protected Class<?> getModelClass() {
1309 return MBMessage.class;
1310 }
1311
1312 protected String getModelClassName() {
1313 return MBMessage.class.getName();
1314 }
1315
1316
1321 protected void runSQL(String sql) {
1322 try {
1323 DataSource dataSource = mbMessagePersistence.getDataSource();
1324
1325 DB db = DBFactoryUtil.getDB();
1326
1327 sql = db.buildSQL(sql);
1328 sql = PortalUtil.transformSQL(sql);
1329
1330 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1331 sql, new int[0]);
1332
1333 sqlUpdate.update();
1334 }
1335 catch (Exception e) {
1336 throw new SystemException(e);
1337 }
1338 }
1339
1340 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1341 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1342 @BeanReference(type = MBMessageService.class)
1343 protected MBMessageService mbMessageService;
1344 @BeanReference(type = MBMessagePersistence.class)
1345 protected MBMessagePersistence mbMessagePersistence;
1346 @BeanReference(type = MBMessageFinder.class)
1347 protected MBMessageFinder mbMessageFinder;
1348 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1349 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1350 @BeanReference(type = com.liferay.mail.service.MailService.class)
1351 protected com.liferay.mail.service.MailService mailService;
1352 @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
1353 protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
1354 @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
1355 protected com.liferay.portal.service.ClassNameService classNameService;
1356 @BeanReference(type = ClassNamePersistence.class)
1357 protected ClassNamePersistence classNamePersistence;
1358 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1359 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1360 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1361 protected com.liferay.portal.service.CompanyService companyService;
1362 @BeanReference(type = CompanyPersistence.class)
1363 protected CompanyPersistence companyPersistence;
1364 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1365 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1366 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1367 protected com.liferay.portal.service.GroupService groupService;
1368 @BeanReference(type = GroupPersistence.class)
1369 protected GroupPersistence groupPersistence;
1370 @BeanReference(type = GroupFinder.class)
1371 protected GroupFinder groupFinder;
1372 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1373 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1374 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1375 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1376 @BeanReference(type = PortletPreferencesPersistence.class)
1377 protected PortletPreferencesPersistence portletPreferencesPersistence;
1378 @BeanReference(type = PortletPreferencesFinder.class)
1379 protected PortletPreferencesFinder portletPreferencesFinder;
1380 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1381 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1382 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1383 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1384 @BeanReference(type = SubscriptionPersistence.class)
1385 protected SubscriptionPersistence subscriptionPersistence;
1386 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1387 protected com.liferay.portal.service.UserLocalService userLocalService;
1388 @BeanReference(type = com.liferay.portal.service.UserService.class)
1389 protected com.liferay.portal.service.UserService userService;
1390 @BeanReference(type = UserPersistence.class)
1391 protected UserPersistence userPersistence;
1392 @BeanReference(type = UserFinder.class)
1393 protected UserFinder userFinder;
1394 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1395 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1396 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1397 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1398 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1399 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1400 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1401 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1402 @BeanReference(type = AssetEntryPersistence.class)
1403 protected AssetEntryPersistence assetEntryPersistence;
1404 @BeanReference(type = AssetEntryFinder.class)
1405 protected AssetEntryFinder assetEntryFinder;
1406 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1407 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1408 @BeanReference(type = AssetLinkPersistence.class)
1409 protected AssetLinkPersistence assetLinkPersistence;
1410 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1411 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1412 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1413 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1414 @BeanReference(type = AssetTagPersistence.class)
1415 protected AssetTagPersistence assetTagPersistence;
1416 @BeanReference(type = AssetTagFinder.class)
1417 protected AssetTagFinder assetTagFinder;
1418 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1419 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1420 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1421 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1422 @BeanReference(type = BlogsEntryPersistence.class)
1423 protected BlogsEntryPersistence blogsEntryPersistence;
1424 @BeanReference(type = BlogsEntryFinder.class)
1425 protected BlogsEntryFinder blogsEntryFinder;
1426 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1427 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1428 @BeanReference(type = ExpandoRowPersistence.class)
1429 protected ExpandoRowPersistence expandoRowPersistence;
1430 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryLocalService.class)
1431 protected com.liferay.portlet.messageboards.service.MBCategoryLocalService mbCategoryLocalService;
1432 @BeanReference(type = com.liferay.portlet.messageboards.service.MBCategoryService.class)
1433 protected com.liferay.portlet.messageboards.service.MBCategoryService mbCategoryService;
1434 @BeanReference(type = MBCategoryPersistence.class)
1435 protected MBCategoryPersistence mbCategoryPersistence;
1436 @BeanReference(type = MBCategoryFinder.class)
1437 protected MBCategoryFinder mbCategoryFinder;
1438 @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1439 protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1440 @BeanReference(type = MBDiscussionPersistence.class)
1441 protected MBDiscussionPersistence mbDiscussionPersistence;
1442 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1443 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1444 @BeanReference(type = RatingsStatsPersistence.class)
1445 protected RatingsStatsPersistence ratingsStatsPersistence;
1446 @BeanReference(type = RatingsStatsFinder.class)
1447 protected RatingsStatsFinder ratingsStatsFinder;
1448 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1449 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1450 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1451 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1452 @BeanReference(type = SocialActivityPersistence.class)
1453 protected SocialActivityPersistence socialActivityPersistence;
1454 @BeanReference(type = SocialActivityFinder.class)
1455 protected SocialActivityFinder socialActivityFinder;
1456 @BeanReference(type = com.liferay.portlet.messageboards.service.MBStatsUserLocalService.class)
1457 protected com.liferay.portlet.messageboards.service.MBStatsUserLocalService mbStatsUserLocalService;
1458 @BeanReference(type = MBStatsUserPersistence.class)
1459 protected MBStatsUserPersistence mbStatsUserPersistence;
1460 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadLocalService.class)
1461 protected com.liferay.portlet.messageboards.service.MBThreadLocalService mbThreadLocalService;
1462 @BeanReference(type = com.liferay.portlet.messageboards.service.MBThreadService.class)
1463 protected com.liferay.portlet.messageboards.service.MBThreadService mbThreadService;
1464 @BeanReference(type = MBThreadPersistence.class)
1465 protected MBThreadPersistence mbThreadPersistence;
1466 @BeanReference(type = MBThreadFinder.class)
1467 protected MBThreadFinder mbThreadFinder;
1468 private String _beanIdentifier;
1469 }