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.annotation.BeanReference;
020 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
022 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
023 import com.liferay.portal.kernel.exception.PortalException;
024 import com.liferay.portal.kernel.exception.SystemException;
025 import com.liferay.portal.kernel.util.OrderByComparator;
026 import com.liferay.portal.service.CompanyLocalService;
027 import com.liferay.portal.service.CompanyService;
028 import com.liferay.portal.service.GroupLocalService;
029 import com.liferay.portal.service.GroupService;
030 import com.liferay.portal.service.OrganizationLocalService;
031 import com.liferay.portal.service.OrganizationService;
032 import com.liferay.portal.service.PortletPreferencesLocalService;
033 import com.liferay.portal.service.PortletPreferencesService;
034 import com.liferay.portal.service.ResourceLocalService;
035 import com.liferay.portal.service.ResourceService;
036 import com.liferay.portal.service.UserLocalService;
037 import com.liferay.portal.service.UserService;
038 import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
039 import com.liferay.portal.service.persistence.CompanyPersistence;
040 import com.liferay.portal.service.persistence.GroupFinder;
041 import com.liferay.portal.service.persistence.GroupPersistence;
042 import com.liferay.portal.service.persistence.OrganizationFinder;
043 import com.liferay.portal.service.persistence.OrganizationPersistence;
044 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
045 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
046 import com.liferay.portal.service.persistence.ResourceFinder;
047 import com.liferay.portal.service.persistence.ResourcePersistence;
048 import com.liferay.portal.service.persistence.UserFinder;
049 import com.liferay.portal.service.persistence.UserPersistence;
050 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
051
052 import com.liferay.portlet.asset.service.AssetEntryLocalService;
053 import com.liferay.portlet.asset.service.AssetEntryService;
054 import com.liferay.portlet.asset.service.AssetTagLocalService;
055 import com.liferay.portlet.asset.service.AssetTagService;
056 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
057 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
058 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
059 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
060 import com.liferay.portlet.blogs.model.BlogsEntry;
061 import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
062 import com.liferay.portlet.blogs.service.BlogsEntryService;
063 import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
064 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
065 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
066 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
067 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
068 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
069 import com.liferay.portlet.expando.service.ExpandoValueService;
070 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
071 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
072 import com.liferay.portlet.messageboards.service.MBMessageService;
073 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
074 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
075 import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
076 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
077 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
078 import com.liferay.portlet.social.service.SocialActivityLocalService;
079 import com.liferay.portlet.social.service.SocialEquityLogLocalService;
080 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
081 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
082 import com.liferay.portlet.social.service.persistence.SocialEquityLogPersistence;
083
084 import java.util.List;
085
086 import javax.sql.DataSource;
087
088
104 public abstract class BlogsEntryLocalServiceBaseImpl
105 implements BlogsEntryLocalService {
106
113 public BlogsEntry addBlogsEntry(BlogsEntry blogsEntry)
114 throws SystemException {
115 blogsEntry.setNew(true);
116
117 return blogsEntryPersistence.update(blogsEntry, false);
118 }
119
120
126 public BlogsEntry createBlogsEntry(long entryId) {
127 return blogsEntryPersistence.create(entryId);
128 }
129
130
137 public void deleteBlogsEntry(long entryId)
138 throws PortalException, SystemException {
139 blogsEntryPersistence.remove(entryId);
140 }
141
142
148 public void deleteBlogsEntry(BlogsEntry blogsEntry)
149 throws SystemException {
150 blogsEntryPersistence.remove(blogsEntry);
151 }
152
153
160 @SuppressWarnings("rawtypes")
161 public List dynamicQuery(DynamicQuery dynamicQuery)
162 throws SystemException {
163 return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery);
164 }
165
166
179 @SuppressWarnings("rawtypes")
180 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
181 throws SystemException {
182 return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
183 end);
184 }
185
186
200 @SuppressWarnings("rawtypes")
201 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
202 OrderByComparator orderByComparator) throws SystemException {
203 return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
204 end, orderByComparator);
205 }
206
207
214 public long dynamicQueryCount(DynamicQuery dynamicQuery)
215 throws SystemException {
216 return blogsEntryPersistence.countWithDynamicQuery(dynamicQuery);
217 }
218
219
227 public BlogsEntry getBlogsEntry(long entryId)
228 throws PortalException, SystemException {
229 return blogsEntryPersistence.findByPrimaryKey(entryId);
230 }
231
232
241 public BlogsEntry getBlogsEntryByUuidAndGroupId(String uuid, long groupId)
242 throws PortalException, SystemException {
243 return blogsEntryPersistence.findByUUID_G(uuid, groupId);
244 }
245
246
258 public List<BlogsEntry> getBlogsEntries(int start, int end)
259 throws SystemException {
260 return blogsEntryPersistence.findAll(start, end);
261 }
262
263
269 public int getBlogsEntriesCount() throws SystemException {
270 return blogsEntryPersistence.countAll();
271 }
272
273
280 public BlogsEntry updateBlogsEntry(BlogsEntry blogsEntry)
281 throws SystemException {
282 blogsEntry.setNew(false);
283
284 return blogsEntryPersistence.update(blogsEntry, true);
285 }
286
287
295 public BlogsEntry updateBlogsEntry(BlogsEntry blogsEntry, boolean merge)
296 throws SystemException {
297 blogsEntry.setNew(false);
298
299 return blogsEntryPersistence.update(blogsEntry, merge);
300 }
301
302
307 public BlogsEntryLocalService getBlogsEntryLocalService() {
308 return blogsEntryLocalService;
309 }
310
311
316 public void setBlogsEntryLocalService(
317 BlogsEntryLocalService blogsEntryLocalService) {
318 this.blogsEntryLocalService = blogsEntryLocalService;
319 }
320
321
326 public BlogsEntryService getBlogsEntryService() {
327 return blogsEntryService;
328 }
329
330
335 public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
336 this.blogsEntryService = blogsEntryService;
337 }
338
339
344 public BlogsEntryPersistence getBlogsEntryPersistence() {
345 return blogsEntryPersistence;
346 }
347
348
353 public void setBlogsEntryPersistence(
354 BlogsEntryPersistence blogsEntryPersistence) {
355 this.blogsEntryPersistence = blogsEntryPersistence;
356 }
357
358
363 public BlogsEntryFinder getBlogsEntryFinder() {
364 return blogsEntryFinder;
365 }
366
367
372 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
373 this.blogsEntryFinder = blogsEntryFinder;
374 }
375
376
381 public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
382 return blogsStatsUserLocalService;
383 }
384
385
390 public void setBlogsStatsUserLocalService(
391 BlogsStatsUserLocalService blogsStatsUserLocalService) {
392 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
393 }
394
395
400 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
401 return blogsStatsUserPersistence;
402 }
403
404
409 public void setBlogsStatsUserPersistence(
410 BlogsStatsUserPersistence blogsStatsUserPersistence) {
411 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
412 }
413
414
419 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
420 return blogsStatsUserFinder;
421 }
422
423
428 public void setBlogsStatsUserFinder(
429 BlogsStatsUserFinder blogsStatsUserFinder) {
430 this.blogsStatsUserFinder = blogsStatsUserFinder;
431 }
432
433
438 public CounterLocalService getCounterLocalService() {
439 return counterLocalService;
440 }
441
442
447 public void setCounterLocalService(CounterLocalService counterLocalService) {
448 this.counterLocalService = counterLocalService;
449 }
450
451
456 public CompanyLocalService getCompanyLocalService() {
457 return companyLocalService;
458 }
459
460
465 public void setCompanyLocalService(CompanyLocalService companyLocalService) {
466 this.companyLocalService = companyLocalService;
467 }
468
469
474 public CompanyService getCompanyService() {
475 return companyService;
476 }
477
478
483 public void setCompanyService(CompanyService companyService) {
484 this.companyService = companyService;
485 }
486
487
492 public CompanyPersistence getCompanyPersistence() {
493 return companyPersistence;
494 }
495
496
501 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
502 this.companyPersistence = companyPersistence;
503 }
504
505
510 public GroupLocalService getGroupLocalService() {
511 return groupLocalService;
512 }
513
514
519 public void setGroupLocalService(GroupLocalService groupLocalService) {
520 this.groupLocalService = groupLocalService;
521 }
522
523
528 public GroupService getGroupService() {
529 return groupService;
530 }
531
532
537 public void setGroupService(GroupService groupService) {
538 this.groupService = groupService;
539 }
540
541
546 public GroupPersistence getGroupPersistence() {
547 return groupPersistence;
548 }
549
550
555 public void setGroupPersistence(GroupPersistence groupPersistence) {
556 this.groupPersistence = groupPersistence;
557 }
558
559
564 public GroupFinder getGroupFinder() {
565 return groupFinder;
566 }
567
568
573 public void setGroupFinder(GroupFinder groupFinder) {
574 this.groupFinder = groupFinder;
575 }
576
577
582 public OrganizationLocalService getOrganizationLocalService() {
583 return organizationLocalService;
584 }
585
586
591 public void setOrganizationLocalService(
592 OrganizationLocalService organizationLocalService) {
593 this.organizationLocalService = organizationLocalService;
594 }
595
596
601 public OrganizationService getOrganizationService() {
602 return organizationService;
603 }
604
605
610 public void setOrganizationService(OrganizationService organizationService) {
611 this.organizationService = organizationService;
612 }
613
614
619 public OrganizationPersistence getOrganizationPersistence() {
620 return organizationPersistence;
621 }
622
623
628 public void setOrganizationPersistence(
629 OrganizationPersistence organizationPersistence) {
630 this.organizationPersistence = organizationPersistence;
631 }
632
633
638 public OrganizationFinder getOrganizationFinder() {
639 return organizationFinder;
640 }
641
642
647 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
648 this.organizationFinder = organizationFinder;
649 }
650
651
656 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
657 return portletPreferencesLocalService;
658 }
659
660
665 public void setPortletPreferencesLocalService(
666 PortletPreferencesLocalService portletPreferencesLocalService) {
667 this.portletPreferencesLocalService = portletPreferencesLocalService;
668 }
669
670
675 public PortletPreferencesService getPortletPreferencesService() {
676 return portletPreferencesService;
677 }
678
679
684 public void setPortletPreferencesService(
685 PortletPreferencesService portletPreferencesService) {
686 this.portletPreferencesService = portletPreferencesService;
687 }
688
689
694 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
695 return portletPreferencesPersistence;
696 }
697
698
703 public void setPortletPreferencesPersistence(
704 PortletPreferencesPersistence portletPreferencesPersistence) {
705 this.portletPreferencesPersistence = portletPreferencesPersistence;
706 }
707
708
713 public PortletPreferencesFinder getPortletPreferencesFinder() {
714 return portletPreferencesFinder;
715 }
716
717
722 public void setPortletPreferencesFinder(
723 PortletPreferencesFinder portletPreferencesFinder) {
724 this.portletPreferencesFinder = portletPreferencesFinder;
725 }
726
727
732 public ResourceLocalService getResourceLocalService() {
733 return resourceLocalService;
734 }
735
736
741 public void setResourceLocalService(
742 ResourceLocalService resourceLocalService) {
743 this.resourceLocalService = resourceLocalService;
744 }
745
746
751 public ResourceService getResourceService() {
752 return resourceService;
753 }
754
755
760 public void setResourceService(ResourceService resourceService) {
761 this.resourceService = resourceService;
762 }
763
764
769 public ResourcePersistence getResourcePersistence() {
770 return resourcePersistence;
771 }
772
773
778 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
779 this.resourcePersistence = resourcePersistence;
780 }
781
782
787 public ResourceFinder getResourceFinder() {
788 return resourceFinder;
789 }
790
791
796 public void setResourceFinder(ResourceFinder resourceFinder) {
797 this.resourceFinder = resourceFinder;
798 }
799
800
805 public UserLocalService getUserLocalService() {
806 return userLocalService;
807 }
808
809
814 public void setUserLocalService(UserLocalService userLocalService) {
815 this.userLocalService = userLocalService;
816 }
817
818
823 public UserService getUserService() {
824 return userService;
825 }
826
827
832 public void setUserService(UserService userService) {
833 this.userService = userService;
834 }
835
836
841 public UserPersistence getUserPersistence() {
842 return userPersistence;
843 }
844
845
850 public void setUserPersistence(UserPersistence userPersistence) {
851 this.userPersistence = userPersistence;
852 }
853
854
859 public UserFinder getUserFinder() {
860 return userFinder;
861 }
862
863
868 public void setUserFinder(UserFinder userFinder) {
869 this.userFinder = userFinder;
870 }
871
872
877 public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
878 return workflowInstanceLinkLocalService;
879 }
880
881
886 public void setWorkflowInstanceLinkLocalService(
887 WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
888 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
889 }
890
891
896 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
897 return workflowInstanceLinkPersistence;
898 }
899
900
905 public void setWorkflowInstanceLinkPersistence(
906 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
907 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
908 }
909
910
915 public AssetEntryLocalService getAssetEntryLocalService() {
916 return assetEntryLocalService;
917 }
918
919
924 public void setAssetEntryLocalService(
925 AssetEntryLocalService assetEntryLocalService) {
926 this.assetEntryLocalService = assetEntryLocalService;
927 }
928
929
934 public AssetEntryService getAssetEntryService() {
935 return assetEntryService;
936 }
937
938
943 public void setAssetEntryService(AssetEntryService assetEntryService) {
944 this.assetEntryService = assetEntryService;
945 }
946
947
952 public AssetEntryPersistence getAssetEntryPersistence() {
953 return assetEntryPersistence;
954 }
955
956
961 public void setAssetEntryPersistence(
962 AssetEntryPersistence assetEntryPersistence) {
963 this.assetEntryPersistence = assetEntryPersistence;
964 }
965
966
971 public AssetEntryFinder getAssetEntryFinder() {
972 return assetEntryFinder;
973 }
974
975
980 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
981 this.assetEntryFinder = assetEntryFinder;
982 }
983
984
989 public AssetTagLocalService getAssetTagLocalService() {
990 return assetTagLocalService;
991 }
992
993
998 public void setAssetTagLocalService(
999 AssetTagLocalService assetTagLocalService) {
1000 this.assetTagLocalService = assetTagLocalService;
1001 }
1002
1003
1008 public AssetTagService getAssetTagService() {
1009 return assetTagService;
1010 }
1011
1012
1017 public void setAssetTagService(AssetTagService assetTagService) {
1018 this.assetTagService = assetTagService;
1019 }
1020
1021
1026 public AssetTagPersistence getAssetTagPersistence() {
1027 return assetTagPersistence;
1028 }
1029
1030
1035 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1036 this.assetTagPersistence = assetTagPersistence;
1037 }
1038
1039
1044 public AssetTagFinder getAssetTagFinder() {
1045 return assetTagFinder;
1046 }
1047
1048
1053 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1054 this.assetTagFinder = assetTagFinder;
1055 }
1056
1057
1062 public ExpandoValueLocalService getExpandoValueLocalService() {
1063 return expandoValueLocalService;
1064 }
1065
1066
1071 public void setExpandoValueLocalService(
1072 ExpandoValueLocalService expandoValueLocalService) {
1073 this.expandoValueLocalService = expandoValueLocalService;
1074 }
1075
1076
1081 public ExpandoValueService getExpandoValueService() {
1082 return expandoValueService;
1083 }
1084
1085
1090 public void setExpandoValueService(ExpandoValueService expandoValueService) {
1091 this.expandoValueService = expandoValueService;
1092 }
1093
1094
1099 public ExpandoValuePersistence getExpandoValuePersistence() {
1100 return expandoValuePersistence;
1101 }
1102
1103
1108 public void setExpandoValuePersistence(
1109 ExpandoValuePersistence expandoValuePersistence) {
1110 this.expandoValuePersistence = expandoValuePersistence;
1111 }
1112
1113
1118 public MBMessageLocalService getMBMessageLocalService() {
1119 return mbMessageLocalService;
1120 }
1121
1122
1127 public void setMBMessageLocalService(
1128 MBMessageLocalService mbMessageLocalService) {
1129 this.mbMessageLocalService = mbMessageLocalService;
1130 }
1131
1132
1137 public MBMessageService getMBMessageService() {
1138 return mbMessageService;
1139 }
1140
1141
1146 public void setMBMessageService(MBMessageService mbMessageService) {
1147 this.mbMessageService = mbMessageService;
1148 }
1149
1150
1155 public MBMessagePersistence getMBMessagePersistence() {
1156 return mbMessagePersistence;
1157 }
1158
1159
1164 public void setMBMessagePersistence(
1165 MBMessagePersistence mbMessagePersistence) {
1166 this.mbMessagePersistence = mbMessagePersistence;
1167 }
1168
1169
1174 public MBMessageFinder getMBMessageFinder() {
1175 return mbMessageFinder;
1176 }
1177
1178
1183 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1184 this.mbMessageFinder = mbMessageFinder;
1185 }
1186
1187
1192 public RatingsStatsLocalService getRatingsStatsLocalService() {
1193 return ratingsStatsLocalService;
1194 }
1195
1196
1201 public void setRatingsStatsLocalService(
1202 RatingsStatsLocalService ratingsStatsLocalService) {
1203 this.ratingsStatsLocalService = ratingsStatsLocalService;
1204 }
1205
1206
1211 public RatingsStatsPersistence getRatingsStatsPersistence() {
1212 return ratingsStatsPersistence;
1213 }
1214
1215
1220 public void setRatingsStatsPersistence(
1221 RatingsStatsPersistence ratingsStatsPersistence) {
1222 this.ratingsStatsPersistence = ratingsStatsPersistence;
1223 }
1224
1225
1230 public RatingsStatsFinder getRatingsStatsFinder() {
1231 return ratingsStatsFinder;
1232 }
1233
1234
1239 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1240 this.ratingsStatsFinder = ratingsStatsFinder;
1241 }
1242
1243
1248 public SocialActivityLocalService getSocialActivityLocalService() {
1249 return socialActivityLocalService;
1250 }
1251
1252
1257 public void setSocialActivityLocalService(
1258 SocialActivityLocalService socialActivityLocalService) {
1259 this.socialActivityLocalService = socialActivityLocalService;
1260 }
1261
1262
1267 public SocialActivityPersistence getSocialActivityPersistence() {
1268 return socialActivityPersistence;
1269 }
1270
1271
1276 public void setSocialActivityPersistence(
1277 SocialActivityPersistence socialActivityPersistence) {
1278 this.socialActivityPersistence = socialActivityPersistence;
1279 }
1280
1281
1286 public SocialActivityFinder getSocialActivityFinder() {
1287 return socialActivityFinder;
1288 }
1289
1290
1295 public void setSocialActivityFinder(
1296 SocialActivityFinder socialActivityFinder) {
1297 this.socialActivityFinder = socialActivityFinder;
1298 }
1299
1300
1305 public SocialEquityLogLocalService getSocialEquityLogLocalService() {
1306 return socialEquityLogLocalService;
1307 }
1308
1309
1314 public void setSocialEquityLogLocalService(
1315 SocialEquityLogLocalService socialEquityLogLocalService) {
1316 this.socialEquityLogLocalService = socialEquityLogLocalService;
1317 }
1318
1319
1324 public SocialEquityLogPersistence getSocialEquityLogPersistence() {
1325 return socialEquityLogPersistence;
1326 }
1327
1328
1333 public void setSocialEquityLogPersistence(
1334 SocialEquityLogPersistence socialEquityLogPersistence) {
1335 this.socialEquityLogPersistence = socialEquityLogPersistence;
1336 }
1337
1338
1343 protected void runSQL(String sql) throws SystemException {
1344 try {
1345 DataSource dataSource = blogsEntryPersistence.getDataSource();
1346
1347 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1348 sql, new int[0]);
1349
1350 sqlUpdate.update();
1351 }
1352 catch (Exception e) {
1353 throw new SystemException(e);
1354 }
1355 }
1356
1357 @BeanReference(type = BlogsEntryLocalService.class)
1358 protected BlogsEntryLocalService blogsEntryLocalService;
1359 @BeanReference(type = BlogsEntryService.class)
1360 protected BlogsEntryService blogsEntryService;
1361 @BeanReference(type = BlogsEntryPersistence.class)
1362 protected BlogsEntryPersistence blogsEntryPersistence;
1363 @BeanReference(type = BlogsEntryFinder.class)
1364 protected BlogsEntryFinder blogsEntryFinder;
1365 @BeanReference(type = BlogsStatsUserLocalService.class)
1366 protected BlogsStatsUserLocalService blogsStatsUserLocalService;
1367 @BeanReference(type = BlogsStatsUserPersistence.class)
1368 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1369 @BeanReference(type = BlogsStatsUserFinder.class)
1370 protected BlogsStatsUserFinder blogsStatsUserFinder;
1371 @BeanReference(type = CounterLocalService.class)
1372 protected CounterLocalService counterLocalService;
1373 @BeanReference(type = CompanyLocalService.class)
1374 protected CompanyLocalService companyLocalService;
1375 @BeanReference(type = CompanyService.class)
1376 protected CompanyService companyService;
1377 @BeanReference(type = CompanyPersistence.class)
1378 protected CompanyPersistence companyPersistence;
1379 @BeanReference(type = GroupLocalService.class)
1380 protected GroupLocalService groupLocalService;
1381 @BeanReference(type = GroupService.class)
1382 protected GroupService groupService;
1383 @BeanReference(type = GroupPersistence.class)
1384 protected GroupPersistence groupPersistence;
1385 @BeanReference(type = GroupFinder.class)
1386 protected GroupFinder groupFinder;
1387 @BeanReference(type = OrganizationLocalService.class)
1388 protected OrganizationLocalService organizationLocalService;
1389 @BeanReference(type = OrganizationService.class)
1390 protected OrganizationService organizationService;
1391 @BeanReference(type = OrganizationPersistence.class)
1392 protected OrganizationPersistence organizationPersistence;
1393 @BeanReference(type = OrganizationFinder.class)
1394 protected OrganizationFinder organizationFinder;
1395 @BeanReference(type = PortletPreferencesLocalService.class)
1396 protected PortletPreferencesLocalService portletPreferencesLocalService;
1397 @BeanReference(type = PortletPreferencesService.class)
1398 protected PortletPreferencesService portletPreferencesService;
1399 @BeanReference(type = PortletPreferencesPersistence.class)
1400 protected PortletPreferencesPersistence portletPreferencesPersistence;
1401 @BeanReference(type = PortletPreferencesFinder.class)
1402 protected PortletPreferencesFinder portletPreferencesFinder;
1403 @BeanReference(type = ResourceLocalService.class)
1404 protected ResourceLocalService resourceLocalService;
1405 @BeanReference(type = ResourceService.class)
1406 protected ResourceService resourceService;
1407 @BeanReference(type = ResourcePersistence.class)
1408 protected ResourcePersistence resourcePersistence;
1409 @BeanReference(type = ResourceFinder.class)
1410 protected ResourceFinder resourceFinder;
1411 @BeanReference(type = UserLocalService.class)
1412 protected UserLocalService userLocalService;
1413 @BeanReference(type = UserService.class)
1414 protected UserService userService;
1415 @BeanReference(type = UserPersistence.class)
1416 protected UserPersistence userPersistence;
1417 @BeanReference(type = UserFinder.class)
1418 protected UserFinder userFinder;
1419 @BeanReference(type = WorkflowInstanceLinkLocalService.class)
1420 protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1421 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1422 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1423 @BeanReference(type = AssetEntryLocalService.class)
1424 protected AssetEntryLocalService assetEntryLocalService;
1425 @BeanReference(type = AssetEntryService.class)
1426 protected AssetEntryService assetEntryService;
1427 @BeanReference(type = AssetEntryPersistence.class)
1428 protected AssetEntryPersistence assetEntryPersistence;
1429 @BeanReference(type = AssetEntryFinder.class)
1430 protected AssetEntryFinder assetEntryFinder;
1431 @BeanReference(type = AssetTagLocalService.class)
1432 protected AssetTagLocalService assetTagLocalService;
1433 @BeanReference(type = AssetTagService.class)
1434 protected AssetTagService assetTagService;
1435 @BeanReference(type = AssetTagPersistence.class)
1436 protected AssetTagPersistence assetTagPersistence;
1437 @BeanReference(type = AssetTagFinder.class)
1438 protected AssetTagFinder assetTagFinder;
1439 @BeanReference(type = ExpandoValueLocalService.class)
1440 protected ExpandoValueLocalService expandoValueLocalService;
1441 @BeanReference(type = ExpandoValueService.class)
1442 protected ExpandoValueService expandoValueService;
1443 @BeanReference(type = ExpandoValuePersistence.class)
1444 protected ExpandoValuePersistence expandoValuePersistence;
1445 @BeanReference(type = MBMessageLocalService.class)
1446 protected MBMessageLocalService mbMessageLocalService;
1447 @BeanReference(type = MBMessageService.class)
1448 protected MBMessageService mbMessageService;
1449 @BeanReference(type = MBMessagePersistence.class)
1450 protected MBMessagePersistence mbMessagePersistence;
1451 @BeanReference(type = MBMessageFinder.class)
1452 protected MBMessageFinder mbMessageFinder;
1453 @BeanReference(type = RatingsStatsLocalService.class)
1454 protected RatingsStatsLocalService ratingsStatsLocalService;
1455 @BeanReference(type = RatingsStatsPersistence.class)
1456 protected RatingsStatsPersistence ratingsStatsPersistence;
1457 @BeanReference(type = RatingsStatsFinder.class)
1458 protected RatingsStatsFinder ratingsStatsFinder;
1459 @BeanReference(type = SocialActivityLocalService.class)
1460 protected SocialActivityLocalService socialActivityLocalService;
1461 @BeanReference(type = SocialActivityPersistence.class)
1462 protected SocialActivityPersistence socialActivityPersistence;
1463 @BeanReference(type = SocialActivityFinder.class)
1464 protected SocialActivityFinder socialActivityFinder;
1465 @BeanReference(type = SocialEquityLogLocalService.class)
1466 protected SocialEquityLogLocalService socialEquityLogLocalService;
1467 @BeanReference(type = SocialEquityLogPersistence.class)
1468 protected SocialEquityLogPersistence socialEquityLogPersistence;
1469 }