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.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.CompanyPersistence;
026 import com.liferay.portal.service.persistence.GroupFinder;
027 import com.liferay.portal.service.persistence.GroupPersistence;
028 import com.liferay.portal.service.persistence.ImagePersistence;
029 import com.liferay.portal.service.persistence.OrganizationFinder;
030 import com.liferay.portal.service.persistence.OrganizationPersistence;
031 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
032 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
033 import com.liferay.portal.service.persistence.SubscriptionPersistence;
034 import com.liferay.portal.service.persistence.UserFinder;
035 import com.liferay.portal.service.persistence.UserPersistence;
036 import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
037 import com.liferay.portal.util.PortalUtil;
038
039 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
040 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
041 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
042 import com.liferay.portlet.blogs.model.BlogsEntry;
043 import com.liferay.portlet.blogs.service.BlogsEntryService;
044 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
045 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
046 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
047 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
048 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
049 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
050 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
051 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
052 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
053 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
054
055 import javax.sql.DataSource;
056
057
069 public abstract class BlogsEntryServiceBaseImpl extends BaseServiceImpl
070 implements BlogsEntryService, IdentifiableBean {
071
076
077
082 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
083 return blogsEntryLocalService;
084 }
085
086
091 public void setBlogsEntryLocalService(
092 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
093 this.blogsEntryLocalService = blogsEntryLocalService;
094 }
095
096
101 public BlogsEntryService getBlogsEntryService() {
102 return blogsEntryService;
103 }
104
105
110 public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
111 this.blogsEntryService = blogsEntryService;
112 }
113
114
119 public BlogsEntryPersistence getBlogsEntryPersistence() {
120 return blogsEntryPersistence;
121 }
122
123
128 public void setBlogsEntryPersistence(
129 BlogsEntryPersistence blogsEntryPersistence) {
130 this.blogsEntryPersistence = blogsEntryPersistence;
131 }
132
133
138 public BlogsEntryFinder getBlogsEntryFinder() {
139 return blogsEntryFinder;
140 }
141
142
147 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
148 this.blogsEntryFinder = blogsEntryFinder;
149 }
150
151
156 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
157 return counterLocalService;
158 }
159
160
165 public void setCounterLocalService(
166 com.liferay.counter.service.CounterLocalService counterLocalService) {
167 this.counterLocalService = counterLocalService;
168 }
169
170
175 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
176 return companyLocalService;
177 }
178
179
184 public void setCompanyLocalService(
185 com.liferay.portal.service.CompanyLocalService companyLocalService) {
186 this.companyLocalService = companyLocalService;
187 }
188
189
194 public com.liferay.portal.service.CompanyService getCompanyService() {
195 return companyService;
196 }
197
198
203 public void setCompanyService(
204 com.liferay.portal.service.CompanyService companyService) {
205 this.companyService = companyService;
206 }
207
208
213 public CompanyPersistence getCompanyPersistence() {
214 return companyPersistence;
215 }
216
217
222 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
223 this.companyPersistence = companyPersistence;
224 }
225
226
231 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
232 return groupLocalService;
233 }
234
235
240 public void setGroupLocalService(
241 com.liferay.portal.service.GroupLocalService groupLocalService) {
242 this.groupLocalService = groupLocalService;
243 }
244
245
250 public com.liferay.portal.service.GroupService getGroupService() {
251 return groupService;
252 }
253
254
259 public void setGroupService(
260 com.liferay.portal.service.GroupService groupService) {
261 this.groupService = groupService;
262 }
263
264
269 public GroupPersistence getGroupPersistence() {
270 return groupPersistence;
271 }
272
273
278 public void setGroupPersistence(GroupPersistence groupPersistence) {
279 this.groupPersistence = groupPersistence;
280 }
281
282
287 public GroupFinder getGroupFinder() {
288 return groupFinder;
289 }
290
291
296 public void setGroupFinder(GroupFinder groupFinder) {
297 this.groupFinder = groupFinder;
298 }
299
300
305 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
306 return imageLocalService;
307 }
308
309
314 public void setImageLocalService(
315 com.liferay.portal.service.ImageLocalService imageLocalService) {
316 this.imageLocalService = imageLocalService;
317 }
318
319
324 public com.liferay.portal.service.ImageService getImageService() {
325 return imageService;
326 }
327
328
333 public void setImageService(
334 com.liferay.portal.service.ImageService imageService) {
335 this.imageService = imageService;
336 }
337
338
343 public ImagePersistence getImagePersistence() {
344 return imagePersistence;
345 }
346
347
352 public void setImagePersistence(ImagePersistence imagePersistence) {
353 this.imagePersistence = imagePersistence;
354 }
355
356
361 public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
362 return organizationLocalService;
363 }
364
365
370 public void setOrganizationLocalService(
371 com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
372 this.organizationLocalService = organizationLocalService;
373 }
374
375
380 public com.liferay.portal.service.OrganizationService getOrganizationService() {
381 return organizationService;
382 }
383
384
389 public void setOrganizationService(
390 com.liferay.portal.service.OrganizationService organizationService) {
391 this.organizationService = organizationService;
392 }
393
394
399 public OrganizationPersistence getOrganizationPersistence() {
400 return organizationPersistence;
401 }
402
403
408 public void setOrganizationPersistence(
409 OrganizationPersistence organizationPersistence) {
410 this.organizationPersistence = organizationPersistence;
411 }
412
413
418 public OrganizationFinder getOrganizationFinder() {
419 return organizationFinder;
420 }
421
422
427 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
428 this.organizationFinder = organizationFinder;
429 }
430
431
436 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
437 return portletPreferencesLocalService;
438 }
439
440
445 public void setPortletPreferencesLocalService(
446 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
447 this.portletPreferencesLocalService = portletPreferencesLocalService;
448 }
449
450
455 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
456 return portletPreferencesService;
457 }
458
459
464 public void setPortletPreferencesService(
465 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
466 this.portletPreferencesService = portletPreferencesService;
467 }
468
469
474 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
475 return portletPreferencesPersistence;
476 }
477
478
483 public void setPortletPreferencesPersistence(
484 PortletPreferencesPersistence portletPreferencesPersistence) {
485 this.portletPreferencesPersistence = portletPreferencesPersistence;
486 }
487
488
493 public PortletPreferencesFinder getPortletPreferencesFinder() {
494 return portletPreferencesFinder;
495 }
496
497
502 public void setPortletPreferencesFinder(
503 PortletPreferencesFinder portletPreferencesFinder) {
504 this.portletPreferencesFinder = portletPreferencesFinder;
505 }
506
507
512 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
513 return resourceLocalService;
514 }
515
516
521 public void setResourceLocalService(
522 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
523 this.resourceLocalService = resourceLocalService;
524 }
525
526
531 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
532 return subscriptionLocalService;
533 }
534
535
540 public void setSubscriptionLocalService(
541 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
542 this.subscriptionLocalService = subscriptionLocalService;
543 }
544
545
550 public SubscriptionPersistence getSubscriptionPersistence() {
551 return subscriptionPersistence;
552 }
553
554
559 public void setSubscriptionPersistence(
560 SubscriptionPersistence subscriptionPersistence) {
561 this.subscriptionPersistence = subscriptionPersistence;
562 }
563
564
569 public com.liferay.portal.service.UserLocalService getUserLocalService() {
570 return userLocalService;
571 }
572
573
578 public void setUserLocalService(
579 com.liferay.portal.service.UserLocalService userLocalService) {
580 this.userLocalService = userLocalService;
581 }
582
583
588 public com.liferay.portal.service.UserService getUserService() {
589 return userService;
590 }
591
592
597 public void setUserService(
598 com.liferay.portal.service.UserService userService) {
599 this.userService = userService;
600 }
601
602
607 public UserPersistence getUserPersistence() {
608 return userPersistence;
609 }
610
611
616 public void setUserPersistence(UserPersistence userPersistence) {
617 this.userPersistence = userPersistence;
618 }
619
620
625 public UserFinder getUserFinder() {
626 return userFinder;
627 }
628
629
634 public void setUserFinder(UserFinder userFinder) {
635 this.userFinder = userFinder;
636 }
637
638
643 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
644 return workflowInstanceLinkLocalService;
645 }
646
647
652 public void setWorkflowInstanceLinkLocalService(
653 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
654 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
655 }
656
657
662 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
663 return workflowInstanceLinkPersistence;
664 }
665
666
671 public void setWorkflowInstanceLinkPersistence(
672 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
673 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
674 }
675
676
681 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
682 return assetEntryLocalService;
683 }
684
685
690 public void setAssetEntryLocalService(
691 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
692 this.assetEntryLocalService = assetEntryLocalService;
693 }
694
695
700 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
701 return assetEntryService;
702 }
703
704
709 public void setAssetEntryService(
710 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
711 this.assetEntryService = assetEntryService;
712 }
713
714
719 public AssetEntryPersistence getAssetEntryPersistence() {
720 return assetEntryPersistence;
721 }
722
723
728 public void setAssetEntryPersistence(
729 AssetEntryPersistence assetEntryPersistence) {
730 this.assetEntryPersistence = assetEntryPersistence;
731 }
732
733
738 public AssetEntryFinder getAssetEntryFinder() {
739 return assetEntryFinder;
740 }
741
742
747 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
748 this.assetEntryFinder = assetEntryFinder;
749 }
750
751
756 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
757 return assetLinkLocalService;
758 }
759
760
765 public void setAssetLinkLocalService(
766 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
767 this.assetLinkLocalService = assetLinkLocalService;
768 }
769
770
775 public AssetLinkPersistence getAssetLinkPersistence() {
776 return assetLinkPersistence;
777 }
778
779
784 public void setAssetLinkPersistence(
785 AssetLinkPersistence assetLinkPersistence) {
786 this.assetLinkPersistence = assetLinkPersistence;
787 }
788
789
794 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
795 return expandoRowLocalService;
796 }
797
798
803 public void setExpandoRowLocalService(
804 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
805 this.expandoRowLocalService = expandoRowLocalService;
806 }
807
808
813 public ExpandoRowPersistence getExpandoRowPersistence() {
814 return expandoRowPersistence;
815 }
816
817
822 public void setExpandoRowPersistence(
823 ExpandoRowPersistence expandoRowPersistence) {
824 this.expandoRowPersistence = expandoRowPersistence;
825 }
826
827
832 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
833 return ratingsStatsLocalService;
834 }
835
836
841 public void setRatingsStatsLocalService(
842 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
843 this.ratingsStatsLocalService = ratingsStatsLocalService;
844 }
845
846
851 public RatingsStatsPersistence getRatingsStatsPersistence() {
852 return ratingsStatsPersistence;
853 }
854
855
860 public void setRatingsStatsPersistence(
861 RatingsStatsPersistence ratingsStatsPersistence) {
862 this.ratingsStatsPersistence = ratingsStatsPersistence;
863 }
864
865
870 public RatingsStatsFinder getRatingsStatsFinder() {
871 return ratingsStatsFinder;
872 }
873
874
879 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
880 this.ratingsStatsFinder = ratingsStatsFinder;
881 }
882
883
888 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
889 return socialActivityLocalService;
890 }
891
892
897 public void setSocialActivityLocalService(
898 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
899 this.socialActivityLocalService = socialActivityLocalService;
900 }
901
902
907 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
908 return socialActivityService;
909 }
910
911
916 public void setSocialActivityService(
917 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
918 this.socialActivityService = socialActivityService;
919 }
920
921
926 public SocialActivityPersistence getSocialActivityPersistence() {
927 return socialActivityPersistence;
928 }
929
930
935 public void setSocialActivityPersistence(
936 SocialActivityPersistence socialActivityPersistence) {
937 this.socialActivityPersistence = socialActivityPersistence;
938 }
939
940
945 public SocialActivityFinder getSocialActivityFinder() {
946 return socialActivityFinder;
947 }
948
949
954 public void setSocialActivityFinder(
955 SocialActivityFinder socialActivityFinder) {
956 this.socialActivityFinder = socialActivityFinder;
957 }
958
959
964 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
965 return trashEntryLocalService;
966 }
967
968
973 public void setTrashEntryLocalService(
974 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
975 this.trashEntryLocalService = trashEntryLocalService;
976 }
977
978
983 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
984 return trashEntryService;
985 }
986
987
992 public void setTrashEntryService(
993 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
994 this.trashEntryService = trashEntryService;
995 }
996
997
1002 public TrashEntryPersistence getTrashEntryPersistence() {
1003 return trashEntryPersistence;
1004 }
1005
1006
1011 public void setTrashEntryPersistence(
1012 TrashEntryPersistence trashEntryPersistence) {
1013 this.trashEntryPersistence = trashEntryPersistence;
1014 }
1015
1016
1021 public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
1022 return blogsStatsUserLocalService;
1023 }
1024
1025
1030 public void setBlogsStatsUserLocalService(
1031 com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
1032 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
1033 }
1034
1035
1040 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
1041 return blogsStatsUserPersistence;
1042 }
1043
1044
1049 public void setBlogsStatsUserPersistence(
1050 BlogsStatsUserPersistence blogsStatsUserPersistence) {
1051 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
1052 }
1053
1054
1059 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
1060 return blogsStatsUserFinder;
1061 }
1062
1063
1068 public void setBlogsStatsUserFinder(
1069 BlogsStatsUserFinder blogsStatsUserFinder) {
1070 this.blogsStatsUserFinder = blogsStatsUserFinder;
1071 }
1072
1073 public void afterPropertiesSet() {
1074 }
1075
1076 public void destroy() {
1077 }
1078
1079
1084 @Override
1085 public String getBeanIdentifier() {
1086 return _beanIdentifier;
1087 }
1088
1089
1094 @Override
1095 public void setBeanIdentifier(String beanIdentifier) {
1096 _beanIdentifier = beanIdentifier;
1097 }
1098
1099 protected Class<?> getModelClass() {
1100 return BlogsEntry.class;
1101 }
1102
1103 protected String getModelClassName() {
1104 return BlogsEntry.class.getName();
1105 }
1106
1107
1112 protected void runSQL(String sql) {
1113 try {
1114 DataSource dataSource = blogsEntryPersistence.getDataSource();
1115
1116 DB db = DBFactoryUtil.getDB();
1117
1118 sql = db.buildSQL(sql);
1119 sql = PortalUtil.transformSQL(sql);
1120
1121 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1122 sql, new int[0]);
1123
1124 sqlUpdate.update();
1125 }
1126 catch (Exception e) {
1127 throw new SystemException(e);
1128 }
1129 }
1130
1131 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1132 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1133 @BeanReference(type = BlogsEntryService.class)
1134 protected BlogsEntryService blogsEntryService;
1135 @BeanReference(type = BlogsEntryPersistence.class)
1136 protected BlogsEntryPersistence blogsEntryPersistence;
1137 @BeanReference(type = BlogsEntryFinder.class)
1138 protected BlogsEntryFinder blogsEntryFinder;
1139 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1140 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1141 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1142 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1143 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1144 protected com.liferay.portal.service.CompanyService companyService;
1145 @BeanReference(type = CompanyPersistence.class)
1146 protected CompanyPersistence companyPersistence;
1147 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1148 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1149 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1150 protected com.liferay.portal.service.GroupService groupService;
1151 @BeanReference(type = GroupPersistence.class)
1152 protected GroupPersistence groupPersistence;
1153 @BeanReference(type = GroupFinder.class)
1154 protected GroupFinder groupFinder;
1155 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1156 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1157 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1158 protected com.liferay.portal.service.ImageService imageService;
1159 @BeanReference(type = ImagePersistence.class)
1160 protected ImagePersistence imagePersistence;
1161 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
1162 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
1163 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
1164 protected com.liferay.portal.service.OrganizationService organizationService;
1165 @BeanReference(type = OrganizationPersistence.class)
1166 protected OrganizationPersistence organizationPersistence;
1167 @BeanReference(type = OrganizationFinder.class)
1168 protected OrganizationFinder organizationFinder;
1169 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1170 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1171 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1172 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1173 @BeanReference(type = PortletPreferencesPersistence.class)
1174 protected PortletPreferencesPersistence portletPreferencesPersistence;
1175 @BeanReference(type = PortletPreferencesFinder.class)
1176 protected PortletPreferencesFinder portletPreferencesFinder;
1177 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1178 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1179 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1180 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1181 @BeanReference(type = SubscriptionPersistence.class)
1182 protected SubscriptionPersistence subscriptionPersistence;
1183 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1184 protected com.liferay.portal.service.UserLocalService userLocalService;
1185 @BeanReference(type = com.liferay.portal.service.UserService.class)
1186 protected com.liferay.portal.service.UserService userService;
1187 @BeanReference(type = UserPersistence.class)
1188 protected UserPersistence userPersistence;
1189 @BeanReference(type = UserFinder.class)
1190 protected UserFinder userFinder;
1191 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1192 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1193 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1194 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1195 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1196 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1197 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1198 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1199 @BeanReference(type = AssetEntryPersistence.class)
1200 protected AssetEntryPersistence assetEntryPersistence;
1201 @BeanReference(type = AssetEntryFinder.class)
1202 protected AssetEntryFinder assetEntryFinder;
1203 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1204 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1205 @BeanReference(type = AssetLinkPersistence.class)
1206 protected AssetLinkPersistence assetLinkPersistence;
1207 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1208 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1209 @BeanReference(type = ExpandoRowPersistence.class)
1210 protected ExpandoRowPersistence expandoRowPersistence;
1211 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1212 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1213 @BeanReference(type = RatingsStatsPersistence.class)
1214 protected RatingsStatsPersistence ratingsStatsPersistence;
1215 @BeanReference(type = RatingsStatsFinder.class)
1216 protected RatingsStatsFinder ratingsStatsFinder;
1217 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1218 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1219 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1220 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1221 @BeanReference(type = SocialActivityPersistence.class)
1222 protected SocialActivityPersistence socialActivityPersistence;
1223 @BeanReference(type = SocialActivityFinder.class)
1224 protected SocialActivityFinder socialActivityFinder;
1225 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1226 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1227 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1228 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1229 @BeanReference(type = TrashEntryPersistence.class)
1230 protected TrashEntryPersistence trashEntryPersistence;
1231 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1232 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1233 @BeanReference(type = BlogsStatsUserPersistence.class)
1234 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1235 @BeanReference(type = BlogsStatsUserFinder.class)
1236 protected BlogsStatsUserFinder blogsStatsUserFinder;
1237 private String _beanIdentifier;
1238 }