001
014
015 package com.liferay.portlet.blogs.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
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.CompanyLocalService;
026 import com.liferay.portal.service.CompanyService;
027 import com.liferay.portal.service.GroupLocalService;
028 import com.liferay.portal.service.GroupService;
029 import com.liferay.portal.service.ImageLocalService;
030 import com.liferay.portal.service.ImageService;
031 import com.liferay.portal.service.OrganizationLocalService;
032 import com.liferay.portal.service.OrganizationService;
033 import com.liferay.portal.service.PortletPreferencesLocalService;
034 import com.liferay.portal.service.PortletPreferencesService;
035 import com.liferay.portal.service.ResourceLocalService;
036 import com.liferay.portal.service.ResourceService;
037 import com.liferay.portal.service.SubscriptionLocalService;
038 import com.liferay.portal.service.UserLocalService;
039 import com.liferay.portal.service.UserService;
040 import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
041 import com.liferay.portal.service.persistence.CompanyPersistence;
042 import com.liferay.portal.service.persistence.GroupFinder;
043 import com.liferay.portal.service.persistence.GroupPersistence;
044 import com.liferay.portal.service.persistence.ImagePersistence;
045 import com.liferay.portal.service.persistence.OrganizationFinder;
046 import com.liferay.portal.service.persistence.OrganizationPersistence;
047 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
048 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
049 import com.liferay.portal.service.persistence.ResourceFinder;
050 import com.liferay.portal.service.persistence.ResourcePersistence;
051 import com.liferay.portal.service.persistence.SubscriptionPersistence;
052 import com.liferay.portal.service.persistence.UserFinder;
053 import com.liferay.portal.service.persistence.UserPersistence;
054 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
055
056 import com.liferay.portlet.asset.service.AssetEntryLocalService;
057 import com.liferay.portlet.asset.service.AssetEntryService;
058 import com.liferay.portlet.asset.service.AssetLinkLocalService;
059 import com.liferay.portlet.asset.service.AssetTagLocalService;
060 import com.liferay.portlet.asset.service.AssetTagService;
061 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
062 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
063 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
064 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
065 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
066 import com.liferay.portlet.blogs.model.BlogsEntry;
067 import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
068 import com.liferay.portlet.blogs.service.BlogsEntryService;
069 import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
070 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
071 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
072 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
073 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
074 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
075 import com.liferay.portlet.expando.service.ExpandoValueService;
076 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
077 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
078 import com.liferay.portlet.messageboards.service.MBMessageService;
079 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
080 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
081 import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
082 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
083 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
084 import com.liferay.portlet.social.service.SocialActivityLocalService;
085 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
086 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
087
088 import javax.sql.DataSource;
089
090
102 public abstract class BlogsEntryServiceBaseImpl extends BaseServiceImpl
103 implements BlogsEntryService, IdentifiableBean {
104
109
110
115 public BlogsEntryLocalService getBlogsEntryLocalService() {
116 return blogsEntryLocalService;
117 }
118
119
124 public void setBlogsEntryLocalService(
125 BlogsEntryLocalService blogsEntryLocalService) {
126 this.blogsEntryLocalService = blogsEntryLocalService;
127 }
128
129
134 public BlogsEntryService getBlogsEntryService() {
135 return blogsEntryService;
136 }
137
138
143 public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
144 this.blogsEntryService = blogsEntryService;
145 }
146
147
152 public BlogsEntryPersistence getBlogsEntryPersistence() {
153 return blogsEntryPersistence;
154 }
155
156
161 public void setBlogsEntryPersistence(
162 BlogsEntryPersistence blogsEntryPersistence) {
163 this.blogsEntryPersistence = blogsEntryPersistence;
164 }
165
166
171 public BlogsEntryFinder getBlogsEntryFinder() {
172 return blogsEntryFinder;
173 }
174
175
180 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
181 this.blogsEntryFinder = blogsEntryFinder;
182 }
183
184
189 public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
190 return blogsStatsUserLocalService;
191 }
192
193
198 public void setBlogsStatsUserLocalService(
199 BlogsStatsUserLocalService blogsStatsUserLocalService) {
200 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
201 }
202
203
208 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
209 return blogsStatsUserPersistence;
210 }
211
212
217 public void setBlogsStatsUserPersistence(
218 BlogsStatsUserPersistence blogsStatsUserPersistence) {
219 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
220 }
221
222
227 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
228 return blogsStatsUserFinder;
229 }
230
231
236 public void setBlogsStatsUserFinder(
237 BlogsStatsUserFinder blogsStatsUserFinder) {
238 this.blogsStatsUserFinder = blogsStatsUserFinder;
239 }
240
241
246 public CounterLocalService getCounterLocalService() {
247 return counterLocalService;
248 }
249
250
255 public void setCounterLocalService(CounterLocalService counterLocalService) {
256 this.counterLocalService = counterLocalService;
257 }
258
259
264 public CompanyLocalService getCompanyLocalService() {
265 return companyLocalService;
266 }
267
268
273 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
274 this.companyLocalService = companyLocalService;
275 }
276
277
282 public CompanyService getCompanyService() {
283 return companyService;
284 }
285
286
291 public void setCompanyService(CompanyService companyService) {
292 this.companyService = companyService;
293 }
294
295
300 public CompanyPersistence getCompanyPersistence() {
301 return companyPersistence;
302 }
303
304
309 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
310 this.companyPersistence = companyPersistence;
311 }
312
313
318 public GroupLocalService getGroupLocalService() {
319 return groupLocalService;
320 }
321
322
327 public void setGroupLocalService(GroupLocalService groupLocalService) {
328 this.groupLocalService = groupLocalService;
329 }
330
331
336 public GroupService getGroupService() {
337 return groupService;
338 }
339
340
345 public void setGroupService(GroupService groupService) {
346 this.groupService = groupService;
347 }
348
349
354 public GroupPersistence getGroupPersistence() {
355 return groupPersistence;
356 }
357
358
363 public void setGroupPersistence(GroupPersistence groupPersistence) {
364 this.groupPersistence = groupPersistence;
365 }
366
367
372 public GroupFinder getGroupFinder() {
373 return groupFinder;
374 }
375
376
381 public void setGroupFinder(GroupFinder groupFinder) {
382 this.groupFinder = groupFinder;
383 }
384
385
390 public ImageLocalService getImageLocalService() {
391 return imageLocalService;
392 }
393
394
399 public void setImageLocalService(ImageLocalService imageLocalService) {
400 this.imageLocalService = imageLocalService;
401 }
402
403
408 public ImageService getImageService() {
409 return imageService;
410 }
411
412
417 public void setImageService(ImageService imageService) {
418 this.imageService = imageService;
419 }
420
421
426 public ImagePersistence getImagePersistence() {
427 return imagePersistence;
428 }
429
430
435 public void setImagePersistence(ImagePersistence imagePersistence) {
436 this.imagePersistence = imagePersistence;
437 }
438
439
444 public OrganizationLocalService getOrganizationLocalService() {
445 return organizationLocalService;
446 }
447
448
453 public void setOrganizationLocalService(
454 OrganizationLocalService organizationLocalService) {
455 this.organizationLocalService = organizationLocalService;
456 }
457
458
463 public OrganizationService getOrganizationService() {
464 return organizationService;
465 }
466
467
472 public void setOrganizationService(OrganizationService organizationService) {
473 this.organizationService = organizationService;
474 }
475
476
481 public OrganizationPersistence getOrganizationPersistence() {
482 return organizationPersistence;
483 }
484
485
490 public void setOrganizationPersistence(
491 OrganizationPersistence organizationPersistence) {
492 this.organizationPersistence = organizationPersistence;
493 }
494
495
500 public OrganizationFinder getOrganizationFinder() {
501 return organizationFinder;
502 }
503
504
509 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
510 this.organizationFinder = organizationFinder;
511 }
512
513
518 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
519 return portletPreferencesLocalService;
520 }
521
522
527 public void setPortletPreferencesLocalService(
528 PortletPreferencesLocalService portletPreferencesLocalService) {
529 this.portletPreferencesLocalService = portletPreferencesLocalService;
530 }
531
532
537 public PortletPreferencesService getPortletPreferencesService() {
538 return portletPreferencesService;
539 }
540
541
546 public void setPortletPreferencesService(
547 PortletPreferencesService portletPreferencesService) {
548 this.portletPreferencesService = portletPreferencesService;
549 }
550
551
556 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
557 return portletPreferencesPersistence;
558 }
559
560
565 public void setPortletPreferencesPersistence(
566 PortletPreferencesPersistence portletPreferencesPersistence) {
567 this.portletPreferencesPersistence = portletPreferencesPersistence;
568 }
569
570
575 public PortletPreferencesFinder getPortletPreferencesFinder() {
576 return portletPreferencesFinder;
577 }
578
579
584 public void setPortletPreferencesFinder(
585 PortletPreferencesFinder portletPreferencesFinder) {
586 this.portletPreferencesFinder = portletPreferencesFinder;
587 }
588
589
594 public ResourceLocalService getResourceLocalService() {
595 return resourceLocalService;
596 }
597
598
603 public void setResourceLocalService(
604 ResourceLocalService resourceLocalService) {
605 this.resourceLocalService = resourceLocalService;
606 }
607
608
613 public ResourceService getResourceService() {
614 return resourceService;
615 }
616
617
622 public void setResourceService(ResourceService resourceService) {
623 this.resourceService = resourceService;
624 }
625
626
631 public ResourcePersistence getResourcePersistence() {
632 return resourcePersistence;
633 }
634
635
640 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
641 this.resourcePersistence = resourcePersistence;
642 }
643
644
649 public ResourceFinder getResourceFinder() {
650 return resourceFinder;
651 }
652
653
658 public void setResourceFinder(ResourceFinder resourceFinder) {
659 this.resourceFinder = resourceFinder;
660 }
661
662
667 public SubscriptionLocalService getSubscriptionLocalService() {
668 return subscriptionLocalService;
669 }
670
671
676 public void setSubscriptionLocalService(
677 SubscriptionLocalService subscriptionLocalService) {
678 this.subscriptionLocalService = subscriptionLocalService;
679 }
680
681
686 public SubscriptionPersistence getSubscriptionPersistence() {
687 return subscriptionPersistence;
688 }
689
690
695 public void setSubscriptionPersistence(
696 SubscriptionPersistence subscriptionPersistence) {
697 this.subscriptionPersistence = subscriptionPersistence;
698 }
699
700
705 public UserLocalService getUserLocalService() {
706 return userLocalService;
707 }
708
709
714 public void setUserLocalService(UserLocalService userLocalService) {
715 this.userLocalService = userLocalService;
716 }
717
718
723 public UserService getUserService() {
724 return userService;
725 }
726
727
732 public void setUserService(UserService userService) {
733 this.userService = userService;
734 }
735
736
741 public UserPersistence getUserPersistence() {
742 return userPersistence;
743 }
744
745
750 public void setUserPersistence(UserPersistence userPersistence) {
751 this.userPersistence = userPersistence;
752 }
753
754
759 public UserFinder getUserFinder() {
760 return userFinder;
761 }
762
763
768 public void setUserFinder(UserFinder userFinder) {
769 this.userFinder = userFinder;
770 }
771
772
777 public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
778 return workflowInstanceLinkLocalService;
779 }
780
781
786 public void setWorkflowInstanceLinkLocalService(
787 WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
788 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
789 }
790
791
796 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
797 return workflowInstanceLinkPersistence;
798 }
799
800
805 public void setWorkflowInstanceLinkPersistence(
806 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
807 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
808 }
809
810
815 public AssetEntryLocalService getAssetEntryLocalService() {
816 return assetEntryLocalService;
817 }
818
819
824 public void setAssetEntryLocalService(
825 AssetEntryLocalService assetEntryLocalService) {
826 this.assetEntryLocalService = assetEntryLocalService;
827 }
828
829
834 public AssetEntryService getAssetEntryService() {
835 return assetEntryService;
836 }
837
838
843 public void setAssetEntryService(AssetEntryService assetEntryService) {
844 this.assetEntryService = assetEntryService;
845 }
846
847
852 public AssetEntryPersistence getAssetEntryPersistence() {
853 return assetEntryPersistence;
854 }
855
856
861 public void setAssetEntryPersistence(
862 AssetEntryPersistence assetEntryPersistence) {
863 this.assetEntryPersistence = assetEntryPersistence;
864 }
865
866
871 public AssetEntryFinder getAssetEntryFinder() {
872 return assetEntryFinder;
873 }
874
875
880 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
881 this.assetEntryFinder = assetEntryFinder;
882 }
883
884
889 public AssetLinkLocalService getAssetLinkLocalService() {
890 return assetLinkLocalService;
891 }
892
893
898 public void setAssetLinkLocalService(
899 AssetLinkLocalService assetLinkLocalService) {
900 this.assetLinkLocalService = assetLinkLocalService;
901 }
902
903
908 public AssetLinkPersistence getAssetLinkPersistence() {
909 return assetLinkPersistence;
910 }
911
912
917 public void setAssetLinkPersistence(
918 AssetLinkPersistence assetLinkPersistence) {
919 this.assetLinkPersistence = assetLinkPersistence;
920 }
921
922
927 public AssetTagLocalService getAssetTagLocalService() {
928 return assetTagLocalService;
929 }
930
931
936 public void setAssetTagLocalService(
937 AssetTagLocalService assetTagLocalService) {
938 this.assetTagLocalService = assetTagLocalService;
939 }
940
941
946 public AssetTagService getAssetTagService() {
947 return assetTagService;
948 }
949
950
955 public void setAssetTagService(AssetTagService assetTagService) {
956 this.assetTagService = assetTagService;
957 }
958
959
964 public AssetTagPersistence getAssetTagPersistence() {
965 return assetTagPersistence;
966 }
967
968
973 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
974 this.assetTagPersistence = assetTagPersistence;
975 }
976
977
982 public AssetTagFinder getAssetTagFinder() {
983 return assetTagFinder;
984 }
985
986
991 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
992 this.assetTagFinder = assetTagFinder;
993 }
994
995
1000 public ExpandoValueLocalService getExpandoValueLocalService() {
1001 return expandoValueLocalService;
1002 }
1003
1004
1009 public void setExpandoValueLocalService(
1010 ExpandoValueLocalService expandoValueLocalService) {
1011 this.expandoValueLocalService = expandoValueLocalService;
1012 }
1013
1014
1019 public ExpandoValueService getExpandoValueService() {
1020 return expandoValueService;
1021 }
1022
1023
1028 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1029 this.expandoValueService = expandoValueService;
1030 }
1031
1032
1037 public ExpandoValuePersistence getExpandoValuePersistence() {
1038 return expandoValuePersistence;
1039 }
1040
1041
1046 public void setExpandoValuePersistence(
1047 ExpandoValuePersistence expandoValuePersistence) {
1048 this.expandoValuePersistence = expandoValuePersistence;
1049 }
1050
1051
1056 public MBMessageLocalService getMBMessageLocalService() {
1057 return mbMessageLocalService;
1058 }
1059
1060
1065 public void setMBMessageLocalService(
1066 MBMessageLocalService mbMessageLocalService) {
1067 this.mbMessageLocalService = mbMessageLocalService;
1068 }
1069
1070
1075 public MBMessageService getMBMessageService() {
1076 return mbMessageService;
1077 }
1078
1079
1084 public void setMBMessageService(MBMessageService mbMessageService) {
1085 this.mbMessageService = mbMessageService;
1086 }
1087
1088
1093 public MBMessagePersistence getMBMessagePersistence() {
1094 return mbMessagePersistence;
1095 }
1096
1097
1102 public void setMBMessagePersistence(
1103 MBMessagePersistence mbMessagePersistence) {
1104 this.mbMessagePersistence = mbMessagePersistence;
1105 }
1106
1107
1112 public MBMessageFinder getMBMessageFinder() {
1113 return mbMessageFinder;
1114 }
1115
1116
1121 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1122 this.mbMessageFinder = mbMessageFinder;
1123 }
1124
1125
1130 public RatingsStatsLocalService getRatingsStatsLocalService() {
1131 return ratingsStatsLocalService;
1132 }
1133
1134
1139 public void setRatingsStatsLocalService(
1140 RatingsStatsLocalService ratingsStatsLocalService) {
1141 this.ratingsStatsLocalService = ratingsStatsLocalService;
1142 }
1143
1144
1149 public RatingsStatsPersistence getRatingsStatsPersistence() {
1150 return ratingsStatsPersistence;
1151 }
1152
1153
1158 public void setRatingsStatsPersistence(
1159 RatingsStatsPersistence ratingsStatsPersistence) {
1160 this.ratingsStatsPersistence = ratingsStatsPersistence;
1161 }
1162
1163
1168 public RatingsStatsFinder getRatingsStatsFinder() {
1169 return ratingsStatsFinder;
1170 }
1171
1172
1177 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1178 this.ratingsStatsFinder = ratingsStatsFinder;
1179 }
1180
1181
1186 public SocialActivityLocalService getSocialActivityLocalService() {
1187 return socialActivityLocalService;
1188 }
1189
1190
1195 public void setSocialActivityLocalService(
1196 SocialActivityLocalService socialActivityLocalService) {
1197 this.socialActivityLocalService = socialActivityLocalService;
1198 }
1199
1200
1205 public SocialActivityPersistence getSocialActivityPersistence() {
1206 return socialActivityPersistence;
1207 }
1208
1209
1214 public void setSocialActivityPersistence(
1215 SocialActivityPersistence socialActivityPersistence) {
1216 this.socialActivityPersistence = socialActivityPersistence;
1217 }
1218
1219
1224 public SocialActivityFinder getSocialActivityFinder() {
1225 return socialActivityFinder;
1226 }
1227
1228
1233 public void setSocialActivityFinder(
1234 SocialActivityFinder socialActivityFinder) {
1235 this.socialActivityFinder = socialActivityFinder;
1236 }
1237
1238 public void afterPropertiesSet() {
1239 }
1240
1241 public void destroy() {
1242 }
1243
1244
1249 public String getBeanIdentifier() {
1250 return _beanIdentifier;
1251 }
1252
1253
1258 public void setBeanIdentifier(String beanIdentifier) {
1259 _beanIdentifier = beanIdentifier;
1260 }
1261
1262 protected Class<?> getModelClass() {
1263 return BlogsEntry.class;
1264 }
1265
1266 protected String getModelClassName() {
1267 return BlogsEntry.class.getName();
1268 }
1269
1270
1275 protected void runSQL(String sql) throws SystemException {
1276 try {
1277 DataSource dataSource = blogsEntryPersistence.getDataSource();
1278
1279 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1280 sql, new int[0]);
1281
1282 sqlUpdate.update();
1283 }
1284 catch (Exception e) {
1285 throw new SystemException(e);
1286 }
1287 }
1288
1289 @BeanReference(type = BlogsEntryLocalService.class)
1290 protected BlogsEntryLocalService blogsEntryLocalService;
1291 @BeanReference(type = BlogsEntryService.class)
1292 protected BlogsEntryService blogsEntryService;
1293 @BeanReference(type = BlogsEntryPersistence.class)
1294 protected BlogsEntryPersistence blogsEntryPersistence;
1295 @BeanReference(type = BlogsEntryFinder.class)
1296 protected BlogsEntryFinder blogsEntryFinder;
1297 @BeanReference(type = BlogsStatsUserLocalService.class)
1298 protected BlogsStatsUserLocalService blogsStatsUserLocalService;
1299 @BeanReference(type = BlogsStatsUserPersistence.class)
1300 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1301 @BeanReference(type = BlogsStatsUserFinder.class)
1302 protected BlogsStatsUserFinder blogsStatsUserFinder;
1303 @BeanReference(type = CounterLocalService.class)
1304 protected CounterLocalService counterLocalService;
1305 @BeanReference(type = CompanyLocalService.class)
1306 protected CompanyLocalService companyLocalService;
1307 @BeanReference(type = CompanyService.class)
1308 protected CompanyService companyService;
1309 @BeanReference(type = CompanyPersistence.class)
1310 protected CompanyPersistence companyPersistence;
1311 @BeanReference(type = GroupLocalService.class)
1312 protected GroupLocalService groupLocalService;
1313 @BeanReference(type = GroupService.class)
1314 protected GroupService groupService;
1315 @BeanReference(type = GroupPersistence.class)
1316 protected GroupPersistence groupPersistence;
1317 @BeanReference(type = GroupFinder.class)
1318 protected GroupFinder groupFinder;
1319 @BeanReference(type = ImageLocalService.class)
1320 protected ImageLocalService imageLocalService;
1321 @BeanReference(type = ImageService.class)
1322 protected ImageService imageService;
1323 @BeanReference(type = ImagePersistence.class)
1324 protected ImagePersistence imagePersistence;
1325 @BeanReference(type = OrganizationLocalService.class)
1326 protected OrganizationLocalService organizationLocalService;
1327 @BeanReference(type = OrganizationService.class)
1328 protected OrganizationService organizationService;
1329 @BeanReference(type = OrganizationPersistence.class)
1330 protected OrganizationPersistence organizationPersistence;
1331 @BeanReference(type = OrganizationFinder.class)
1332 protected OrganizationFinder organizationFinder;
1333 @BeanReference(type = PortletPreferencesLocalService.class)
1334 protected PortletPreferencesLocalService portletPreferencesLocalService;
1335 @BeanReference(type = PortletPreferencesService.class)
1336 protected PortletPreferencesService portletPreferencesService;
1337 @BeanReference(type = PortletPreferencesPersistence.class)
1338 protected PortletPreferencesPersistence portletPreferencesPersistence;
1339 @BeanReference(type = PortletPreferencesFinder.class)
1340 protected PortletPreferencesFinder portletPreferencesFinder;
1341 @BeanReference(type = ResourceLocalService.class)
1342 protected ResourceLocalService resourceLocalService;
1343 @BeanReference(type = ResourceService.class)
1344 protected ResourceService resourceService;
1345 @BeanReference(type = ResourcePersistence.class)
1346 protected ResourcePersistence resourcePersistence;
1347 @BeanReference(type = ResourceFinder.class)
1348 protected ResourceFinder resourceFinder;
1349 @BeanReference(type = SubscriptionLocalService.class)
1350 protected SubscriptionLocalService subscriptionLocalService;
1351 @BeanReference(type = SubscriptionPersistence.class)
1352 protected SubscriptionPersistence subscriptionPersistence;
1353 @BeanReference(type = UserLocalService.class)
1354 protected UserLocalService userLocalService;
1355 @BeanReference(type = UserService.class)
1356 protected UserService userService;
1357 @BeanReference(type = UserPersistence.class)
1358 protected UserPersistence userPersistence;
1359 @BeanReference(type = UserFinder.class)
1360 protected UserFinder userFinder;
1361 @BeanReference(type = WorkflowInstanceLinkLocalService.class)
1362 protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1363 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1364 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1365 @BeanReference(type = AssetEntryLocalService.class)
1366 protected AssetEntryLocalService assetEntryLocalService;
1367 @BeanReference(type = AssetEntryService.class)
1368 protected AssetEntryService assetEntryService;
1369 @BeanReference(type = AssetEntryPersistence.class)
1370 protected AssetEntryPersistence assetEntryPersistence;
1371 @BeanReference(type = AssetEntryFinder.class)
1372 protected AssetEntryFinder assetEntryFinder;
1373 @BeanReference(type = AssetLinkLocalService.class)
1374 protected AssetLinkLocalService assetLinkLocalService;
1375 @BeanReference(type = AssetLinkPersistence.class)
1376 protected AssetLinkPersistence assetLinkPersistence;
1377 @BeanReference(type = AssetTagLocalService.class)
1378 protected AssetTagLocalService assetTagLocalService;
1379 @BeanReference(type = AssetTagService.class)
1380 protected AssetTagService assetTagService;
1381 @BeanReference(type = AssetTagPersistence.class)
1382 protected AssetTagPersistence assetTagPersistence;
1383 @BeanReference(type = AssetTagFinder.class)
1384 protected AssetTagFinder assetTagFinder;
1385 @BeanReference(type = ExpandoValueLocalService.class)
1386 protected ExpandoValueLocalService expandoValueLocalService;
1387 @BeanReference(type = ExpandoValueService.class)
1388 protected ExpandoValueService expandoValueService;
1389 @BeanReference(type = ExpandoValuePersistence.class)
1390 protected ExpandoValuePersistence expandoValuePersistence;
1391 @BeanReference(type = MBMessageLocalService.class)
1392 protected MBMessageLocalService mbMessageLocalService;
1393 @BeanReference(type = MBMessageService.class)
1394 protected MBMessageService mbMessageService;
1395 @BeanReference(type = MBMessagePersistence.class)
1396 protected MBMessagePersistence mbMessagePersistence;
1397 @BeanReference(type = MBMessageFinder.class)
1398 protected MBMessageFinder mbMessageFinder;
1399 @BeanReference(type = RatingsStatsLocalService.class)
1400 protected RatingsStatsLocalService ratingsStatsLocalService;
1401 @BeanReference(type = RatingsStatsPersistence.class)
1402 protected RatingsStatsPersistence ratingsStatsPersistence;
1403 @BeanReference(type = RatingsStatsFinder.class)
1404 protected RatingsStatsFinder ratingsStatsFinder;
1405 @BeanReference(type = SocialActivityLocalService.class)
1406 protected SocialActivityLocalService socialActivityLocalService;
1407 @BeanReference(type = SocialActivityPersistence.class)
1408 protected SocialActivityPersistence socialActivityPersistence;
1409 @BeanReference(type = SocialActivityFinder.class)
1410 protected SocialActivityFinder socialActivityFinder;
1411 private String _beanIdentifier;
1412 }