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.SocialActivityFinder;
053 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
054 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
055
056 import javax.sql.DataSource;
057
058
070 public abstract class BlogsEntryServiceBaseImpl extends BaseServiceImpl
071 implements BlogsEntryService, IdentifiableBean {
072
077
078
083 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
084 return blogsEntryLocalService;
085 }
086
087
092 public void setBlogsEntryLocalService(
093 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
094 this.blogsEntryLocalService = blogsEntryLocalService;
095 }
096
097
102 public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
103 return blogsEntryService;
104 }
105
106
111 public void setBlogsEntryService(
112 com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
113 this.blogsEntryService = blogsEntryService;
114 }
115
116
121 public BlogsEntryPersistence getBlogsEntryPersistence() {
122 return blogsEntryPersistence;
123 }
124
125
130 public void setBlogsEntryPersistence(
131 BlogsEntryPersistence blogsEntryPersistence) {
132 this.blogsEntryPersistence = blogsEntryPersistence;
133 }
134
135
140 public BlogsEntryFinder getBlogsEntryFinder() {
141 return blogsEntryFinder;
142 }
143
144
149 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
150 this.blogsEntryFinder = blogsEntryFinder;
151 }
152
153
158 public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
159 return blogsStatsUserLocalService;
160 }
161
162
167 public void setBlogsStatsUserLocalService(
168 com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
169 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
170 }
171
172
177 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
178 return blogsStatsUserPersistence;
179 }
180
181
186 public void setBlogsStatsUserPersistence(
187 BlogsStatsUserPersistence blogsStatsUserPersistence) {
188 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
189 }
190
191
196 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
197 return blogsStatsUserFinder;
198 }
199
200
205 public void setBlogsStatsUserFinder(
206 BlogsStatsUserFinder blogsStatsUserFinder) {
207 this.blogsStatsUserFinder = blogsStatsUserFinder;
208 }
209
210
215 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
216 return counterLocalService;
217 }
218
219
224 public void setCounterLocalService(
225 com.liferay.counter.service.CounterLocalService counterLocalService) {
226 this.counterLocalService = counterLocalService;
227 }
228
229
234 public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
235 return companyLocalService;
236 }
237
238
243 public void setCompanyLocalService(
244 com.liferay.portal.service.CompanyLocalService companyLocalService) {
245 this.companyLocalService = companyLocalService;
246 }
247
248
253 public com.liferay.portal.service.CompanyService getCompanyService() {
254 return companyService;
255 }
256
257
262 public void setCompanyService(
263 com.liferay.portal.service.CompanyService companyService) {
264 this.companyService = companyService;
265 }
266
267
272 public CompanyPersistence getCompanyPersistence() {
273 return companyPersistence;
274 }
275
276
281 public void setCompanyPersistence(CompanyPersistence companyPersistence) {
282 this.companyPersistence = companyPersistence;
283 }
284
285
290 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
291 return groupLocalService;
292 }
293
294
299 public void setGroupLocalService(
300 com.liferay.portal.service.GroupLocalService groupLocalService) {
301 this.groupLocalService = groupLocalService;
302 }
303
304
309 public com.liferay.portal.service.GroupService getGroupService() {
310 return groupService;
311 }
312
313
318 public void setGroupService(
319 com.liferay.portal.service.GroupService groupService) {
320 this.groupService = groupService;
321 }
322
323
328 public GroupPersistence getGroupPersistence() {
329 return groupPersistence;
330 }
331
332
337 public void setGroupPersistence(GroupPersistence groupPersistence) {
338 this.groupPersistence = groupPersistence;
339 }
340
341
346 public GroupFinder getGroupFinder() {
347 return groupFinder;
348 }
349
350
355 public void setGroupFinder(GroupFinder groupFinder) {
356 this.groupFinder = groupFinder;
357 }
358
359
364 public com.liferay.portal.service.ImageLocalService getImageLocalService() {
365 return imageLocalService;
366 }
367
368
373 public void setImageLocalService(
374 com.liferay.portal.service.ImageLocalService imageLocalService) {
375 this.imageLocalService = imageLocalService;
376 }
377
378
383 public com.liferay.portal.service.ImageService getImageService() {
384 return imageService;
385 }
386
387
392 public void setImageService(
393 com.liferay.portal.service.ImageService imageService) {
394 this.imageService = imageService;
395 }
396
397
402 public ImagePersistence getImagePersistence() {
403 return imagePersistence;
404 }
405
406
411 public void setImagePersistence(ImagePersistence imagePersistence) {
412 this.imagePersistence = imagePersistence;
413 }
414
415
420 public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
421 return organizationLocalService;
422 }
423
424
429 public void setOrganizationLocalService(
430 com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
431 this.organizationLocalService = organizationLocalService;
432 }
433
434
439 public com.liferay.portal.service.OrganizationService getOrganizationService() {
440 return organizationService;
441 }
442
443
448 public void setOrganizationService(
449 com.liferay.portal.service.OrganizationService organizationService) {
450 this.organizationService = organizationService;
451 }
452
453
458 public OrganizationPersistence getOrganizationPersistence() {
459 return organizationPersistence;
460 }
461
462
467 public void setOrganizationPersistence(
468 OrganizationPersistence organizationPersistence) {
469 this.organizationPersistence = organizationPersistence;
470 }
471
472
477 public OrganizationFinder getOrganizationFinder() {
478 return organizationFinder;
479 }
480
481
486 public void setOrganizationFinder(OrganizationFinder organizationFinder) {
487 this.organizationFinder = organizationFinder;
488 }
489
490
495 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
496 return portletPreferencesLocalService;
497 }
498
499
504 public void setPortletPreferencesLocalService(
505 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
506 this.portletPreferencesLocalService = portletPreferencesLocalService;
507 }
508
509
514 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
515 return portletPreferencesService;
516 }
517
518
523 public void setPortletPreferencesService(
524 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
525 this.portletPreferencesService = portletPreferencesService;
526 }
527
528
533 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
534 return portletPreferencesPersistence;
535 }
536
537
542 public void setPortletPreferencesPersistence(
543 PortletPreferencesPersistence portletPreferencesPersistence) {
544 this.portletPreferencesPersistence = portletPreferencesPersistence;
545 }
546
547
552 public PortletPreferencesFinder getPortletPreferencesFinder() {
553 return portletPreferencesFinder;
554 }
555
556
561 public void setPortletPreferencesFinder(
562 PortletPreferencesFinder portletPreferencesFinder) {
563 this.portletPreferencesFinder = portletPreferencesFinder;
564 }
565
566
571 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
572 return resourceLocalService;
573 }
574
575
580 public void setResourceLocalService(
581 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
582 this.resourceLocalService = resourceLocalService;
583 }
584
585
590 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
591 return subscriptionLocalService;
592 }
593
594
599 public void setSubscriptionLocalService(
600 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
601 this.subscriptionLocalService = subscriptionLocalService;
602 }
603
604
609 public SubscriptionPersistence getSubscriptionPersistence() {
610 return subscriptionPersistence;
611 }
612
613
618 public void setSubscriptionPersistence(
619 SubscriptionPersistence subscriptionPersistence) {
620 this.subscriptionPersistence = subscriptionPersistence;
621 }
622
623
628 public com.liferay.portal.service.UserLocalService getUserLocalService() {
629 return userLocalService;
630 }
631
632
637 public void setUserLocalService(
638 com.liferay.portal.service.UserLocalService userLocalService) {
639 this.userLocalService = userLocalService;
640 }
641
642
647 public com.liferay.portal.service.UserService getUserService() {
648 return userService;
649 }
650
651
656 public void setUserService(
657 com.liferay.portal.service.UserService userService) {
658 this.userService = userService;
659 }
660
661
666 public UserPersistence getUserPersistence() {
667 return userPersistence;
668 }
669
670
675 public void setUserPersistence(UserPersistence userPersistence) {
676 this.userPersistence = userPersistence;
677 }
678
679
684 public UserFinder getUserFinder() {
685 return userFinder;
686 }
687
688
693 public void setUserFinder(UserFinder userFinder) {
694 this.userFinder = userFinder;
695 }
696
697
702 public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
703 return workflowInstanceLinkLocalService;
704 }
705
706
711 public void setWorkflowInstanceLinkLocalService(
712 com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
713 this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
714 }
715
716
721 public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
722 return workflowInstanceLinkPersistence;
723 }
724
725
730 public void setWorkflowInstanceLinkPersistence(
731 WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
732 this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
733 }
734
735
740 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
741 return assetEntryLocalService;
742 }
743
744
749 public void setAssetEntryLocalService(
750 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
751 this.assetEntryLocalService = assetEntryLocalService;
752 }
753
754
759 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
760 return assetEntryService;
761 }
762
763
768 public void setAssetEntryService(
769 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
770 this.assetEntryService = assetEntryService;
771 }
772
773
778 public AssetEntryPersistence getAssetEntryPersistence() {
779 return assetEntryPersistence;
780 }
781
782
787 public void setAssetEntryPersistence(
788 AssetEntryPersistence assetEntryPersistence) {
789 this.assetEntryPersistence = assetEntryPersistence;
790 }
791
792
797 public AssetEntryFinder getAssetEntryFinder() {
798 return assetEntryFinder;
799 }
800
801
806 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
807 this.assetEntryFinder = assetEntryFinder;
808 }
809
810
815 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
816 return assetLinkLocalService;
817 }
818
819
824 public void setAssetLinkLocalService(
825 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
826 this.assetLinkLocalService = assetLinkLocalService;
827 }
828
829
834 public AssetLinkPersistence getAssetLinkPersistence() {
835 return assetLinkPersistence;
836 }
837
838
843 public void setAssetLinkPersistence(
844 AssetLinkPersistence assetLinkPersistence) {
845 this.assetLinkPersistence = assetLinkPersistence;
846 }
847
848
853 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
854 return assetTagLocalService;
855 }
856
857
862 public void setAssetTagLocalService(
863 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
864 this.assetTagLocalService = assetTagLocalService;
865 }
866
867
872 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
873 return assetTagService;
874 }
875
876
881 public void setAssetTagService(
882 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
883 this.assetTagService = assetTagService;
884 }
885
886
891 public AssetTagPersistence getAssetTagPersistence() {
892 return assetTagPersistence;
893 }
894
895
900 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
901 this.assetTagPersistence = assetTagPersistence;
902 }
903
904
909 public AssetTagFinder getAssetTagFinder() {
910 return assetTagFinder;
911 }
912
913
918 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
919 this.assetTagFinder = assetTagFinder;
920 }
921
922
927 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
928 return expandoRowLocalService;
929 }
930
931
936 public void setExpandoRowLocalService(
937 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
938 this.expandoRowLocalService = expandoRowLocalService;
939 }
940
941
946 public ExpandoRowPersistence getExpandoRowPersistence() {
947 return expandoRowPersistence;
948 }
949
950
955 public void setExpandoRowPersistence(
956 ExpandoRowPersistence expandoRowPersistence) {
957 this.expandoRowPersistence = expandoRowPersistence;
958 }
959
960
965 public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
966 return mbMessageLocalService;
967 }
968
969
974 public void setMBMessageLocalService(
975 com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
976 this.mbMessageLocalService = mbMessageLocalService;
977 }
978
979
984 public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
985 return mbMessageService;
986 }
987
988
993 public void setMBMessageService(
994 com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
995 this.mbMessageService = mbMessageService;
996 }
997
998
1003 public MBMessagePersistence getMBMessagePersistence() {
1004 return mbMessagePersistence;
1005 }
1006
1007
1012 public void setMBMessagePersistence(
1013 MBMessagePersistence mbMessagePersistence) {
1014 this.mbMessagePersistence = mbMessagePersistence;
1015 }
1016
1017
1022 public MBMessageFinder getMBMessageFinder() {
1023 return mbMessageFinder;
1024 }
1025
1026
1031 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1032 this.mbMessageFinder = mbMessageFinder;
1033 }
1034
1035
1040 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1041 return ratingsStatsLocalService;
1042 }
1043
1044
1049 public void setRatingsStatsLocalService(
1050 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1051 this.ratingsStatsLocalService = ratingsStatsLocalService;
1052 }
1053
1054
1059 public RatingsStatsPersistence getRatingsStatsPersistence() {
1060 return ratingsStatsPersistence;
1061 }
1062
1063
1068 public void setRatingsStatsPersistence(
1069 RatingsStatsPersistence ratingsStatsPersistence) {
1070 this.ratingsStatsPersistence = ratingsStatsPersistence;
1071 }
1072
1073
1078 public RatingsStatsFinder getRatingsStatsFinder() {
1079 return ratingsStatsFinder;
1080 }
1081
1082
1087 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1088 this.ratingsStatsFinder = ratingsStatsFinder;
1089 }
1090
1091
1096 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1097 return socialActivityLocalService;
1098 }
1099
1100
1105 public void setSocialActivityLocalService(
1106 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1107 this.socialActivityLocalService = socialActivityLocalService;
1108 }
1109
1110
1115 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1116 return socialActivityService;
1117 }
1118
1119
1124 public void setSocialActivityService(
1125 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1126 this.socialActivityService = socialActivityService;
1127 }
1128
1129
1134 public SocialActivityPersistence getSocialActivityPersistence() {
1135 return socialActivityPersistence;
1136 }
1137
1138
1143 public void setSocialActivityPersistence(
1144 SocialActivityPersistence socialActivityPersistence) {
1145 this.socialActivityPersistence = socialActivityPersistence;
1146 }
1147
1148
1153 public SocialActivityFinder getSocialActivityFinder() {
1154 return socialActivityFinder;
1155 }
1156
1157
1162 public void setSocialActivityFinder(
1163 SocialActivityFinder socialActivityFinder) {
1164 this.socialActivityFinder = socialActivityFinder;
1165 }
1166
1167
1172 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1173 return trashEntryLocalService;
1174 }
1175
1176
1181 public void setTrashEntryLocalService(
1182 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1183 this.trashEntryLocalService = trashEntryLocalService;
1184 }
1185
1186
1191 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1192 return trashEntryService;
1193 }
1194
1195
1200 public void setTrashEntryService(
1201 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1202 this.trashEntryService = trashEntryService;
1203 }
1204
1205
1210 public TrashEntryPersistence getTrashEntryPersistence() {
1211 return trashEntryPersistence;
1212 }
1213
1214
1219 public void setTrashEntryPersistence(
1220 TrashEntryPersistence trashEntryPersistence) {
1221 this.trashEntryPersistence = trashEntryPersistence;
1222 }
1223
1224 public void afterPropertiesSet() {
1225 }
1226
1227 public void destroy() {
1228 }
1229
1230
1235 @Override
1236 public String getBeanIdentifier() {
1237 return _beanIdentifier;
1238 }
1239
1240
1245 @Override
1246 public void setBeanIdentifier(String beanIdentifier) {
1247 _beanIdentifier = beanIdentifier;
1248 }
1249
1250 protected Class<?> getModelClass() {
1251 return BlogsEntry.class;
1252 }
1253
1254 protected String getModelClassName() {
1255 return BlogsEntry.class.getName();
1256 }
1257
1258
1263 protected void runSQL(String sql) throws SystemException {
1264 try {
1265 DataSource dataSource = blogsEntryPersistence.getDataSource();
1266
1267 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1268 sql, new int[0]);
1269
1270 sqlUpdate.update();
1271 }
1272 catch (Exception e) {
1273 throw new SystemException(e);
1274 }
1275 }
1276
1277 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1278 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1279 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1280 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1281 @BeanReference(type = BlogsEntryPersistence.class)
1282 protected BlogsEntryPersistence blogsEntryPersistence;
1283 @BeanReference(type = BlogsEntryFinder.class)
1284 protected BlogsEntryFinder blogsEntryFinder;
1285 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1286 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1287 @BeanReference(type = BlogsStatsUserPersistence.class)
1288 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1289 @BeanReference(type = BlogsStatsUserFinder.class)
1290 protected BlogsStatsUserFinder blogsStatsUserFinder;
1291 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1292 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1293 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1294 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1295 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1296 protected com.liferay.portal.service.CompanyService companyService;
1297 @BeanReference(type = CompanyPersistence.class)
1298 protected CompanyPersistence companyPersistence;
1299 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1300 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1301 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1302 protected com.liferay.portal.service.GroupService groupService;
1303 @BeanReference(type = GroupPersistence.class)
1304 protected GroupPersistence groupPersistence;
1305 @BeanReference(type = GroupFinder.class)
1306 protected GroupFinder groupFinder;
1307 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1308 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1309 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1310 protected com.liferay.portal.service.ImageService imageService;
1311 @BeanReference(type = ImagePersistence.class)
1312 protected ImagePersistence imagePersistence;
1313 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
1314 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
1315 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
1316 protected com.liferay.portal.service.OrganizationService organizationService;
1317 @BeanReference(type = OrganizationPersistence.class)
1318 protected OrganizationPersistence organizationPersistence;
1319 @BeanReference(type = OrganizationFinder.class)
1320 protected OrganizationFinder organizationFinder;
1321 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1322 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1323 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1324 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1325 @BeanReference(type = PortletPreferencesPersistence.class)
1326 protected PortletPreferencesPersistence portletPreferencesPersistence;
1327 @BeanReference(type = PortletPreferencesFinder.class)
1328 protected PortletPreferencesFinder portletPreferencesFinder;
1329 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1330 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1331 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1332 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1333 @BeanReference(type = SubscriptionPersistence.class)
1334 protected SubscriptionPersistence subscriptionPersistence;
1335 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1336 protected com.liferay.portal.service.UserLocalService userLocalService;
1337 @BeanReference(type = com.liferay.portal.service.UserService.class)
1338 protected com.liferay.portal.service.UserService userService;
1339 @BeanReference(type = UserPersistence.class)
1340 protected UserPersistence userPersistence;
1341 @BeanReference(type = UserFinder.class)
1342 protected UserFinder userFinder;
1343 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1344 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1345 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1346 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1347 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1348 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1349 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1350 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1351 @BeanReference(type = AssetEntryPersistence.class)
1352 protected AssetEntryPersistence assetEntryPersistence;
1353 @BeanReference(type = AssetEntryFinder.class)
1354 protected AssetEntryFinder assetEntryFinder;
1355 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1356 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1357 @BeanReference(type = AssetLinkPersistence.class)
1358 protected AssetLinkPersistence assetLinkPersistence;
1359 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1360 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1361 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1362 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1363 @BeanReference(type = AssetTagPersistence.class)
1364 protected AssetTagPersistence assetTagPersistence;
1365 @BeanReference(type = AssetTagFinder.class)
1366 protected AssetTagFinder assetTagFinder;
1367 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1368 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1369 @BeanReference(type = ExpandoRowPersistence.class)
1370 protected ExpandoRowPersistence expandoRowPersistence;
1371 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1372 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1373 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1374 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1375 @BeanReference(type = MBMessagePersistence.class)
1376 protected MBMessagePersistence mbMessagePersistence;
1377 @BeanReference(type = MBMessageFinder.class)
1378 protected MBMessageFinder mbMessageFinder;
1379 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1380 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1381 @BeanReference(type = RatingsStatsPersistence.class)
1382 protected RatingsStatsPersistence ratingsStatsPersistence;
1383 @BeanReference(type = RatingsStatsFinder.class)
1384 protected RatingsStatsFinder ratingsStatsFinder;
1385 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1386 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1387 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1388 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1389 @BeanReference(type = SocialActivityPersistence.class)
1390 protected SocialActivityPersistence socialActivityPersistence;
1391 @BeanReference(type = SocialActivityFinder.class)
1392 protected SocialActivityFinder socialActivityFinder;
1393 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1394 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1395 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1396 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1397 @BeanReference(type = TrashEntryPersistence.class)
1398 protected TrashEntryPersistence trashEntryPersistence;
1399 private String _beanIdentifier;
1400 }