001
014
015 package com.liferay.portlet.blogs.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.ImagePersistence;
027 import com.liferay.portal.service.persistence.OrganizationFinder;
028 import com.liferay.portal.service.persistence.OrganizationPersistence;
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
036 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
037 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
038 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
039 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
040 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
041 import com.liferay.portlet.blogs.model.BlogsEntry;
042 import com.liferay.portlet.blogs.service.BlogsEntryService;
043 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
044 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
045 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
046 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
047 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
048 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
049 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
050 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
051 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
052 import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
053 import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
054 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
055 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
056 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
057
058 import javax.sql.DataSource;
059
060
072 public abstract class BlogsEntryServiceBaseImpl extends BaseServiceImpl
073 implements BlogsEntryService, IdentifiableBean {
074
079
080
085 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
086 return blogsEntryLocalService;
087 }
088
089
094 public void setBlogsEntryLocalService(
095 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
096 this.blogsEntryLocalService = blogsEntryLocalService;
097 }
098
099
104 public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
105 return blogsEntryService;
106 }
107
108
113 public void setBlogsEntryService(
114 com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
115 this.blogsEntryService = blogsEntryService;
116 }
117
118
123 public BlogsEntryPersistence getBlogsEntryPersistence() {
124 return blogsEntryPersistence;
125 }
126
127
132 public void setBlogsEntryPersistence(
133 BlogsEntryPersistence blogsEntryPersistence) {
134 this.blogsEntryPersistence = blogsEntryPersistence;
135 }
136
137
142 public BlogsEntryFinder getBlogsEntryFinder() {
143 return blogsEntryFinder;
144 }
145
146
151 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
152 this.blogsEntryFinder = blogsEntryFinder;
153 }
154
155
160 public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
161 return blogsStatsUserLocalService;
162 }
163
164
169 public void setBlogsStatsUserLocalService(
170 com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
171 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
172 }
173
174
179 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
180 return blogsStatsUserPersistence;
181 }
182
183
188 public void setBlogsStatsUserPersistence(
189 BlogsStatsUserPersistence blogsStatsUserPersistence) {
190 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
191 }
192
193
198 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
199 return blogsStatsUserFinder;
200 }
201
202
207 public void setBlogsStatsUserFinder(
208 BlogsStatsUserFinder blogsStatsUserFinder) {
209 this.blogsStatsUserFinder = blogsStatsUserFinder;
210 }
211
212
217 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
218 return counterLocalService;
219 }
220
221
226 public void setCounterLocalService(
227 com.liferay.counter.service.CounterLocalService counterLocalService) {
228 this.counterLocalService = counterLocalService;
229 }
230
231
236 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
237 return companyLocalService;
238 }
239
240
245 public void setCompanyLocalService(
246 com.liferay.portal.service.CompanyLocalService companyLocalService) {
247 this.companyLocalService = companyLocalService;
248 }
249
250
255 public com.liferay.portal.service.CompanyService getCompanyService() {
256 return companyService;
257 }
258
259
264 public void setCompanyService(
265 com.liferay.portal.service.CompanyService companyService) {
266 this.companyService = companyService;
267 }
268
269
274 public CompanyPersistence getCompanyPersistence() {
275 return companyPersistence;
276 }
277
278
283 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
284 this.companyPersistence = companyPersistence;
285 }
286
287
292 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
293 return groupLocalService;
294 }
295
296
301 public void setGroupLocalService(
302 com.liferay.portal.service.GroupLocalService groupLocalService) {
303 this.groupLocalService = groupLocalService;
304 }
305
306
311 public com.liferay.portal.service.GroupService getGroupService() {
312 return groupService;
313 }
314
315
320 public void setGroupService(
321 com.liferay.portal.service.GroupService groupService) {
322 this.groupService = groupService;
323 }
324
325
330 public GroupPersistence getGroupPersistence() {
331 return groupPersistence;
332 }
333
334
339 public void setGroupPersistence(GroupPersistence groupPersistence) {
340 this.groupPersistence = groupPersistence;
341 }
342
343
348 public GroupFinder getGroupFinder() {
349 return groupFinder;
350 }
351
352
357 public void setGroupFinder(GroupFinder groupFinder) {
358 this.groupFinder = groupFinder;
359 }
360
361
366 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
367 return imageLocalService;
368 }
369
370
375 public void setImageLocalService(
376 com.liferay.portal.service.ImageLocalService imageLocalService) {
377 this.imageLocalService = imageLocalService;
378 }
379
380
385 public com.liferay.portal.service.ImageService getImageService() {
386 return imageService;
387 }
388
389
394 public void setImageService(
395 com.liferay.portal.service.ImageService imageService) {
396 this.imageService = imageService;
397 }
398
399
404 public ImagePersistence getImagePersistence() {
405 return imagePersistence;
406 }
407
408
413 public void setImagePersistence(ImagePersistence imagePersistence) {
414 this.imagePersistence = imagePersistence;
415 }
416
417
422 public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
423 return organizationLocalService;
424 }
425
426
431 public void setOrganizationLocalService(
432 com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
433 this.organizationLocalService = organizationLocalService;
434 }
435
436
441 public com.liferay.portal.service.OrganizationService getOrganizationService() {
442 return organizationService;
443 }
444
445
450 public void setOrganizationService(
451 com.liferay.portal.service.OrganizationService organizationService) {
452 this.organizationService = organizationService;
453 }
454
455
460 public OrganizationPersistence getOrganizationPersistence() {
461 return organizationPersistence;
462 }
463
464
469 public void setOrganizationPersistence(
470 OrganizationPersistence organizationPersistence) {
471 this.organizationPersistence = organizationPersistence;
472 }
473
474
479 public OrganizationFinder getOrganizationFinder() {
480 return organizationFinder;
481 }
482
483
488 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
489 this.organizationFinder = organizationFinder;
490 }
491
492
497 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
498 return portletPreferencesLocalService;
499 }
500
501
506 public void setPortletPreferencesLocalService(
507 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
508 this.portletPreferencesLocalService = portletPreferencesLocalService;
509 }
510
511
516 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
517 return portletPreferencesService;
518 }
519
520
525 public void setPortletPreferencesService(
526 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
527 this.portletPreferencesService = portletPreferencesService;
528 }
529
530
535 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
536 return portletPreferencesPersistence;
537 }
538
539
544 public void setPortletPreferencesPersistence(
545 PortletPreferencesPersistence portletPreferencesPersistence) {
546 this.portletPreferencesPersistence = portletPreferencesPersistence;
547 }
548
549
554 public PortletPreferencesFinder getPortletPreferencesFinder() {
555 return portletPreferencesFinder;
556 }
557
558
563 public void setPortletPreferencesFinder(
564 PortletPreferencesFinder portletPreferencesFinder) {
565 this.portletPreferencesFinder = portletPreferencesFinder;
566 }
567
568
573 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
574 return resourceLocalService;
575 }
576
577
582 public void setResourceLocalService(
583 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
584 this.resourceLocalService = resourceLocalService;
585 }
586
587
592 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
593 return subscriptionLocalService;
594 }
595
596
601 public void setSubscriptionLocalService(
602 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
603 this.subscriptionLocalService = subscriptionLocalService;
604 }
605
606
611 public SubscriptionPersistence getSubscriptionPersistence() {
612 return subscriptionPersistence;
613 }
614
615
620 public void setSubscriptionPersistence(
621 SubscriptionPersistence subscriptionPersistence) {
622 this.subscriptionPersistence = subscriptionPersistence;
623 }
624
625
630 public com.liferay.portal.service.UserLocalService getUserLocalService() {
631 return userLocalService;
632 }
633
634
639 public void setUserLocalService(
640 com.liferay.portal.service.UserLocalService userLocalService) {
641 this.userLocalService = userLocalService;
642 }
643
644
649 public com.liferay.portal.service.UserService getUserService() {
650 return userService;
651 }
652
653
658 public void setUserService(
659 com.liferay.portal.service.UserService userService) {
660 this.userService = userService;
661 }
662
663
668 public UserPersistence getUserPersistence() {
669 return userPersistence;
670 }
671
672
677 public void setUserPersistence(UserPersistence userPersistence) {
678 this.userPersistence = userPersistence;
679 }
680
681
686 public UserFinder getUserFinder() {
687 return userFinder;
688 }
689
690
695 public void setUserFinder(UserFinder userFinder) {
696 this.userFinder = userFinder;
697 }
698
699
704 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
705 return workflowInstanceLinkLocalService;
706 }
707
708
713 public void setWorkflowInstanceLinkLocalService(
714 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
715 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
716 }
717
718
723 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
724 return workflowInstanceLinkPersistence;
725 }
726
727
732 public void setWorkflowInstanceLinkPersistence(
733 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
734 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
735 }
736
737
742 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
743 return assetEntryLocalService;
744 }
745
746
751 public void setAssetEntryLocalService(
752 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
753 this.assetEntryLocalService = assetEntryLocalService;
754 }
755
756
761 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
762 return assetEntryService;
763 }
764
765
770 public void setAssetEntryService(
771 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
772 this.assetEntryService = assetEntryService;
773 }
774
775
780 public AssetEntryPersistence getAssetEntryPersistence() {
781 return assetEntryPersistence;
782 }
783
784
789 public void setAssetEntryPersistence(
790 AssetEntryPersistence assetEntryPersistence) {
791 this.assetEntryPersistence = assetEntryPersistence;
792 }
793
794
799 public AssetEntryFinder getAssetEntryFinder() {
800 return assetEntryFinder;
801 }
802
803
808 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
809 this.assetEntryFinder = assetEntryFinder;
810 }
811
812
817 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
818 return assetLinkLocalService;
819 }
820
821
826 public void setAssetLinkLocalService(
827 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
828 this.assetLinkLocalService = assetLinkLocalService;
829 }
830
831
836 public AssetLinkPersistence getAssetLinkPersistence() {
837 return assetLinkPersistence;
838 }
839
840
845 public void setAssetLinkPersistence(
846 AssetLinkPersistence assetLinkPersistence) {
847 this.assetLinkPersistence = assetLinkPersistence;
848 }
849
850
855 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
856 return assetTagLocalService;
857 }
858
859
864 public void setAssetTagLocalService(
865 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
866 this.assetTagLocalService = assetTagLocalService;
867 }
868
869
874 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
875 return assetTagService;
876 }
877
878
883 public void setAssetTagService(
884 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
885 this.assetTagService = assetTagService;
886 }
887
888
893 public AssetTagPersistence getAssetTagPersistence() {
894 return assetTagPersistence;
895 }
896
897
902 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
903 this.assetTagPersistence = assetTagPersistence;
904 }
905
906
911 public AssetTagFinder getAssetTagFinder() {
912 return assetTagFinder;
913 }
914
915
920 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
921 this.assetTagFinder = assetTagFinder;
922 }
923
924
929 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
930 return expandoRowLocalService;
931 }
932
933
938 public void setExpandoRowLocalService(
939 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
940 this.expandoRowLocalService = expandoRowLocalService;
941 }
942
943
948 public ExpandoRowPersistence getExpandoRowPersistence() {
949 return expandoRowPersistence;
950 }
951
952
957 public void setExpandoRowPersistence(
958 ExpandoRowPersistence expandoRowPersistence) {
959 this.expandoRowPersistence = expandoRowPersistence;
960 }
961
962
967 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
968 return mbMessageLocalService;
969 }
970
971
976 public void setMBMessageLocalService(
977 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
978 this.mbMessageLocalService = mbMessageLocalService;
979 }
980
981
986 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
987 return mbMessageService;
988 }
989
990
995 public void setMBMessageService(
996 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
997 this.mbMessageService = mbMessageService;
998 }
999
1000
1005 public MBMessagePersistence getMBMessagePersistence() {
1006 return mbMessagePersistence;
1007 }
1008
1009
1014 public void setMBMessagePersistence(
1015 MBMessagePersistence mbMessagePersistence) {
1016 this.mbMessagePersistence = mbMessagePersistence;
1017 }
1018
1019
1024 public MBMessageFinder getMBMessageFinder() {
1025 return mbMessageFinder;
1026 }
1027
1028
1033 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1034 this.mbMessageFinder = mbMessageFinder;
1035 }
1036
1037
1042 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1043 return ratingsStatsLocalService;
1044 }
1045
1046
1051 public void setRatingsStatsLocalService(
1052 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1053 this.ratingsStatsLocalService = ratingsStatsLocalService;
1054 }
1055
1056
1061 public RatingsStatsPersistence getRatingsStatsPersistence() {
1062 return ratingsStatsPersistence;
1063 }
1064
1065
1070 public void setRatingsStatsPersistence(
1071 RatingsStatsPersistence ratingsStatsPersistence) {
1072 this.ratingsStatsPersistence = ratingsStatsPersistence;
1073 }
1074
1075
1080 public RatingsStatsFinder getRatingsStatsFinder() {
1081 return ratingsStatsFinder;
1082 }
1083
1084
1089 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1090 this.ratingsStatsFinder = ratingsStatsFinder;
1091 }
1092
1093
1098 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1099 return socialActivityLocalService;
1100 }
1101
1102
1107 public void setSocialActivityLocalService(
1108 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1109 this.socialActivityLocalService = socialActivityLocalService;
1110 }
1111
1112
1117 public SocialActivityPersistence getSocialActivityPersistence() {
1118 return socialActivityPersistence;
1119 }
1120
1121
1126 public void setSocialActivityPersistence(
1127 SocialActivityPersistence socialActivityPersistence) {
1128 this.socialActivityPersistence = socialActivityPersistence;
1129 }
1130
1131
1136 public SocialActivityFinder getSocialActivityFinder() {
1137 return socialActivityFinder;
1138 }
1139
1140
1145 public void setSocialActivityFinder(
1146 SocialActivityFinder socialActivityFinder) {
1147 this.socialActivityFinder = socialActivityFinder;
1148 }
1149
1150
1155 public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1156 return socialActivityCounterLocalService;
1157 }
1158
1159
1164 public void setSocialActivityCounterLocalService(
1165 com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
1166 this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1167 }
1168
1169
1174 public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1175 return socialActivityCounterPersistence;
1176 }
1177
1178
1183 public void setSocialActivityCounterPersistence(
1184 SocialActivityCounterPersistence socialActivityCounterPersistence) {
1185 this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1186 }
1187
1188
1193 public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1194 return socialActivityCounterFinder;
1195 }
1196
1197
1202 public void setSocialActivityCounterFinder(
1203 SocialActivityCounterFinder socialActivityCounterFinder) {
1204 this.socialActivityCounterFinder = socialActivityCounterFinder;
1205 }
1206
1207
1212 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1213 return trashEntryLocalService;
1214 }
1215
1216
1221 public void setTrashEntryLocalService(
1222 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1223 this.trashEntryLocalService = trashEntryLocalService;
1224 }
1225
1226
1231 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1232 return trashEntryService;
1233 }
1234
1235
1240 public void setTrashEntryService(
1241 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1242 this.trashEntryService = trashEntryService;
1243 }
1244
1245
1250 public TrashEntryPersistence getTrashEntryPersistence() {
1251 return trashEntryPersistence;
1252 }
1253
1254
1259 public void setTrashEntryPersistence(
1260 TrashEntryPersistence trashEntryPersistence) {
1261 this.trashEntryPersistence = trashEntryPersistence;
1262 }
1263
1264 public void afterPropertiesSet() {
1265 }
1266
1267 public void destroy() {
1268 }
1269
1270
1275 @Override
1276 public String getBeanIdentifier() {
1277 return _beanIdentifier;
1278 }
1279
1280
1285 @Override
1286 public void setBeanIdentifier(String beanIdentifier) {
1287 _beanIdentifier = beanIdentifier;
1288 }
1289
1290 protected Class<?> getModelClass() {
1291 return BlogsEntry.class;
1292 }
1293
1294 protected String getModelClassName() {
1295 return BlogsEntry.class.getName();
1296 }
1297
1298
1303 protected void runSQL(String sql) throws SystemException {
1304 try {
1305 DataSource dataSource = blogsEntryPersistence.getDataSource();
1306
1307 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1308 sql, new int[0]);
1309
1310 sqlUpdate.update();
1311 }
1312 catch (Exception e) {
1313 throw new SystemException(e);
1314 }
1315 }
1316
1317 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1318 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1319 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1320 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1321 @BeanReference(type = BlogsEntryPersistence.class)
1322 protected BlogsEntryPersistence blogsEntryPersistence;
1323 @BeanReference(type = BlogsEntryFinder.class)
1324 protected BlogsEntryFinder blogsEntryFinder;
1325 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1326 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1327 @BeanReference(type = BlogsStatsUserPersistence.class)
1328 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1329 @BeanReference(type = BlogsStatsUserFinder.class)
1330 protected BlogsStatsUserFinder blogsStatsUserFinder;
1331 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1332 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1333 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1334 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1335 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1336 protected com.liferay.portal.service.CompanyService companyService;
1337 @BeanReference(type = CompanyPersistence.class)
1338 protected CompanyPersistence companyPersistence;
1339 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1340 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1341 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1342 protected com.liferay.portal.service.GroupService groupService;
1343 @BeanReference(type = GroupPersistence.class)
1344 protected GroupPersistence groupPersistence;
1345 @BeanReference(type = GroupFinder.class)
1346 protected GroupFinder groupFinder;
1347 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1348 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1349 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1350 protected com.liferay.portal.service.ImageService imageService;
1351 @BeanReference(type = ImagePersistence.class)
1352 protected ImagePersistence imagePersistence;
1353 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
1354 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
1355 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
1356 protected com.liferay.portal.service.OrganizationService organizationService;
1357 @BeanReference(type = OrganizationPersistence.class)
1358 protected OrganizationPersistence organizationPersistence;
1359 @BeanReference(type = OrganizationFinder.class)
1360 protected OrganizationFinder organizationFinder;
1361 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1362 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1363 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1364 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1365 @BeanReference(type = PortletPreferencesPersistence.class)
1366 protected PortletPreferencesPersistence portletPreferencesPersistence;
1367 @BeanReference(type = PortletPreferencesFinder.class)
1368 protected PortletPreferencesFinder portletPreferencesFinder;
1369 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1370 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1371 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1372 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1373 @BeanReference(type = SubscriptionPersistence.class)
1374 protected SubscriptionPersistence subscriptionPersistence;
1375 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1376 protected com.liferay.portal.service.UserLocalService userLocalService;
1377 @BeanReference(type = com.liferay.portal.service.UserService.class)
1378 protected com.liferay.portal.service.UserService userService;
1379 @BeanReference(type = UserPersistence.class)
1380 protected UserPersistence userPersistence;
1381 @BeanReference(type = UserFinder.class)
1382 protected UserFinder userFinder;
1383 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1384 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1385 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1386 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1387 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1388 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1389 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1390 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1391 @BeanReference(type = AssetEntryPersistence.class)
1392 protected AssetEntryPersistence assetEntryPersistence;
1393 @BeanReference(type = AssetEntryFinder.class)
1394 protected AssetEntryFinder assetEntryFinder;
1395 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1396 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1397 @BeanReference(type = AssetLinkPersistence.class)
1398 protected AssetLinkPersistence assetLinkPersistence;
1399 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1400 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1401 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1402 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1403 @BeanReference(type = AssetTagPersistence.class)
1404 protected AssetTagPersistence assetTagPersistence;
1405 @BeanReference(type = AssetTagFinder.class)
1406 protected AssetTagFinder assetTagFinder;
1407 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1408 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1409 @BeanReference(type = ExpandoRowPersistence.class)
1410 protected ExpandoRowPersistence expandoRowPersistence;
1411 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1412 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1413 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1414 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1415 @BeanReference(type = MBMessagePersistence.class)
1416 protected MBMessagePersistence mbMessagePersistence;
1417 @BeanReference(type = MBMessageFinder.class)
1418 protected MBMessageFinder mbMessageFinder;
1419 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1420 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1421 @BeanReference(type = RatingsStatsPersistence.class)
1422 protected RatingsStatsPersistence ratingsStatsPersistence;
1423 @BeanReference(type = RatingsStatsFinder.class)
1424 protected RatingsStatsFinder ratingsStatsFinder;
1425 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1426 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1427 @BeanReference(type = SocialActivityPersistence.class)
1428 protected SocialActivityPersistence socialActivityPersistence;
1429 @BeanReference(type = SocialActivityFinder.class)
1430 protected SocialActivityFinder socialActivityFinder;
1431 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
1432 protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
1433 @BeanReference(type = SocialActivityCounterPersistence.class)
1434 protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1435 @BeanReference(type = SocialActivityCounterFinder.class)
1436 protected SocialActivityCounterFinder socialActivityCounterFinder;
1437 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1438 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1439 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1440 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1441 @BeanReference(type = TrashEntryPersistence.class)
1442 protected TrashEntryPersistence trashEntryPersistence;
1443 private String _beanIdentifier;
1444 }