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 SocialActivityPersistence getSocialActivityPersistence() {
1116 return socialActivityPersistence;
1117 }
1118
1119
1124 public void setSocialActivityPersistence(
1125 SocialActivityPersistence socialActivityPersistence) {
1126 this.socialActivityPersistence = socialActivityPersistence;
1127 }
1128
1129
1134 public SocialActivityFinder getSocialActivityFinder() {
1135 return socialActivityFinder;
1136 }
1137
1138
1143 public void setSocialActivityFinder(
1144 SocialActivityFinder socialActivityFinder) {
1145 this.socialActivityFinder = socialActivityFinder;
1146 }
1147
1148
1153 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1154 return trashEntryLocalService;
1155 }
1156
1157
1162 public void setTrashEntryLocalService(
1163 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1164 this.trashEntryLocalService = trashEntryLocalService;
1165 }
1166
1167
1172 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1173 return trashEntryService;
1174 }
1175
1176
1181 public void setTrashEntryService(
1182 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1183 this.trashEntryService = trashEntryService;
1184 }
1185
1186
1191 public TrashEntryPersistence getTrashEntryPersistence() {
1192 return trashEntryPersistence;
1193 }
1194
1195
1200 public void setTrashEntryPersistence(
1201 TrashEntryPersistence trashEntryPersistence) {
1202 this.trashEntryPersistence = trashEntryPersistence;
1203 }
1204
1205 public void afterPropertiesSet() {
1206 }
1207
1208 public void destroy() {
1209 }
1210
1211
1216 @Override
1217 public String getBeanIdentifier() {
1218 return _beanIdentifier;
1219 }
1220
1221
1226 @Override
1227 public void setBeanIdentifier(String beanIdentifier) {
1228 _beanIdentifier = beanIdentifier;
1229 }
1230
1231 protected Class<?> getModelClass() {
1232 return BlogsEntry.class;
1233 }
1234
1235 protected String getModelClassName() {
1236 return BlogsEntry.class.getName();
1237 }
1238
1239
1244 protected void runSQL(String sql) throws SystemException {
1245 try {
1246 DataSource dataSource = blogsEntryPersistence.getDataSource();
1247
1248 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1249 sql, new int[0]);
1250
1251 sqlUpdate.update();
1252 }
1253 catch (Exception e) {
1254 throw new SystemException(e);
1255 }
1256 }
1257
1258 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1259 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1260 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1261 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1262 @BeanReference(type = BlogsEntryPersistence.class)
1263 protected BlogsEntryPersistence blogsEntryPersistence;
1264 @BeanReference(type = BlogsEntryFinder.class)
1265 protected BlogsEntryFinder blogsEntryFinder;
1266 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1267 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1268 @BeanReference(type = BlogsStatsUserPersistence.class)
1269 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1270 @BeanReference(type = BlogsStatsUserFinder.class)
1271 protected BlogsStatsUserFinder blogsStatsUserFinder;
1272 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1273 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1274 @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1275 protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1276 @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1277 protected com.liferay.portal.service.CompanyService companyService;
1278 @BeanReference(type = CompanyPersistence.class)
1279 protected CompanyPersistence companyPersistence;
1280 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1281 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1282 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1283 protected com.liferay.portal.service.GroupService groupService;
1284 @BeanReference(type = GroupPersistence.class)
1285 protected GroupPersistence groupPersistence;
1286 @BeanReference(type = GroupFinder.class)
1287 protected GroupFinder groupFinder;
1288 @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1289 protected com.liferay.portal.service.ImageLocalService imageLocalService;
1290 @BeanReference(type = com.liferay.portal.service.ImageService.class)
1291 protected com.liferay.portal.service.ImageService imageService;
1292 @BeanReference(type = ImagePersistence.class)
1293 protected ImagePersistence imagePersistence;
1294 @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
1295 protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
1296 @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
1297 protected com.liferay.portal.service.OrganizationService organizationService;
1298 @BeanReference(type = OrganizationPersistence.class)
1299 protected OrganizationPersistence organizationPersistence;
1300 @BeanReference(type = OrganizationFinder.class)
1301 protected OrganizationFinder organizationFinder;
1302 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1303 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1304 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1305 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1306 @BeanReference(type = PortletPreferencesPersistence.class)
1307 protected PortletPreferencesPersistence portletPreferencesPersistence;
1308 @BeanReference(type = PortletPreferencesFinder.class)
1309 protected PortletPreferencesFinder portletPreferencesFinder;
1310 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1311 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1312 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1313 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1314 @BeanReference(type = SubscriptionPersistence.class)
1315 protected SubscriptionPersistence subscriptionPersistence;
1316 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1317 protected com.liferay.portal.service.UserLocalService userLocalService;
1318 @BeanReference(type = com.liferay.portal.service.UserService.class)
1319 protected com.liferay.portal.service.UserService userService;
1320 @BeanReference(type = UserPersistence.class)
1321 protected UserPersistence userPersistence;
1322 @BeanReference(type = UserFinder.class)
1323 protected UserFinder userFinder;
1324 @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1325 protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1326 @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1327 protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1328 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1329 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1330 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1331 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1332 @BeanReference(type = AssetEntryPersistence.class)
1333 protected AssetEntryPersistence assetEntryPersistence;
1334 @BeanReference(type = AssetEntryFinder.class)
1335 protected AssetEntryFinder assetEntryFinder;
1336 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1337 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1338 @BeanReference(type = AssetLinkPersistence.class)
1339 protected AssetLinkPersistence assetLinkPersistence;
1340 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1341 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1342 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1343 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1344 @BeanReference(type = AssetTagPersistence.class)
1345 protected AssetTagPersistence assetTagPersistence;
1346 @BeanReference(type = AssetTagFinder.class)
1347 protected AssetTagFinder assetTagFinder;
1348 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1349 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1350 @BeanReference(type = ExpandoRowPersistence.class)
1351 protected ExpandoRowPersistence expandoRowPersistence;
1352 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1353 protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1354 @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1355 protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1356 @BeanReference(type = MBMessagePersistence.class)
1357 protected MBMessagePersistence mbMessagePersistence;
1358 @BeanReference(type = MBMessageFinder.class)
1359 protected MBMessageFinder mbMessageFinder;
1360 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1361 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1362 @BeanReference(type = RatingsStatsPersistence.class)
1363 protected RatingsStatsPersistence ratingsStatsPersistence;
1364 @BeanReference(type = RatingsStatsFinder.class)
1365 protected RatingsStatsFinder ratingsStatsFinder;
1366 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1367 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1368 @BeanReference(type = SocialActivityPersistence.class)
1369 protected SocialActivityPersistence socialActivityPersistence;
1370 @BeanReference(type = SocialActivityFinder.class)
1371 protected SocialActivityFinder socialActivityFinder;
1372 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1373 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1374 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1375 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1376 @BeanReference(type = TrashEntryPersistence.class)
1377 protected TrashEntryPersistence trashEntryPersistence;
1378 private String _beanIdentifier;
1379 }