001
014
015 package com.liferay.portlet.ratings.service.base;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.db.DB;
022 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025 import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
026 import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
027 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
028 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
029 import com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery;
030 import com.liferay.portal.kernel.dao.orm.Projection;
031 import com.liferay.portal.kernel.dao.orm.Property;
032 import com.liferay.portal.kernel.dao.orm.PropertyFactoryUtil;
033 import com.liferay.portal.kernel.exception.PortalException;
034 import com.liferay.portal.kernel.exception.SystemException;
035 import com.liferay.portal.kernel.lar.ExportImportHelperUtil;
036 import com.liferay.portal.kernel.lar.ManifestSummary;
037 import com.liferay.portal.kernel.lar.PortletDataContext;
038 import com.liferay.portal.kernel.lar.StagedModelDataHandlerUtil;
039 import com.liferay.portal.kernel.lar.StagedModelType;
040 import com.liferay.portal.kernel.search.Indexable;
041 import com.liferay.portal.kernel.search.IndexableType;
042 import com.liferay.portal.kernel.util.OrderByComparator;
043 import com.liferay.portal.model.PersistedModel;
044 import com.liferay.portal.service.BaseLocalServiceImpl;
045 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
046 import com.liferay.portal.service.persistence.ClassNamePersistence;
047 import com.liferay.portal.service.persistence.UserFinder;
048 import com.liferay.portal.service.persistence.UserPersistence;
049 import com.liferay.portal.util.PortalUtil;
050
051 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
052 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
053 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
054 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
055 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
056 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
057 import com.liferay.portlet.ratings.model.RatingsEntry;
058 import com.liferay.portlet.ratings.service.RatingsEntryLocalService;
059 import com.liferay.portlet.ratings.service.persistence.RatingsEntryFinder;
060 import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence;
061 import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
062 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
063 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
064 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
065
066 import java.io.Serializable;
067
068 import java.util.List;
069
070 import javax.sql.DataSource;
071
072
084 @ProviderType
085 public abstract class RatingsEntryLocalServiceBaseImpl
086 extends BaseLocalServiceImpl implements RatingsEntryLocalService,
087 IdentifiableBean {
088
093
094
100 @Indexable(type = IndexableType.REINDEX)
101 @Override
102 public RatingsEntry addRatingsEntry(RatingsEntry ratingsEntry) {
103 ratingsEntry.setNew(true);
104
105 return ratingsEntryPersistence.update(ratingsEntry);
106 }
107
108
114 @Override
115 public RatingsEntry createRatingsEntry(long entryId) {
116 return ratingsEntryPersistence.create(entryId);
117 }
118
119
126 @Indexable(type = IndexableType.DELETE)
127 @Override
128 public RatingsEntry deleteRatingsEntry(long entryId)
129 throws PortalException {
130 return ratingsEntryPersistence.remove(entryId);
131 }
132
133
139 @Indexable(type = IndexableType.DELETE)
140 @Override
141 public RatingsEntry deleteRatingsEntry(RatingsEntry ratingsEntry) {
142 return ratingsEntryPersistence.remove(ratingsEntry);
143 }
144
145 @Override
146 public DynamicQuery dynamicQuery() {
147 Class<?> clazz = getClass();
148
149 return DynamicQueryFactoryUtil.forClass(RatingsEntry.class,
150 clazz.getClassLoader());
151 }
152
153
159 @Override
160 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
161 return ratingsEntryPersistence.findWithDynamicQuery(dynamicQuery);
162 }
163
164
176 @Override
177 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
178 int end) {
179 return ratingsEntryPersistence.findWithDynamicQuery(dynamicQuery,
180 start, end);
181 }
182
183
196 @Override
197 public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
198 int end, OrderByComparator<T> orderByComparator) {
199 return ratingsEntryPersistence.findWithDynamicQuery(dynamicQuery,
200 start, end, orderByComparator);
201 }
202
203
209 @Override
210 public long dynamicQueryCount(DynamicQuery dynamicQuery) {
211 return ratingsEntryPersistence.countWithDynamicQuery(dynamicQuery);
212 }
213
214
221 @Override
222 public long dynamicQueryCount(DynamicQuery dynamicQuery,
223 Projection projection) {
224 return ratingsEntryPersistence.countWithDynamicQuery(dynamicQuery,
225 projection);
226 }
227
228 @Override
229 public RatingsEntry fetchRatingsEntry(long entryId) {
230 return ratingsEntryPersistence.fetchByPrimaryKey(entryId);
231 }
232
233
240 @Override
241 public RatingsEntry fetchRatingsEntryByUuidAndCompanyId(String uuid,
242 long companyId) {
243 return ratingsEntryPersistence.fetchByUuid_C_First(uuid, companyId, null);
244 }
245
246
253 @Override
254 public RatingsEntry getRatingsEntry(long entryId) throws PortalException {
255 return ratingsEntryPersistence.findByPrimaryKey(entryId);
256 }
257
258 @Override
259 public ActionableDynamicQuery getActionableDynamicQuery() {
260 ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
261
262 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.ratings.service.RatingsEntryLocalServiceUtil.getService());
263 actionableDynamicQuery.setClass(RatingsEntry.class);
264 actionableDynamicQuery.setClassLoader(getClassLoader());
265
266 actionableDynamicQuery.setPrimaryKeyPropertyName("entryId");
267
268 return actionableDynamicQuery;
269 }
270
271 protected void initActionableDynamicQuery(
272 ActionableDynamicQuery actionableDynamicQuery) {
273 actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.ratings.service.RatingsEntryLocalServiceUtil.getService());
274 actionableDynamicQuery.setClass(RatingsEntry.class);
275 actionableDynamicQuery.setClassLoader(getClassLoader());
276
277 actionableDynamicQuery.setPrimaryKeyPropertyName("entryId");
278 }
279
280 @Override
281 public ExportActionableDynamicQuery getExportActionableDynamicQuery(
282 final PortletDataContext portletDataContext) {
283 final ExportActionableDynamicQuery exportActionableDynamicQuery = new ExportActionableDynamicQuery() {
284 @Override
285 public long performCount() throws PortalException {
286 ManifestSummary manifestSummary = portletDataContext.getManifestSummary();
287
288 StagedModelType stagedModelType = getStagedModelType();
289
290 long modelAdditionCount = super.performCount();
291
292 manifestSummary.addModelAdditionCount(stagedModelType.toString(),
293 modelAdditionCount);
294
295 long modelDeletionCount = ExportImportHelperUtil.getModelDeletionCount(portletDataContext,
296 stagedModelType);
297
298 manifestSummary.addModelDeletionCount(stagedModelType.toString(),
299 modelDeletionCount);
300
301 return modelAdditionCount;
302 }
303 };
304
305 initActionableDynamicQuery(exportActionableDynamicQuery);
306
307 exportActionableDynamicQuery.setAddCriteriaMethod(new ActionableDynamicQuery.AddCriteriaMethod() {
308 @Override
309 public void addCriteria(DynamicQuery dynamicQuery) {
310 portletDataContext.addDateRangeCriteria(dynamicQuery,
311 "modifiedDate");
312
313 StagedModelType stagedModelType = exportActionableDynamicQuery.getStagedModelType();
314
315 if (stagedModelType.getReferrerClassNameId() >= 0) {
316 Property classNameIdProperty = PropertyFactoryUtil.forName(
317 "classNameId");
318
319 dynamicQuery.add(classNameIdProperty.eq(
320 stagedModelType.getReferrerClassNameId()));
321 }
322 }
323 });
324
325 exportActionableDynamicQuery.setCompanyId(portletDataContext.getCompanyId());
326
327 exportActionableDynamicQuery.setPerformActionMethod(new ActionableDynamicQuery.PerformActionMethod() {
328 @Override
329 public void performAction(Object object)
330 throws PortalException {
331 RatingsEntry stagedModel = (RatingsEntry)object;
332
333 StagedModelDataHandlerUtil.exportStagedModel(portletDataContext,
334 stagedModel);
335 }
336 });
337 exportActionableDynamicQuery.setStagedModelType(new StagedModelType(
338 PortalUtil.getClassNameId(RatingsEntry.class.getName())));
339
340 return exportActionableDynamicQuery;
341 }
342
343
346 @Override
347 public PersistedModel deletePersistedModel(PersistedModel persistedModel)
348 throws PortalException {
349 return ratingsEntryLocalService.deleteRatingsEntry((RatingsEntry)persistedModel);
350 }
351
352 @Override
353 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
354 throws PortalException {
355 return ratingsEntryPersistence.findByPrimaryKey(primaryKeyObj);
356 }
357
358
366 @Override
367 public RatingsEntry getRatingsEntryByUuidAndCompanyId(String uuid,
368 long companyId) throws PortalException {
369 return ratingsEntryPersistence.findByUuid_C_First(uuid, companyId, null);
370 }
371
372
383 @Override
384 public List<RatingsEntry> getRatingsEntries(int start, int end) {
385 return ratingsEntryPersistence.findAll(start, end);
386 }
387
388
393 @Override
394 public int getRatingsEntriesCount() {
395 return ratingsEntryPersistence.countAll();
396 }
397
398
404 @Indexable(type = IndexableType.REINDEX)
405 @Override
406 public RatingsEntry updateRatingsEntry(RatingsEntry ratingsEntry) {
407 return ratingsEntryPersistence.update(ratingsEntry);
408 }
409
410
415 public com.liferay.portlet.ratings.service.RatingsEntryLocalService getRatingsEntryLocalService() {
416 return ratingsEntryLocalService;
417 }
418
419
424 public void setRatingsEntryLocalService(
425 com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService) {
426 this.ratingsEntryLocalService = ratingsEntryLocalService;
427 }
428
429
434 public com.liferay.portlet.ratings.service.RatingsEntryService getRatingsEntryService() {
435 return ratingsEntryService;
436 }
437
438
443 public void setRatingsEntryService(
444 com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService) {
445 this.ratingsEntryService = ratingsEntryService;
446 }
447
448
453 public RatingsEntryPersistence getRatingsEntryPersistence() {
454 return ratingsEntryPersistence;
455 }
456
457
462 public void setRatingsEntryPersistence(
463 RatingsEntryPersistence ratingsEntryPersistence) {
464 this.ratingsEntryPersistence = ratingsEntryPersistence;
465 }
466
467
472 public RatingsEntryFinder getRatingsEntryFinder() {
473 return ratingsEntryFinder;
474 }
475
476
481 public void setRatingsEntryFinder(RatingsEntryFinder ratingsEntryFinder) {
482 this.ratingsEntryFinder = ratingsEntryFinder;
483 }
484
485
490 public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
491 return ratingsStatsLocalService;
492 }
493
494
499 public void setRatingsStatsLocalService(
500 com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
501 this.ratingsStatsLocalService = ratingsStatsLocalService;
502 }
503
504
509 public RatingsStatsPersistence getRatingsStatsPersistence() {
510 return ratingsStatsPersistence;
511 }
512
513
518 public void setRatingsStatsPersistence(
519 RatingsStatsPersistence ratingsStatsPersistence) {
520 this.ratingsStatsPersistence = ratingsStatsPersistence;
521 }
522
523
528 public RatingsStatsFinder getRatingsStatsFinder() {
529 return ratingsStatsFinder;
530 }
531
532
537 public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
538 this.ratingsStatsFinder = ratingsStatsFinder;
539 }
540
541
546 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
547 return counterLocalService;
548 }
549
550
555 public void setCounterLocalService(
556 com.liferay.counter.service.CounterLocalService counterLocalService) {
557 this.counterLocalService = counterLocalService;
558 }
559
560
565 public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
566 return classNameLocalService;
567 }
568
569
574 public void setClassNameLocalService(
575 com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
576 this.classNameLocalService = classNameLocalService;
577 }
578
579
584 public com.liferay.portal.service.ClassNameService getClassNameService() {
585 return classNameService;
586 }
587
588
593 public void setClassNameService(
594 com.liferay.portal.service.ClassNameService classNameService) {
595 this.classNameService = classNameService;
596 }
597
598
603 public ClassNamePersistence getClassNamePersistence() {
604 return classNamePersistence;
605 }
606
607
612 public void setClassNamePersistence(
613 ClassNamePersistence classNamePersistence) {
614 this.classNamePersistence = classNamePersistence;
615 }
616
617
622 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
623 return resourceLocalService;
624 }
625
626
631 public void setResourceLocalService(
632 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
633 this.resourceLocalService = resourceLocalService;
634 }
635
636
641 public com.liferay.portal.service.UserLocalService getUserLocalService() {
642 return userLocalService;
643 }
644
645
650 public void setUserLocalService(
651 com.liferay.portal.service.UserLocalService userLocalService) {
652 this.userLocalService = userLocalService;
653 }
654
655
660 public com.liferay.portal.service.UserService getUserService() {
661 return userService;
662 }
663
664
669 public void setUserService(
670 com.liferay.portal.service.UserService userService) {
671 this.userService = userService;
672 }
673
674
679 public UserPersistence getUserPersistence() {
680 return userPersistence;
681 }
682
683
688 public void setUserPersistence(UserPersistence userPersistence) {
689 this.userPersistence = userPersistence;
690 }
691
692
697 public UserFinder getUserFinder() {
698 return userFinder;
699 }
700
701
706 public void setUserFinder(UserFinder userFinder) {
707 this.userFinder = userFinder;
708 }
709
710
715 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
716 return assetEntryLocalService;
717 }
718
719
724 public void setAssetEntryLocalService(
725 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
726 this.assetEntryLocalService = assetEntryLocalService;
727 }
728
729
734 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
735 return assetEntryService;
736 }
737
738
743 public void setAssetEntryService(
744 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
745 this.assetEntryService = assetEntryService;
746 }
747
748
753 public AssetEntryPersistence getAssetEntryPersistence() {
754 return assetEntryPersistence;
755 }
756
757
762 public void setAssetEntryPersistence(
763 AssetEntryPersistence assetEntryPersistence) {
764 this.assetEntryPersistence = assetEntryPersistence;
765 }
766
767
772 public AssetEntryFinder getAssetEntryFinder() {
773 return assetEntryFinder;
774 }
775
776
781 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
782 this.assetEntryFinder = assetEntryFinder;
783 }
784
785
790 public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
791 return blogsEntryLocalService;
792 }
793
794
799 public void setBlogsEntryLocalService(
800 com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
801 this.blogsEntryLocalService = blogsEntryLocalService;
802 }
803
804
809 public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
810 return blogsEntryService;
811 }
812
813
818 public void setBlogsEntryService(
819 com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
820 this.blogsEntryService = blogsEntryService;
821 }
822
823
828 public BlogsEntryPersistence getBlogsEntryPersistence() {
829 return blogsEntryPersistence;
830 }
831
832
837 public void setBlogsEntryPersistence(
838 BlogsEntryPersistence blogsEntryPersistence) {
839 this.blogsEntryPersistence = blogsEntryPersistence;
840 }
841
842
847 public BlogsEntryFinder getBlogsEntryFinder() {
848 return blogsEntryFinder;
849 }
850
851
856 public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
857 this.blogsEntryFinder = blogsEntryFinder;
858 }
859
860
865 public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
866 return blogsStatsUserLocalService;
867 }
868
869
874 public void setBlogsStatsUserLocalService(
875 com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
876 this.blogsStatsUserLocalService = blogsStatsUserLocalService;
877 }
878
879
884 public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
885 return blogsStatsUserPersistence;
886 }
887
888
893 public void setBlogsStatsUserPersistence(
894 BlogsStatsUserPersistence blogsStatsUserPersistence) {
895 this.blogsStatsUserPersistence = blogsStatsUserPersistence;
896 }
897
898
903 public BlogsStatsUserFinder getBlogsStatsUserFinder() {
904 return blogsStatsUserFinder;
905 }
906
907
912 public void setBlogsStatsUserFinder(
913 BlogsStatsUserFinder blogsStatsUserFinder) {
914 this.blogsStatsUserFinder = blogsStatsUserFinder;
915 }
916
917
922 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
923 return socialActivityLocalService;
924 }
925
926
931 public void setSocialActivityLocalService(
932 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
933 this.socialActivityLocalService = socialActivityLocalService;
934 }
935
936
941 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
942 return socialActivityService;
943 }
944
945
950 public void setSocialActivityService(
951 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
952 this.socialActivityService = socialActivityService;
953 }
954
955
960 public SocialActivityPersistence getSocialActivityPersistence() {
961 return socialActivityPersistence;
962 }
963
964
969 public void setSocialActivityPersistence(
970 SocialActivityPersistence socialActivityPersistence) {
971 this.socialActivityPersistence = socialActivityPersistence;
972 }
973
974
979 public SocialActivityFinder getSocialActivityFinder() {
980 return socialActivityFinder;
981 }
982
983
988 public void setSocialActivityFinder(
989 SocialActivityFinder socialActivityFinder) {
990 this.socialActivityFinder = socialActivityFinder;
991 }
992
993 public void afterPropertiesSet() {
994 persistedModelLocalServiceRegistry.register("com.liferay.portlet.ratings.model.RatingsEntry",
995 ratingsEntryLocalService);
996 }
997
998 public void destroy() {
999 persistedModelLocalServiceRegistry.unregister(
1000 "com.liferay.portlet.ratings.model.RatingsEntry");
1001 }
1002
1003
1008 @Override
1009 public String getBeanIdentifier() {
1010 return _beanIdentifier;
1011 }
1012
1013
1018 @Override
1019 public void setBeanIdentifier(String beanIdentifier) {
1020 _beanIdentifier = beanIdentifier;
1021 }
1022
1023 protected Class<?> getModelClass() {
1024 return RatingsEntry.class;
1025 }
1026
1027 protected String getModelClassName() {
1028 return RatingsEntry.class.getName();
1029 }
1030
1031
1036 protected void runSQL(String sql) {
1037 try {
1038 DataSource dataSource = ratingsEntryPersistence.getDataSource();
1039
1040 DB db = DBFactoryUtil.getDB();
1041
1042 sql = db.buildSQL(sql);
1043 sql = PortalUtil.transformSQL(sql);
1044
1045 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1046 sql, new int[0]);
1047
1048 sqlUpdate.update();
1049 }
1050 catch (Exception e) {
1051 throw new SystemException(e);
1052 }
1053 }
1054
1055 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryLocalService.class)
1056 protected com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService;
1057 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryService.class)
1058 protected com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService;
1059 @BeanReference(type = RatingsEntryPersistence.class)
1060 protected RatingsEntryPersistence ratingsEntryPersistence;
1061 @BeanReference(type = RatingsEntryFinder.class)
1062 protected RatingsEntryFinder ratingsEntryFinder;
1063 @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1064 protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1065 @BeanReference(type = RatingsStatsPersistence.class)
1066 protected RatingsStatsPersistence ratingsStatsPersistence;
1067 @BeanReference(type = RatingsStatsFinder.class)
1068 protected RatingsStatsFinder ratingsStatsFinder;
1069 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1070 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1071 @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
1072 protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
1073 @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
1074 protected com.liferay.portal.service.ClassNameService classNameService;
1075 @BeanReference(type = ClassNamePersistence.class)
1076 protected ClassNamePersistence classNamePersistence;
1077 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1078 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1079 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1080 protected com.liferay.portal.service.UserLocalService userLocalService;
1081 @BeanReference(type = com.liferay.portal.service.UserService.class)
1082 protected com.liferay.portal.service.UserService userService;
1083 @BeanReference(type = UserPersistence.class)
1084 protected UserPersistence userPersistence;
1085 @BeanReference(type = UserFinder.class)
1086 protected UserFinder userFinder;
1087 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1088 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1089 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1090 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1091 @BeanReference(type = AssetEntryPersistence.class)
1092 protected AssetEntryPersistence assetEntryPersistence;
1093 @BeanReference(type = AssetEntryFinder.class)
1094 protected AssetEntryFinder assetEntryFinder;
1095 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1096 protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1097 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1098 protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1099 @BeanReference(type = BlogsEntryPersistence.class)
1100 protected BlogsEntryPersistence blogsEntryPersistence;
1101 @BeanReference(type = BlogsEntryFinder.class)
1102 protected BlogsEntryFinder blogsEntryFinder;
1103 @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1104 protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1105 @BeanReference(type = BlogsStatsUserPersistence.class)
1106 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1107 @BeanReference(type = BlogsStatsUserFinder.class)
1108 protected BlogsStatsUserFinder blogsStatsUserFinder;
1109 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1110 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1111 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1112 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1113 @BeanReference(type = SocialActivityPersistence.class)
1114 protected SocialActivityPersistence socialActivityPersistence;
1115 @BeanReference(type = SocialActivityFinder.class)
1116 protected SocialActivityFinder socialActivityFinder;
1117 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1118 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1119 private String _beanIdentifier;
1120 }