001
014
015 package com.liferay.portlet.bookmarks.service.base;
016
017 import com.liferay.counter.service.CounterLocalService;
018
019 import com.liferay.portal.kernel.bean.BeanReference;
020 import com.liferay.portal.kernel.bean.IdentifiableBean;
021 import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022 import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
024 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
025 import com.liferay.portal.kernel.exception.PortalException;
026 import com.liferay.portal.kernel.exception.SystemException;
027 import com.liferay.portal.kernel.search.Indexable;
028 import com.liferay.portal.kernel.search.IndexableType;
029 import com.liferay.portal.kernel.util.OrderByComparator;
030 import com.liferay.portal.model.PersistedModel;
031 import com.liferay.portal.service.BaseLocalServiceImpl;
032 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
033 import com.liferay.portal.service.PortletPreferencesLocalService;
034 import com.liferay.portal.service.PortletPreferencesService;
035 import com.liferay.portal.service.ResourceLocalService;
036 import com.liferay.portal.service.SubscriptionLocalService;
037 import com.liferay.portal.service.UserLocalService;
038 import com.liferay.portal.service.UserService;
039 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
040 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
041 import com.liferay.portal.service.persistence.SubscriptionPersistence;
042 import com.liferay.portal.service.persistence.UserFinder;
043 import com.liferay.portal.service.persistence.UserPersistence;
044
045 import com.liferay.portlet.asset.service.AssetEntryLocalService;
046 import com.liferay.portlet.asset.service.AssetEntryService;
047 import com.liferay.portlet.asset.service.AssetLinkLocalService;
048 import com.liferay.portlet.asset.service.AssetTagLocalService;
049 import com.liferay.portlet.asset.service.AssetTagService;
050 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
051 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
052 import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
053 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
054 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
055 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
056 import com.liferay.portlet.bookmarks.model.BookmarksEntry;
057 import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
058 import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
059 import com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService;
060 import com.liferay.portlet.bookmarks.service.BookmarksFolderService;
061 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
062 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
063 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderFinder;
064 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
065 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
066 import com.liferay.portlet.expando.service.ExpandoValueService;
067 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
068 import com.liferay.portlet.social.service.SocialActivityCounterLocalService;
069 import com.liferay.portlet.social.service.SocialActivityLocalService;
070 import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
071 import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
072 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
073 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
074 import com.liferay.portlet.trash.service.TrashEntryLocalService;
075 import com.liferay.portlet.trash.service.TrashEntryService;
076 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
077
078 import java.io.Serializable;
079
080 import java.util.List;
081
082 import javax.sql.DataSource;
083
084
096 public abstract class BookmarksEntryLocalServiceBaseImpl
097 extends BaseLocalServiceImpl implements BookmarksEntryLocalService,
098 IdentifiableBean {
099
104
105
112 @Indexable(type = IndexableType.REINDEX)
113 public BookmarksEntry addBookmarksEntry(BookmarksEntry bookmarksEntry)
114 throws SystemException {
115 bookmarksEntry.setNew(true);
116
117 return bookmarksEntryPersistence.update(bookmarksEntry);
118 }
119
120
126 public BookmarksEntry createBookmarksEntry(long entryId) {
127 return bookmarksEntryPersistence.create(entryId);
128 }
129
130
138 @Indexable(type = IndexableType.DELETE)
139 public BookmarksEntry deleteBookmarksEntry(long entryId)
140 throws PortalException, SystemException {
141 return bookmarksEntryPersistence.remove(entryId);
142 }
143
144
151 @Indexable(type = IndexableType.DELETE)
152 public BookmarksEntry deleteBookmarksEntry(BookmarksEntry bookmarksEntry)
153 throws SystemException {
154 return bookmarksEntryPersistence.remove(bookmarksEntry);
155 }
156
157 public DynamicQuery dynamicQuery() {
158 Class<?> clazz = getClass();
159
160 return DynamicQueryFactoryUtil.forClass(BookmarksEntry.class,
161 clazz.getClassLoader());
162 }
163
164
171 @SuppressWarnings("rawtypes")
172 public List dynamicQuery(DynamicQuery dynamicQuery)
173 throws SystemException {
174 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery);
175 }
176
177
190 @SuppressWarnings("rawtypes")
191 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
192 throws SystemException {
193 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
194 start, end);
195 }
196
197
211 @SuppressWarnings("rawtypes")
212 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
213 OrderByComparator orderByComparator) throws SystemException {
214 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
215 start, end, orderByComparator);
216 }
217
218
225 public long dynamicQueryCount(DynamicQuery dynamicQuery)
226 throws SystemException {
227 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery);
228 }
229
230 public BookmarksEntry fetchBookmarksEntry(long entryId)
231 throws SystemException {
232 return bookmarksEntryPersistence.fetchByPrimaryKey(entryId);
233 }
234
235
243 public BookmarksEntry getBookmarksEntry(long entryId)
244 throws PortalException, SystemException {
245 return bookmarksEntryPersistence.findByPrimaryKey(entryId);
246 }
247
248 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
249 throws PortalException, SystemException {
250 return bookmarksEntryPersistence.findByPrimaryKey(primaryKeyObj);
251 }
252
253
262 public BookmarksEntry getBookmarksEntryByUuidAndGroupId(String uuid,
263 long groupId) throws PortalException, SystemException {
264 return bookmarksEntryPersistence.findByUUID_G(uuid, groupId);
265 }
266
267
279 public List<BookmarksEntry> getBookmarksEntries(int start, int end)
280 throws SystemException {
281 return bookmarksEntryPersistence.findAll(start, end);
282 }
283
284
290 public int getBookmarksEntriesCount() throws SystemException {
291 return bookmarksEntryPersistence.countAll();
292 }
293
294
301 @Indexable(type = IndexableType.REINDEX)
302 public BookmarksEntry updateBookmarksEntry(BookmarksEntry bookmarksEntry)
303 throws SystemException {
304 return bookmarksEntryPersistence.update(bookmarksEntry);
305 }
306
307
312 public BookmarksEntryLocalService getBookmarksEntryLocalService() {
313 return bookmarksEntryLocalService;
314 }
315
316
321 public void setBookmarksEntryLocalService(
322 BookmarksEntryLocalService bookmarksEntryLocalService) {
323 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
324 }
325
326
331 public BookmarksEntryService getBookmarksEntryService() {
332 return bookmarksEntryService;
333 }
334
335
340 public void setBookmarksEntryService(
341 BookmarksEntryService bookmarksEntryService) {
342 this.bookmarksEntryService = bookmarksEntryService;
343 }
344
345
350 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
351 return bookmarksEntryPersistence;
352 }
353
354
359 public void setBookmarksEntryPersistence(
360 BookmarksEntryPersistence bookmarksEntryPersistence) {
361 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
362 }
363
364
369 public BookmarksEntryFinder getBookmarksEntryFinder() {
370 return bookmarksEntryFinder;
371 }
372
373
378 public void setBookmarksEntryFinder(
379 BookmarksEntryFinder bookmarksEntryFinder) {
380 this.bookmarksEntryFinder = bookmarksEntryFinder;
381 }
382
383
388 public BookmarksFolderLocalService getBookmarksFolderLocalService() {
389 return bookmarksFolderLocalService;
390 }
391
392
397 public void setBookmarksFolderLocalService(
398 BookmarksFolderLocalService bookmarksFolderLocalService) {
399 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
400 }
401
402
407 public BookmarksFolderService getBookmarksFolderService() {
408 return bookmarksFolderService;
409 }
410
411
416 public void setBookmarksFolderService(
417 BookmarksFolderService bookmarksFolderService) {
418 this.bookmarksFolderService = bookmarksFolderService;
419 }
420
421
426 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
427 return bookmarksFolderPersistence;
428 }
429
430
435 public void setBookmarksFolderPersistence(
436 BookmarksFolderPersistence bookmarksFolderPersistence) {
437 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
438 }
439
440
445 public BookmarksFolderFinder getBookmarksFolderFinder() {
446 return bookmarksFolderFinder;
447 }
448
449
454 public void setBookmarksFolderFinder(
455 BookmarksFolderFinder bookmarksFolderFinder) {
456 this.bookmarksFolderFinder = bookmarksFolderFinder;
457 }
458
459
464 public CounterLocalService getCounterLocalService() {
465 return counterLocalService;
466 }
467
468
473 public void setCounterLocalService(CounterLocalService counterLocalService) {
474 this.counterLocalService = counterLocalService;
475 }
476
477
482 public PortletPreferencesLocalService getPortletPreferencesLocalService() {
483 return portletPreferencesLocalService;
484 }
485
486
491 public void setPortletPreferencesLocalService(
492 PortletPreferencesLocalService portletPreferencesLocalService) {
493 this.portletPreferencesLocalService = portletPreferencesLocalService;
494 }
495
496
501 public PortletPreferencesService getPortletPreferencesService() {
502 return portletPreferencesService;
503 }
504
505
510 public void setPortletPreferencesService(
511 PortletPreferencesService portletPreferencesService) {
512 this.portletPreferencesService = portletPreferencesService;
513 }
514
515
520 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
521 return portletPreferencesPersistence;
522 }
523
524
529 public void setPortletPreferencesPersistence(
530 PortletPreferencesPersistence portletPreferencesPersistence) {
531 this.portletPreferencesPersistence = portletPreferencesPersistence;
532 }
533
534
539 public PortletPreferencesFinder getPortletPreferencesFinder() {
540 return portletPreferencesFinder;
541 }
542
543
548 public void setPortletPreferencesFinder(
549 PortletPreferencesFinder portletPreferencesFinder) {
550 this.portletPreferencesFinder = portletPreferencesFinder;
551 }
552
553
558 public ResourceLocalService getResourceLocalService() {
559 return resourceLocalService;
560 }
561
562
567 public void setResourceLocalService(
568 ResourceLocalService resourceLocalService) {
569 this.resourceLocalService = resourceLocalService;
570 }
571
572
577 public SubscriptionLocalService getSubscriptionLocalService() {
578 return subscriptionLocalService;
579 }
580
581
586 public void setSubscriptionLocalService(
587 SubscriptionLocalService subscriptionLocalService) {
588 this.subscriptionLocalService = subscriptionLocalService;
589 }
590
591
596 public SubscriptionPersistence getSubscriptionPersistence() {
597 return subscriptionPersistence;
598 }
599
600
605 public void setSubscriptionPersistence(
606 SubscriptionPersistence subscriptionPersistence) {
607 this.subscriptionPersistence = subscriptionPersistence;
608 }
609
610
615 public UserLocalService getUserLocalService() {
616 return userLocalService;
617 }
618
619
624 public void setUserLocalService(UserLocalService userLocalService) {
625 this.userLocalService = userLocalService;
626 }
627
628
633 public UserService getUserService() {
634 return userService;
635 }
636
637
642 public void setUserService(UserService userService) {
643 this.userService = userService;
644 }
645
646
651 public UserPersistence getUserPersistence() {
652 return userPersistence;
653 }
654
655
660 public void setUserPersistence(UserPersistence userPersistence) {
661 this.userPersistence = userPersistence;
662 }
663
664
669 public UserFinder getUserFinder() {
670 return userFinder;
671 }
672
673
678 public void setUserFinder(UserFinder userFinder) {
679 this.userFinder = userFinder;
680 }
681
682
687 public AssetEntryLocalService getAssetEntryLocalService() {
688 return assetEntryLocalService;
689 }
690
691
696 public void setAssetEntryLocalService(
697 AssetEntryLocalService assetEntryLocalService) {
698 this.assetEntryLocalService = assetEntryLocalService;
699 }
700
701
706 public AssetEntryService getAssetEntryService() {
707 return assetEntryService;
708 }
709
710
715 public void setAssetEntryService(AssetEntryService assetEntryService) {
716 this.assetEntryService = assetEntryService;
717 }
718
719
724 public AssetEntryPersistence getAssetEntryPersistence() {
725 return assetEntryPersistence;
726 }
727
728
733 public void setAssetEntryPersistence(
734 AssetEntryPersistence assetEntryPersistence) {
735 this.assetEntryPersistence = assetEntryPersistence;
736 }
737
738
743 public AssetEntryFinder getAssetEntryFinder() {
744 return assetEntryFinder;
745 }
746
747
752 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
753 this.assetEntryFinder = assetEntryFinder;
754 }
755
756
761 public AssetLinkLocalService getAssetLinkLocalService() {
762 return assetLinkLocalService;
763 }
764
765
770 public void setAssetLinkLocalService(
771 AssetLinkLocalService assetLinkLocalService) {
772 this.assetLinkLocalService = assetLinkLocalService;
773 }
774
775
780 public AssetLinkPersistence getAssetLinkPersistence() {
781 return assetLinkPersistence;
782 }
783
784
789 public void setAssetLinkPersistence(
790 AssetLinkPersistence assetLinkPersistence) {
791 this.assetLinkPersistence = assetLinkPersistence;
792 }
793
794
799 public AssetLinkFinder getAssetLinkFinder() {
800 return assetLinkFinder;
801 }
802
803
808 public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
809 this.assetLinkFinder = assetLinkFinder;
810 }
811
812
817 public AssetTagLocalService getAssetTagLocalService() {
818 return assetTagLocalService;
819 }
820
821
826 public void setAssetTagLocalService(
827 AssetTagLocalService assetTagLocalService) {
828 this.assetTagLocalService = assetTagLocalService;
829 }
830
831
836 public AssetTagService getAssetTagService() {
837 return assetTagService;
838 }
839
840
845 public void setAssetTagService(AssetTagService assetTagService) {
846 this.assetTagService = assetTagService;
847 }
848
849
854 public AssetTagPersistence getAssetTagPersistence() {
855 return assetTagPersistence;
856 }
857
858
863 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
864 this.assetTagPersistence = assetTagPersistence;
865 }
866
867
872 public AssetTagFinder getAssetTagFinder() {
873 return assetTagFinder;
874 }
875
876
881 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
882 this.assetTagFinder = assetTagFinder;
883 }
884
885
890 public ExpandoValueLocalService getExpandoValueLocalService() {
891 return expandoValueLocalService;
892 }
893
894
899 public void setExpandoValueLocalService(
900 ExpandoValueLocalService expandoValueLocalService) {
901 this.expandoValueLocalService = expandoValueLocalService;
902 }
903
904
909 public ExpandoValueService getExpandoValueService() {
910 return expandoValueService;
911 }
912
913
918 public void setExpandoValueService(ExpandoValueService expandoValueService) {
919 this.expandoValueService = expandoValueService;
920 }
921
922
927 public ExpandoValuePersistence getExpandoValuePersistence() {
928 return expandoValuePersistence;
929 }
930
931
936 public void setExpandoValuePersistence(
937 ExpandoValuePersistence expandoValuePersistence) {
938 this.expandoValuePersistence = expandoValuePersistence;
939 }
940
941
946 public SocialActivityLocalService getSocialActivityLocalService() {
947 return socialActivityLocalService;
948 }
949
950
955 public void setSocialActivityLocalService(
956 SocialActivityLocalService socialActivityLocalService) {
957 this.socialActivityLocalService = socialActivityLocalService;
958 }
959
960
965 public SocialActivityPersistence getSocialActivityPersistence() {
966 return socialActivityPersistence;
967 }
968
969
974 public void setSocialActivityPersistence(
975 SocialActivityPersistence socialActivityPersistence) {
976 this.socialActivityPersistence = socialActivityPersistence;
977 }
978
979
984 public SocialActivityFinder getSocialActivityFinder() {
985 return socialActivityFinder;
986 }
987
988
993 public void setSocialActivityFinder(
994 SocialActivityFinder socialActivityFinder) {
995 this.socialActivityFinder = socialActivityFinder;
996 }
997
998
1003 public SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1004 return socialActivityCounterLocalService;
1005 }
1006
1007
1012 public void setSocialActivityCounterLocalService(
1013 SocialActivityCounterLocalService socialActivityCounterLocalService) {
1014 this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1015 }
1016
1017
1022 public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1023 return socialActivityCounterPersistence;
1024 }
1025
1026
1031 public void setSocialActivityCounterPersistence(
1032 SocialActivityCounterPersistence socialActivityCounterPersistence) {
1033 this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1034 }
1035
1036
1041 public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1042 return socialActivityCounterFinder;
1043 }
1044
1045
1050 public void setSocialActivityCounterFinder(
1051 SocialActivityCounterFinder socialActivityCounterFinder) {
1052 this.socialActivityCounterFinder = socialActivityCounterFinder;
1053 }
1054
1055
1060 public TrashEntryLocalService getTrashEntryLocalService() {
1061 return trashEntryLocalService;
1062 }
1063
1064
1069 public void setTrashEntryLocalService(
1070 TrashEntryLocalService trashEntryLocalService) {
1071 this.trashEntryLocalService = trashEntryLocalService;
1072 }
1073
1074
1079 public TrashEntryService getTrashEntryService() {
1080 return trashEntryService;
1081 }
1082
1083
1088 public void setTrashEntryService(TrashEntryService trashEntryService) {
1089 this.trashEntryService = trashEntryService;
1090 }
1091
1092
1097 public TrashEntryPersistence getTrashEntryPersistence() {
1098 return trashEntryPersistence;
1099 }
1100
1101
1106 public void setTrashEntryPersistence(
1107 TrashEntryPersistence trashEntryPersistence) {
1108 this.trashEntryPersistence = trashEntryPersistence;
1109 }
1110
1111 public void afterPropertiesSet() {
1112 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksEntry",
1113 bookmarksEntryLocalService);
1114 }
1115
1116 public void destroy() {
1117 persistedModelLocalServiceRegistry.unregister(
1118 "com.liferay.portlet.bookmarks.model.BookmarksEntry");
1119 }
1120
1121
1126 public String getBeanIdentifier() {
1127 return _beanIdentifier;
1128 }
1129
1130
1135 public void setBeanIdentifier(String beanIdentifier) {
1136 _beanIdentifier = beanIdentifier;
1137 }
1138
1139 protected Class<?> getModelClass() {
1140 return BookmarksEntry.class;
1141 }
1142
1143 protected String getModelClassName() {
1144 return BookmarksEntry.class.getName();
1145 }
1146
1147
1152 protected void runSQL(String sql) throws SystemException {
1153 try {
1154 DataSource dataSource = bookmarksEntryPersistence.getDataSource();
1155
1156 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1157 sql, new int[0]);
1158
1159 sqlUpdate.update();
1160 }
1161 catch (Exception e) {
1162 throw new SystemException(e);
1163 }
1164 }
1165
1166 @BeanReference(type = BookmarksEntryLocalService.class)
1167 protected BookmarksEntryLocalService bookmarksEntryLocalService;
1168 @BeanReference(type = BookmarksEntryService.class)
1169 protected BookmarksEntryService bookmarksEntryService;
1170 @BeanReference(type = BookmarksEntryPersistence.class)
1171 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1172 @BeanReference(type = BookmarksEntryFinder.class)
1173 protected BookmarksEntryFinder bookmarksEntryFinder;
1174 @BeanReference(type = BookmarksFolderLocalService.class)
1175 protected BookmarksFolderLocalService bookmarksFolderLocalService;
1176 @BeanReference(type = BookmarksFolderService.class)
1177 protected BookmarksFolderService bookmarksFolderService;
1178 @BeanReference(type = BookmarksFolderPersistence.class)
1179 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1180 @BeanReference(type = BookmarksFolderFinder.class)
1181 protected BookmarksFolderFinder bookmarksFolderFinder;
1182 @BeanReference(type = CounterLocalService.class)
1183 protected CounterLocalService counterLocalService;
1184 @BeanReference(type = PortletPreferencesLocalService.class)
1185 protected PortletPreferencesLocalService portletPreferencesLocalService;
1186 @BeanReference(type = PortletPreferencesService.class)
1187 protected PortletPreferencesService portletPreferencesService;
1188 @BeanReference(type = PortletPreferencesPersistence.class)
1189 protected PortletPreferencesPersistence portletPreferencesPersistence;
1190 @BeanReference(type = PortletPreferencesFinder.class)
1191 protected PortletPreferencesFinder portletPreferencesFinder;
1192 @BeanReference(type = ResourceLocalService.class)
1193 protected ResourceLocalService resourceLocalService;
1194 @BeanReference(type = SubscriptionLocalService.class)
1195 protected SubscriptionLocalService subscriptionLocalService;
1196 @BeanReference(type = SubscriptionPersistence.class)
1197 protected SubscriptionPersistence subscriptionPersistence;
1198 @BeanReference(type = UserLocalService.class)
1199 protected UserLocalService userLocalService;
1200 @BeanReference(type = UserService.class)
1201 protected UserService userService;
1202 @BeanReference(type = UserPersistence.class)
1203 protected UserPersistence userPersistence;
1204 @BeanReference(type = UserFinder.class)
1205 protected UserFinder userFinder;
1206 @BeanReference(type = AssetEntryLocalService.class)
1207 protected AssetEntryLocalService assetEntryLocalService;
1208 @BeanReference(type = AssetEntryService.class)
1209 protected AssetEntryService assetEntryService;
1210 @BeanReference(type = AssetEntryPersistence.class)
1211 protected AssetEntryPersistence assetEntryPersistence;
1212 @BeanReference(type = AssetEntryFinder.class)
1213 protected AssetEntryFinder assetEntryFinder;
1214 @BeanReference(type = AssetLinkLocalService.class)
1215 protected AssetLinkLocalService assetLinkLocalService;
1216 @BeanReference(type = AssetLinkPersistence.class)
1217 protected AssetLinkPersistence assetLinkPersistence;
1218 @BeanReference(type = AssetLinkFinder.class)
1219 protected AssetLinkFinder assetLinkFinder;
1220 @BeanReference(type = AssetTagLocalService.class)
1221 protected AssetTagLocalService assetTagLocalService;
1222 @BeanReference(type = AssetTagService.class)
1223 protected AssetTagService assetTagService;
1224 @BeanReference(type = AssetTagPersistence.class)
1225 protected AssetTagPersistence assetTagPersistence;
1226 @BeanReference(type = AssetTagFinder.class)
1227 protected AssetTagFinder assetTagFinder;
1228 @BeanReference(type = ExpandoValueLocalService.class)
1229 protected ExpandoValueLocalService expandoValueLocalService;
1230 @BeanReference(type = ExpandoValueService.class)
1231 protected ExpandoValueService expandoValueService;
1232 @BeanReference(type = ExpandoValuePersistence.class)
1233 protected ExpandoValuePersistence expandoValuePersistence;
1234 @BeanReference(type = SocialActivityLocalService.class)
1235 protected SocialActivityLocalService socialActivityLocalService;
1236 @BeanReference(type = SocialActivityPersistence.class)
1237 protected SocialActivityPersistence socialActivityPersistence;
1238 @BeanReference(type = SocialActivityFinder.class)
1239 protected SocialActivityFinder socialActivityFinder;
1240 @BeanReference(type = SocialActivityCounterLocalService.class)
1241 protected SocialActivityCounterLocalService socialActivityCounterLocalService;
1242 @BeanReference(type = SocialActivityCounterPersistence.class)
1243 protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1244 @BeanReference(type = SocialActivityCounterFinder.class)
1245 protected SocialActivityCounterFinder socialActivityCounterFinder;
1246 @BeanReference(type = TrashEntryLocalService.class)
1247 protected TrashEntryLocalService trashEntryLocalService;
1248 @BeanReference(type = TrashEntryService.class)
1249 protected TrashEntryService trashEntryService;
1250 @BeanReference(type = TrashEntryPersistence.class)
1251 protected TrashEntryPersistence trashEntryPersistence;
1252 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1253 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1254 private String _beanIdentifier;
1255 }