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.GroupLocalService;
033 import com.liferay.portal.service.GroupService;
034 import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
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.GroupFinder;
040 import com.liferay.portal.service.persistence.GroupPersistence;
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.persistence.AssetEntryFinder;
049 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
050 import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
051 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
052 import com.liferay.portlet.bookmarks.model.BookmarksFolder;
053 import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
054 import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
055 import com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService;
056 import com.liferay.portlet.bookmarks.service.BookmarksFolderService;
057 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
058 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
059 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderFinder;
060 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
061 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
062 import com.liferay.portlet.expando.service.ExpandoValueService;
063 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
064 import com.liferay.portlet.social.service.SocialActivityCounterLocalService;
065 import com.liferay.portlet.social.service.SocialActivityLocalService;
066 import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
067 import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
068 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
069 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
070 import com.liferay.portlet.trash.service.TrashEntryLocalService;
071 import com.liferay.portlet.trash.service.TrashEntryService;
072 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
073
074 import java.io.Serializable;
075
076 import java.util.List;
077
078 import javax.sql.DataSource;
079
080
092 public abstract class BookmarksFolderLocalServiceBaseImpl
093 extends BaseLocalServiceImpl implements BookmarksFolderLocalService,
094 IdentifiableBean {
095
100
101
108 @Indexable(type = IndexableType.REINDEX)
109 public BookmarksFolder addBookmarksFolder(BookmarksFolder bookmarksFolder)
110 throws SystemException {
111 bookmarksFolder.setNew(true);
112
113 return bookmarksFolderPersistence.update(bookmarksFolder);
114 }
115
116
122 public BookmarksFolder createBookmarksFolder(long folderId) {
123 return bookmarksFolderPersistence.create(folderId);
124 }
125
126
134 @Indexable(type = IndexableType.DELETE)
135 public BookmarksFolder deleteBookmarksFolder(long folderId)
136 throws PortalException, SystemException {
137 return bookmarksFolderPersistence.remove(folderId);
138 }
139
140
147 @Indexable(type = IndexableType.DELETE)
148 public BookmarksFolder deleteBookmarksFolder(
149 BookmarksFolder bookmarksFolder) throws SystemException {
150 return bookmarksFolderPersistence.remove(bookmarksFolder);
151 }
152
153 public DynamicQuery dynamicQuery() {
154 Class<?> clazz = getClass();
155
156 return DynamicQueryFactoryUtil.forClass(BookmarksFolder.class,
157 clazz.getClassLoader());
158 }
159
160
167 @SuppressWarnings("rawtypes")
168 public List dynamicQuery(DynamicQuery dynamicQuery)
169 throws SystemException {
170 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery);
171 }
172
173
186 @SuppressWarnings("rawtypes")
187 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
188 throws SystemException {
189 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
190 start, end);
191 }
192
193
207 @SuppressWarnings("rawtypes")
208 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
209 OrderByComparator orderByComparator) throws SystemException {
210 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
211 start, end, orderByComparator);
212 }
213
214
221 public long dynamicQueryCount(DynamicQuery dynamicQuery)
222 throws SystemException {
223 return bookmarksFolderPersistence.countWithDynamicQuery(dynamicQuery);
224 }
225
226 public BookmarksFolder fetchBookmarksFolder(long folderId)
227 throws SystemException {
228 return bookmarksFolderPersistence.fetchByPrimaryKey(folderId);
229 }
230
231
239 public BookmarksFolder getBookmarksFolder(long folderId)
240 throws PortalException, SystemException {
241 return bookmarksFolderPersistence.findByPrimaryKey(folderId);
242 }
243
244 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
245 throws PortalException, SystemException {
246 return bookmarksFolderPersistence.findByPrimaryKey(primaryKeyObj);
247 }
248
249
258 public BookmarksFolder getBookmarksFolderByUuidAndGroupId(String uuid,
259 long groupId) throws PortalException, SystemException {
260 return bookmarksFolderPersistence.findByUUID_G(uuid, groupId);
261 }
262
263
275 public List<BookmarksFolder> getBookmarksFolders(int start, int end)
276 throws SystemException {
277 return bookmarksFolderPersistence.findAll(start, end);
278 }
279
280
286 public int getBookmarksFoldersCount() throws SystemException {
287 return bookmarksFolderPersistence.countAll();
288 }
289
290
297 @Indexable(type = IndexableType.REINDEX)
298 public BookmarksFolder updateBookmarksFolder(
299 BookmarksFolder bookmarksFolder) throws SystemException {
300 return bookmarksFolderPersistence.update(bookmarksFolder);
301 }
302
303
308 public BookmarksEntryLocalService getBookmarksEntryLocalService() {
309 return bookmarksEntryLocalService;
310 }
311
312
317 public void setBookmarksEntryLocalService(
318 BookmarksEntryLocalService bookmarksEntryLocalService) {
319 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
320 }
321
322
327 public BookmarksEntryService getBookmarksEntryService() {
328 return bookmarksEntryService;
329 }
330
331
336 public void setBookmarksEntryService(
337 BookmarksEntryService bookmarksEntryService) {
338 this.bookmarksEntryService = bookmarksEntryService;
339 }
340
341
346 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
347 return bookmarksEntryPersistence;
348 }
349
350
355 public void setBookmarksEntryPersistence(
356 BookmarksEntryPersistence bookmarksEntryPersistence) {
357 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
358 }
359
360
365 public BookmarksEntryFinder getBookmarksEntryFinder() {
366 return bookmarksEntryFinder;
367 }
368
369
374 public void setBookmarksEntryFinder(
375 BookmarksEntryFinder bookmarksEntryFinder) {
376 this.bookmarksEntryFinder = bookmarksEntryFinder;
377 }
378
379
384 public BookmarksFolderLocalService getBookmarksFolderLocalService() {
385 return bookmarksFolderLocalService;
386 }
387
388
393 public void setBookmarksFolderLocalService(
394 BookmarksFolderLocalService bookmarksFolderLocalService) {
395 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
396 }
397
398
403 public BookmarksFolderService getBookmarksFolderService() {
404 return bookmarksFolderService;
405 }
406
407
412 public void setBookmarksFolderService(
413 BookmarksFolderService bookmarksFolderService) {
414 this.bookmarksFolderService = bookmarksFolderService;
415 }
416
417
422 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
423 return bookmarksFolderPersistence;
424 }
425
426
431 public void setBookmarksFolderPersistence(
432 BookmarksFolderPersistence bookmarksFolderPersistence) {
433 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
434 }
435
436
441 public BookmarksFolderFinder getBookmarksFolderFinder() {
442 return bookmarksFolderFinder;
443 }
444
445
450 public void setBookmarksFolderFinder(
451 BookmarksFolderFinder bookmarksFolderFinder) {
452 this.bookmarksFolderFinder = bookmarksFolderFinder;
453 }
454
455
460 public CounterLocalService getCounterLocalService() {
461 return counterLocalService;
462 }
463
464
469 public void setCounterLocalService(CounterLocalService counterLocalService) {
470 this.counterLocalService = counterLocalService;
471 }
472
473
478 public GroupLocalService getGroupLocalService() {
479 return groupLocalService;
480 }
481
482
487 public void setGroupLocalService(GroupLocalService groupLocalService) {
488 this.groupLocalService = groupLocalService;
489 }
490
491
496 public GroupService getGroupService() {
497 return groupService;
498 }
499
500
505 public void setGroupService(GroupService groupService) {
506 this.groupService = groupService;
507 }
508
509
514 public GroupPersistence getGroupPersistence() {
515 return groupPersistence;
516 }
517
518
523 public void setGroupPersistence(GroupPersistence groupPersistence) {
524 this.groupPersistence = groupPersistence;
525 }
526
527
532 public GroupFinder getGroupFinder() {
533 return groupFinder;
534 }
535
536
541 public void setGroupFinder(GroupFinder groupFinder) {
542 this.groupFinder = groupFinder;
543 }
544
545
550 public ResourceLocalService getResourceLocalService() {
551 return resourceLocalService;
552 }
553
554
559 public void setResourceLocalService(
560 ResourceLocalService resourceLocalService) {
561 this.resourceLocalService = resourceLocalService;
562 }
563
564
569 public SubscriptionLocalService getSubscriptionLocalService() {
570 return subscriptionLocalService;
571 }
572
573
578 public void setSubscriptionLocalService(
579 SubscriptionLocalService subscriptionLocalService) {
580 this.subscriptionLocalService = subscriptionLocalService;
581 }
582
583
588 public SubscriptionPersistence getSubscriptionPersistence() {
589 return subscriptionPersistence;
590 }
591
592
597 public void setSubscriptionPersistence(
598 SubscriptionPersistence subscriptionPersistence) {
599 this.subscriptionPersistence = subscriptionPersistence;
600 }
601
602
607 public UserLocalService getUserLocalService() {
608 return userLocalService;
609 }
610
611
616 public void setUserLocalService(UserLocalService userLocalService) {
617 this.userLocalService = userLocalService;
618 }
619
620
625 public UserService getUserService() {
626 return userService;
627 }
628
629
634 public void setUserService(UserService userService) {
635 this.userService = userService;
636 }
637
638
643 public UserPersistence getUserPersistence() {
644 return userPersistence;
645 }
646
647
652 public void setUserPersistence(UserPersistence userPersistence) {
653 this.userPersistence = userPersistence;
654 }
655
656
661 public UserFinder getUserFinder() {
662 return userFinder;
663 }
664
665
670 public void setUserFinder(UserFinder userFinder) {
671 this.userFinder = userFinder;
672 }
673
674
679 public AssetEntryLocalService getAssetEntryLocalService() {
680 return assetEntryLocalService;
681 }
682
683
688 public void setAssetEntryLocalService(
689 AssetEntryLocalService assetEntryLocalService) {
690 this.assetEntryLocalService = assetEntryLocalService;
691 }
692
693
698 public AssetEntryService getAssetEntryService() {
699 return assetEntryService;
700 }
701
702
707 public void setAssetEntryService(AssetEntryService assetEntryService) {
708 this.assetEntryService = assetEntryService;
709 }
710
711
716 public AssetEntryPersistence getAssetEntryPersistence() {
717 return assetEntryPersistence;
718 }
719
720
725 public void setAssetEntryPersistence(
726 AssetEntryPersistence assetEntryPersistence) {
727 this.assetEntryPersistence = assetEntryPersistence;
728 }
729
730
735 public AssetEntryFinder getAssetEntryFinder() {
736 return assetEntryFinder;
737 }
738
739
744 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
745 this.assetEntryFinder = assetEntryFinder;
746 }
747
748
753 public AssetLinkLocalService getAssetLinkLocalService() {
754 return assetLinkLocalService;
755 }
756
757
762 public void setAssetLinkLocalService(
763 AssetLinkLocalService assetLinkLocalService) {
764 this.assetLinkLocalService = assetLinkLocalService;
765 }
766
767
772 public AssetLinkPersistence getAssetLinkPersistence() {
773 return assetLinkPersistence;
774 }
775
776
781 public void setAssetLinkPersistence(
782 AssetLinkPersistence assetLinkPersistence) {
783 this.assetLinkPersistence = assetLinkPersistence;
784 }
785
786
791 public AssetLinkFinder getAssetLinkFinder() {
792 return assetLinkFinder;
793 }
794
795
800 public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
801 this.assetLinkFinder = assetLinkFinder;
802 }
803
804
809 public ExpandoValueLocalService getExpandoValueLocalService() {
810 return expandoValueLocalService;
811 }
812
813
818 public void setExpandoValueLocalService(
819 ExpandoValueLocalService expandoValueLocalService) {
820 this.expandoValueLocalService = expandoValueLocalService;
821 }
822
823
828 public ExpandoValueService getExpandoValueService() {
829 return expandoValueService;
830 }
831
832
837 public void setExpandoValueService(ExpandoValueService expandoValueService) {
838 this.expandoValueService = expandoValueService;
839 }
840
841
846 public ExpandoValuePersistence getExpandoValuePersistence() {
847 return expandoValuePersistence;
848 }
849
850
855 public void setExpandoValuePersistence(
856 ExpandoValuePersistence expandoValuePersistence) {
857 this.expandoValuePersistence = expandoValuePersistence;
858 }
859
860
865 public SocialActivityLocalService getSocialActivityLocalService() {
866 return socialActivityLocalService;
867 }
868
869
874 public void setSocialActivityLocalService(
875 SocialActivityLocalService socialActivityLocalService) {
876 this.socialActivityLocalService = socialActivityLocalService;
877 }
878
879
884 public SocialActivityPersistence getSocialActivityPersistence() {
885 return socialActivityPersistence;
886 }
887
888
893 public void setSocialActivityPersistence(
894 SocialActivityPersistence socialActivityPersistence) {
895 this.socialActivityPersistence = socialActivityPersistence;
896 }
897
898
903 public SocialActivityFinder getSocialActivityFinder() {
904 return socialActivityFinder;
905 }
906
907
912 public void setSocialActivityFinder(
913 SocialActivityFinder socialActivityFinder) {
914 this.socialActivityFinder = socialActivityFinder;
915 }
916
917
922 public SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
923 return socialActivityCounterLocalService;
924 }
925
926
931 public void setSocialActivityCounterLocalService(
932 SocialActivityCounterLocalService socialActivityCounterLocalService) {
933 this.socialActivityCounterLocalService = socialActivityCounterLocalService;
934 }
935
936
941 public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
942 return socialActivityCounterPersistence;
943 }
944
945
950 public void setSocialActivityCounterPersistence(
951 SocialActivityCounterPersistence socialActivityCounterPersistence) {
952 this.socialActivityCounterPersistence = socialActivityCounterPersistence;
953 }
954
955
960 public SocialActivityCounterFinder getSocialActivityCounterFinder() {
961 return socialActivityCounterFinder;
962 }
963
964
969 public void setSocialActivityCounterFinder(
970 SocialActivityCounterFinder socialActivityCounterFinder) {
971 this.socialActivityCounterFinder = socialActivityCounterFinder;
972 }
973
974
979 public TrashEntryLocalService getTrashEntryLocalService() {
980 return trashEntryLocalService;
981 }
982
983
988 public void setTrashEntryLocalService(
989 TrashEntryLocalService trashEntryLocalService) {
990 this.trashEntryLocalService = trashEntryLocalService;
991 }
992
993
998 public TrashEntryService getTrashEntryService() {
999 return trashEntryService;
1000 }
1001
1002
1007 public void setTrashEntryService(TrashEntryService trashEntryService) {
1008 this.trashEntryService = trashEntryService;
1009 }
1010
1011
1016 public TrashEntryPersistence getTrashEntryPersistence() {
1017 return trashEntryPersistence;
1018 }
1019
1020
1025 public void setTrashEntryPersistence(
1026 TrashEntryPersistence trashEntryPersistence) {
1027 this.trashEntryPersistence = trashEntryPersistence;
1028 }
1029
1030 public void afterPropertiesSet() {
1031 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksFolder",
1032 bookmarksFolderLocalService);
1033 }
1034
1035 public void destroy() {
1036 persistedModelLocalServiceRegistry.unregister(
1037 "com.liferay.portlet.bookmarks.model.BookmarksFolder");
1038 }
1039
1040
1045 public String getBeanIdentifier() {
1046 return _beanIdentifier;
1047 }
1048
1049
1054 public void setBeanIdentifier(String beanIdentifier) {
1055 _beanIdentifier = beanIdentifier;
1056 }
1057
1058 protected Class<?> getModelClass() {
1059 return BookmarksFolder.class;
1060 }
1061
1062 protected String getModelClassName() {
1063 return BookmarksFolder.class.getName();
1064 }
1065
1066
1071 protected void runSQL(String sql) throws SystemException {
1072 try {
1073 DataSource dataSource = bookmarksFolderPersistence.getDataSource();
1074
1075 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1076 sql, new int[0]);
1077
1078 sqlUpdate.update();
1079 }
1080 catch (Exception e) {
1081 throw new SystemException(e);
1082 }
1083 }
1084
1085 @BeanReference(type = BookmarksEntryLocalService.class)
1086 protected BookmarksEntryLocalService bookmarksEntryLocalService;
1087 @BeanReference(type = BookmarksEntryService.class)
1088 protected BookmarksEntryService bookmarksEntryService;
1089 @BeanReference(type = BookmarksEntryPersistence.class)
1090 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1091 @BeanReference(type = BookmarksEntryFinder.class)
1092 protected BookmarksEntryFinder bookmarksEntryFinder;
1093 @BeanReference(type = BookmarksFolderLocalService.class)
1094 protected BookmarksFolderLocalService bookmarksFolderLocalService;
1095 @BeanReference(type = BookmarksFolderService.class)
1096 protected BookmarksFolderService bookmarksFolderService;
1097 @BeanReference(type = BookmarksFolderPersistence.class)
1098 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1099 @BeanReference(type = BookmarksFolderFinder.class)
1100 protected BookmarksFolderFinder bookmarksFolderFinder;
1101 @BeanReference(type = CounterLocalService.class)
1102 protected CounterLocalService counterLocalService;
1103 @BeanReference(type = GroupLocalService.class)
1104 protected GroupLocalService groupLocalService;
1105 @BeanReference(type = GroupService.class)
1106 protected GroupService groupService;
1107 @BeanReference(type = GroupPersistence.class)
1108 protected GroupPersistence groupPersistence;
1109 @BeanReference(type = GroupFinder.class)
1110 protected GroupFinder groupFinder;
1111 @BeanReference(type = ResourceLocalService.class)
1112 protected ResourceLocalService resourceLocalService;
1113 @BeanReference(type = SubscriptionLocalService.class)
1114 protected SubscriptionLocalService subscriptionLocalService;
1115 @BeanReference(type = SubscriptionPersistence.class)
1116 protected SubscriptionPersistence subscriptionPersistence;
1117 @BeanReference(type = UserLocalService.class)
1118 protected UserLocalService userLocalService;
1119 @BeanReference(type = UserService.class)
1120 protected UserService userService;
1121 @BeanReference(type = UserPersistence.class)
1122 protected UserPersistence userPersistence;
1123 @BeanReference(type = UserFinder.class)
1124 protected UserFinder userFinder;
1125 @BeanReference(type = AssetEntryLocalService.class)
1126 protected AssetEntryLocalService assetEntryLocalService;
1127 @BeanReference(type = AssetEntryService.class)
1128 protected AssetEntryService assetEntryService;
1129 @BeanReference(type = AssetEntryPersistence.class)
1130 protected AssetEntryPersistence assetEntryPersistence;
1131 @BeanReference(type = AssetEntryFinder.class)
1132 protected AssetEntryFinder assetEntryFinder;
1133 @BeanReference(type = AssetLinkLocalService.class)
1134 protected AssetLinkLocalService assetLinkLocalService;
1135 @BeanReference(type = AssetLinkPersistence.class)
1136 protected AssetLinkPersistence assetLinkPersistence;
1137 @BeanReference(type = AssetLinkFinder.class)
1138 protected AssetLinkFinder assetLinkFinder;
1139 @BeanReference(type = ExpandoValueLocalService.class)
1140 protected ExpandoValueLocalService expandoValueLocalService;
1141 @BeanReference(type = ExpandoValueService.class)
1142 protected ExpandoValueService expandoValueService;
1143 @BeanReference(type = ExpandoValuePersistence.class)
1144 protected ExpandoValuePersistence expandoValuePersistence;
1145 @BeanReference(type = SocialActivityLocalService.class)
1146 protected SocialActivityLocalService socialActivityLocalService;
1147 @BeanReference(type = SocialActivityPersistence.class)
1148 protected SocialActivityPersistence socialActivityPersistence;
1149 @BeanReference(type = SocialActivityFinder.class)
1150 protected SocialActivityFinder socialActivityFinder;
1151 @BeanReference(type = SocialActivityCounterLocalService.class)
1152 protected SocialActivityCounterLocalService socialActivityCounterLocalService;
1153 @BeanReference(type = SocialActivityCounterPersistence.class)
1154 protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1155 @BeanReference(type = SocialActivityCounterFinder.class)
1156 protected SocialActivityCounterFinder socialActivityCounterFinder;
1157 @BeanReference(type = TrashEntryLocalService.class)
1158 protected TrashEntryLocalService trashEntryLocalService;
1159 @BeanReference(type = TrashEntryService.class)
1160 protected TrashEntryService trashEntryService;
1161 @BeanReference(type = TrashEntryPersistence.class)
1162 protected TrashEntryPersistence trashEntryPersistence;
1163 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1164 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1165 private String _beanIdentifier;
1166 }