001
014
015 package com.liferay.portlet.bookmarks.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.dao.orm.DynamicQuery;
022 import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023 import com.liferay.portal.kernel.dao.orm.Projection;
024 import com.liferay.portal.kernel.exception.PortalException;
025 import com.liferay.portal.kernel.exception.SystemException;
026 import com.liferay.portal.kernel.search.Indexable;
027 import com.liferay.portal.kernel.search.IndexableType;
028 import com.liferay.portal.kernel.util.OrderByComparator;
029 import com.liferay.portal.model.PersistedModel;
030 import com.liferay.portal.service.BaseLocalServiceImpl;
031 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
032 import com.liferay.portal.service.persistence.GroupFinder;
033 import com.liferay.portal.service.persistence.GroupPersistence;
034 import com.liferay.portal.service.persistence.SubscriptionPersistence;
035 import com.liferay.portal.service.persistence.UserFinder;
036 import com.liferay.portal.service.persistence.UserPersistence;
037
038 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
039 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
040 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
041 import com.liferay.portlet.bookmarks.model.BookmarksFolder;
042 import com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService;
043 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
044 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
045 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderFinder;
046 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
047 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
048 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
049 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
050 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
051 import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
052
053 import java.io.Serializable;
054
055 import java.util.List;
056
057 import javax.sql.DataSource;
058
059
071 public abstract class BookmarksFolderLocalServiceBaseImpl
072 extends BaseLocalServiceImpl implements BookmarksFolderLocalService,
073 IdentifiableBean {
074
079
080
087 @Indexable(type = IndexableType.REINDEX)
088 @Override
089 public BookmarksFolder addBookmarksFolder(BookmarksFolder bookmarksFolder)
090 throws SystemException {
091 bookmarksFolder.setNew(true);
092
093 return bookmarksFolderPersistence.update(bookmarksFolder);
094 }
095
096
102 @Override
103 public BookmarksFolder createBookmarksFolder(long folderId) {
104 return bookmarksFolderPersistence.create(folderId);
105 }
106
107
115 @Indexable(type = IndexableType.DELETE)
116 @Override
117 public BookmarksFolder deleteBookmarksFolder(long folderId)
118 throws PortalException, SystemException {
119 return bookmarksFolderPersistence.remove(folderId);
120 }
121
122
129 @Indexable(type = IndexableType.DELETE)
130 @Override
131 public BookmarksFolder deleteBookmarksFolder(
132 BookmarksFolder bookmarksFolder) throws SystemException {
133 return bookmarksFolderPersistence.remove(bookmarksFolder);
134 }
135
136 @Override
137 public DynamicQuery dynamicQuery() {
138 Class<?> clazz = getClass();
139
140 return DynamicQueryFactoryUtil.forClass(BookmarksFolder.class,
141 clazz.getClassLoader());
142 }
143
144
151 @Override
152 @SuppressWarnings("rawtypes")
153 public List dynamicQuery(DynamicQuery dynamicQuery)
154 throws SystemException {
155 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery);
156 }
157
158
171 @Override
172 @SuppressWarnings("rawtypes")
173 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
174 throws SystemException {
175 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
176 start, end);
177 }
178
179
193 @Override
194 @SuppressWarnings("rawtypes")
195 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
196 OrderByComparator orderByComparator) throws SystemException {
197 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
198 start, end, orderByComparator);
199 }
200
201
208 @Override
209 public long dynamicQueryCount(DynamicQuery dynamicQuery)
210 throws SystemException {
211 return bookmarksFolderPersistence.countWithDynamicQuery(dynamicQuery);
212 }
213
214
222 @Override
223 public long dynamicQueryCount(DynamicQuery dynamicQuery,
224 Projection projection) throws SystemException {
225 return bookmarksFolderPersistence.countWithDynamicQuery(dynamicQuery,
226 projection);
227 }
228
229 @Override
230 public BookmarksFolder fetchBookmarksFolder(long folderId)
231 throws SystemException {
232 return bookmarksFolderPersistence.fetchByPrimaryKey(folderId);
233 }
234
235
243 @Override
244 public BookmarksFolder fetchBookmarksFolderByUuidAndCompanyId(String uuid,
245 long companyId) throws SystemException {
246 return bookmarksFolderPersistence.fetchByUuid_C_First(uuid, companyId,
247 null);
248 }
249
250
258 @Override
259 public BookmarksFolder fetchBookmarksFolderByUuidAndGroupId(String uuid,
260 long groupId) throws SystemException {
261 return bookmarksFolderPersistence.fetchByUUID_G(uuid, groupId);
262 }
263
264
272 @Override
273 public BookmarksFolder getBookmarksFolder(long folderId)
274 throws PortalException, SystemException {
275 return bookmarksFolderPersistence.findByPrimaryKey(folderId);
276 }
277
278 @Override
279 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
280 throws PortalException, SystemException {
281 return bookmarksFolderPersistence.findByPrimaryKey(primaryKeyObj);
282 }
283
284
293 @Override
294 public BookmarksFolder getBookmarksFolderByUuidAndCompanyId(String uuid,
295 long companyId) throws PortalException, SystemException {
296 return bookmarksFolderPersistence.findByUuid_C_First(uuid, companyId,
297 null);
298 }
299
300
309 @Override
310 public BookmarksFolder getBookmarksFolderByUuidAndGroupId(String uuid,
311 long groupId) throws PortalException, SystemException {
312 return bookmarksFolderPersistence.findByUUID_G(uuid, groupId);
313 }
314
315
327 @Override
328 public List<BookmarksFolder> getBookmarksFolders(int start, int end)
329 throws SystemException {
330 return bookmarksFolderPersistence.findAll(start, end);
331 }
332
333
339 @Override
340 public int getBookmarksFoldersCount() throws SystemException {
341 return bookmarksFolderPersistence.countAll();
342 }
343
344
351 @Indexable(type = IndexableType.REINDEX)
352 @Override
353 public BookmarksFolder updateBookmarksFolder(
354 BookmarksFolder bookmarksFolder) throws SystemException {
355 return bookmarksFolderPersistence.update(bookmarksFolder);
356 }
357
358
363 public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
364 return bookmarksEntryLocalService;
365 }
366
367
372 public void setBookmarksEntryLocalService(
373 com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
374 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
375 }
376
377
382 public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
383 return bookmarksEntryService;
384 }
385
386
391 public void setBookmarksEntryService(
392 com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
393 this.bookmarksEntryService = bookmarksEntryService;
394 }
395
396
401 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
402 return bookmarksEntryPersistence;
403 }
404
405
410 public void setBookmarksEntryPersistence(
411 BookmarksEntryPersistence bookmarksEntryPersistence) {
412 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
413 }
414
415
420 public BookmarksEntryFinder getBookmarksEntryFinder() {
421 return bookmarksEntryFinder;
422 }
423
424
429 public void setBookmarksEntryFinder(
430 BookmarksEntryFinder bookmarksEntryFinder) {
431 this.bookmarksEntryFinder = bookmarksEntryFinder;
432 }
433
434
439 public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
440 return bookmarksFolderLocalService;
441 }
442
443
448 public void setBookmarksFolderLocalService(
449 com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
450 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
451 }
452
453
458 public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
459 return bookmarksFolderService;
460 }
461
462
467 public void setBookmarksFolderService(
468 com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
469 this.bookmarksFolderService = bookmarksFolderService;
470 }
471
472
477 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
478 return bookmarksFolderPersistence;
479 }
480
481
486 public void setBookmarksFolderPersistence(
487 BookmarksFolderPersistence bookmarksFolderPersistence) {
488 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
489 }
490
491
496 public BookmarksFolderFinder getBookmarksFolderFinder() {
497 return bookmarksFolderFinder;
498 }
499
500
505 public void setBookmarksFolderFinder(
506 BookmarksFolderFinder bookmarksFolderFinder) {
507 this.bookmarksFolderFinder = bookmarksFolderFinder;
508 }
509
510
515 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
516 return counterLocalService;
517 }
518
519
524 public void setCounterLocalService(
525 com.liferay.counter.service.CounterLocalService counterLocalService) {
526 this.counterLocalService = counterLocalService;
527 }
528
529
534 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
535 return groupLocalService;
536 }
537
538
543 public void setGroupLocalService(
544 com.liferay.portal.service.GroupLocalService groupLocalService) {
545 this.groupLocalService = groupLocalService;
546 }
547
548
553 public com.liferay.portal.service.GroupService getGroupService() {
554 return groupService;
555 }
556
557
562 public void setGroupService(
563 com.liferay.portal.service.GroupService groupService) {
564 this.groupService = groupService;
565 }
566
567
572 public GroupPersistence getGroupPersistence() {
573 return groupPersistence;
574 }
575
576
581 public void setGroupPersistence(GroupPersistence groupPersistence) {
582 this.groupPersistence = groupPersistence;
583 }
584
585
590 public GroupFinder getGroupFinder() {
591 return groupFinder;
592 }
593
594
599 public void setGroupFinder(GroupFinder groupFinder) {
600 this.groupFinder = groupFinder;
601 }
602
603
608 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
609 return resourceLocalService;
610 }
611
612
617 public void setResourceLocalService(
618 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
619 this.resourceLocalService = resourceLocalService;
620 }
621
622
627 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
628 return subscriptionLocalService;
629 }
630
631
636 public void setSubscriptionLocalService(
637 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
638 this.subscriptionLocalService = subscriptionLocalService;
639 }
640
641
646 public SubscriptionPersistence getSubscriptionPersistence() {
647 return subscriptionPersistence;
648 }
649
650
655 public void setSubscriptionPersistence(
656 SubscriptionPersistence subscriptionPersistence) {
657 this.subscriptionPersistence = subscriptionPersistence;
658 }
659
660
665 public com.liferay.portal.service.UserLocalService getUserLocalService() {
666 return userLocalService;
667 }
668
669
674 public void setUserLocalService(
675 com.liferay.portal.service.UserLocalService userLocalService) {
676 this.userLocalService = userLocalService;
677 }
678
679
684 public com.liferay.portal.service.UserService getUserService() {
685 return userService;
686 }
687
688
693 public void setUserService(
694 com.liferay.portal.service.UserService userService) {
695 this.userService = userService;
696 }
697
698
703 public UserPersistence getUserPersistence() {
704 return userPersistence;
705 }
706
707
712 public void setUserPersistence(UserPersistence userPersistence) {
713 this.userPersistence = userPersistence;
714 }
715
716
721 public UserFinder getUserFinder() {
722 return userFinder;
723 }
724
725
730 public void setUserFinder(UserFinder userFinder) {
731 this.userFinder = userFinder;
732 }
733
734
739 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
740 return assetEntryLocalService;
741 }
742
743
748 public void setAssetEntryLocalService(
749 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
750 this.assetEntryLocalService = assetEntryLocalService;
751 }
752
753
758 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
759 return assetEntryService;
760 }
761
762
767 public void setAssetEntryService(
768 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
769 this.assetEntryService = assetEntryService;
770 }
771
772
777 public AssetEntryPersistence getAssetEntryPersistence() {
778 return assetEntryPersistence;
779 }
780
781
786 public void setAssetEntryPersistence(
787 AssetEntryPersistence assetEntryPersistence) {
788 this.assetEntryPersistence = assetEntryPersistence;
789 }
790
791
796 public AssetEntryFinder getAssetEntryFinder() {
797 return assetEntryFinder;
798 }
799
800
805 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
806 this.assetEntryFinder = assetEntryFinder;
807 }
808
809
814 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
815 return assetLinkLocalService;
816 }
817
818
823 public void setAssetLinkLocalService(
824 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
825 this.assetLinkLocalService = assetLinkLocalService;
826 }
827
828
833 public AssetLinkPersistence getAssetLinkPersistence() {
834 return assetLinkPersistence;
835 }
836
837
842 public void setAssetLinkPersistence(
843 AssetLinkPersistence assetLinkPersistence) {
844 this.assetLinkPersistence = assetLinkPersistence;
845 }
846
847
852 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
853 return expandoRowLocalService;
854 }
855
856
861 public void setExpandoRowLocalService(
862 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
863 this.expandoRowLocalService = expandoRowLocalService;
864 }
865
866
871 public ExpandoRowPersistence getExpandoRowPersistence() {
872 return expandoRowPersistence;
873 }
874
875
880 public void setExpandoRowPersistence(
881 ExpandoRowPersistence expandoRowPersistence) {
882 this.expandoRowPersistence = expandoRowPersistence;
883 }
884
885
890 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
891 return socialActivityLocalService;
892 }
893
894
899 public void setSocialActivityLocalService(
900 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
901 this.socialActivityLocalService = socialActivityLocalService;
902 }
903
904
909 public SocialActivityPersistence getSocialActivityPersistence() {
910 return socialActivityPersistence;
911 }
912
913
918 public void setSocialActivityPersistence(
919 SocialActivityPersistence socialActivityPersistence) {
920 this.socialActivityPersistence = socialActivityPersistence;
921 }
922
923
928 public SocialActivityFinder getSocialActivityFinder() {
929 return socialActivityFinder;
930 }
931
932
937 public void setSocialActivityFinder(
938 SocialActivityFinder socialActivityFinder) {
939 this.socialActivityFinder = socialActivityFinder;
940 }
941
942
947 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
948 return trashEntryLocalService;
949 }
950
951
956 public void setTrashEntryLocalService(
957 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
958 this.trashEntryLocalService = trashEntryLocalService;
959 }
960
961
966 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
967 return trashEntryService;
968 }
969
970
975 public void setTrashEntryService(
976 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
977 this.trashEntryService = trashEntryService;
978 }
979
980
985 public TrashEntryPersistence getTrashEntryPersistence() {
986 return trashEntryPersistence;
987 }
988
989
994 public void setTrashEntryPersistence(
995 TrashEntryPersistence trashEntryPersistence) {
996 this.trashEntryPersistence = trashEntryPersistence;
997 }
998
999
1004 public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
1005 return trashVersionLocalService;
1006 }
1007
1008
1013 public void setTrashVersionLocalService(
1014 com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
1015 this.trashVersionLocalService = trashVersionLocalService;
1016 }
1017
1018
1023 public TrashVersionPersistence getTrashVersionPersistence() {
1024 return trashVersionPersistence;
1025 }
1026
1027
1032 public void setTrashVersionPersistence(
1033 TrashVersionPersistence trashVersionPersistence) {
1034 this.trashVersionPersistence = trashVersionPersistence;
1035 }
1036
1037 public void afterPropertiesSet() {
1038 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksFolder",
1039 bookmarksFolderLocalService);
1040 }
1041
1042 public void destroy() {
1043 persistedModelLocalServiceRegistry.unregister(
1044 "com.liferay.portlet.bookmarks.model.BookmarksFolder");
1045 }
1046
1047
1052 @Override
1053 public String getBeanIdentifier() {
1054 return _beanIdentifier;
1055 }
1056
1057
1062 @Override
1063 public void setBeanIdentifier(String beanIdentifier) {
1064 _beanIdentifier = beanIdentifier;
1065 }
1066
1067 protected Class<?> getModelClass() {
1068 return BookmarksFolder.class;
1069 }
1070
1071 protected String getModelClassName() {
1072 return BookmarksFolder.class.getName();
1073 }
1074
1075
1080 protected void runSQL(String sql) throws SystemException {
1081 try {
1082 DataSource dataSource = bookmarksFolderPersistence.getDataSource();
1083
1084 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1085 sql, new int[0]);
1086
1087 sqlUpdate.update();
1088 }
1089 catch (Exception e) {
1090 throw new SystemException(e);
1091 }
1092 }
1093
1094 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.class)
1095 protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
1096 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
1097 protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
1098 @BeanReference(type = BookmarksEntryPersistence.class)
1099 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1100 @BeanReference(type = BookmarksEntryFinder.class)
1101 protected BookmarksEntryFinder bookmarksEntryFinder;
1102 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
1103 protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
1104 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
1105 protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
1106 @BeanReference(type = BookmarksFolderPersistence.class)
1107 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1108 @BeanReference(type = BookmarksFolderFinder.class)
1109 protected BookmarksFolderFinder bookmarksFolderFinder;
1110 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1111 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1112 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1113 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1114 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1115 protected com.liferay.portal.service.GroupService groupService;
1116 @BeanReference(type = GroupPersistence.class)
1117 protected GroupPersistence groupPersistence;
1118 @BeanReference(type = GroupFinder.class)
1119 protected GroupFinder groupFinder;
1120 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1121 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1122 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1123 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1124 @BeanReference(type = SubscriptionPersistence.class)
1125 protected SubscriptionPersistence subscriptionPersistence;
1126 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1127 protected com.liferay.portal.service.UserLocalService userLocalService;
1128 @BeanReference(type = com.liferay.portal.service.UserService.class)
1129 protected com.liferay.portal.service.UserService userService;
1130 @BeanReference(type = UserPersistence.class)
1131 protected UserPersistence userPersistence;
1132 @BeanReference(type = UserFinder.class)
1133 protected UserFinder userFinder;
1134 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1135 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1136 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1137 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1138 @BeanReference(type = AssetEntryPersistence.class)
1139 protected AssetEntryPersistence assetEntryPersistence;
1140 @BeanReference(type = AssetEntryFinder.class)
1141 protected AssetEntryFinder assetEntryFinder;
1142 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1143 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1144 @BeanReference(type = AssetLinkPersistence.class)
1145 protected AssetLinkPersistence assetLinkPersistence;
1146 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1147 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1148 @BeanReference(type = ExpandoRowPersistence.class)
1149 protected ExpandoRowPersistence expandoRowPersistence;
1150 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1151 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1152 @BeanReference(type = SocialActivityPersistence.class)
1153 protected SocialActivityPersistence socialActivityPersistence;
1154 @BeanReference(type = SocialActivityFinder.class)
1155 protected SocialActivityFinder socialActivityFinder;
1156 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1157 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1158 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1159 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1160 @BeanReference(type = TrashEntryPersistence.class)
1161 protected TrashEntryPersistence trashEntryPersistence;
1162 @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
1163 protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
1164 @BeanReference(type = TrashVersionPersistence.class)
1165 protected TrashVersionPersistence trashVersionPersistence;
1166 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1167 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1168 private String _beanIdentifier;
1169 }