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
052 import java.io.Serializable;
053
054 import java.util.List;
055
056 import javax.sql.DataSource;
057
058
070 public abstract class BookmarksFolderLocalServiceBaseImpl
071 extends BaseLocalServiceImpl implements BookmarksFolderLocalService,
072 IdentifiableBean {
073
078
079
086 @Indexable(type = IndexableType.REINDEX)
087 @Override
088 public BookmarksFolder addBookmarksFolder(BookmarksFolder bookmarksFolder)
089 throws SystemException {
090 bookmarksFolder.setNew(true);
091
092 return bookmarksFolderPersistence.update(bookmarksFolder);
093 }
094
095
101 @Override
102 public BookmarksFolder createBookmarksFolder(long folderId) {
103 return bookmarksFolderPersistence.create(folderId);
104 }
105
106
114 @Indexable(type = IndexableType.DELETE)
115 @Override
116 public BookmarksFolder deleteBookmarksFolder(long folderId)
117 throws PortalException, SystemException {
118 return bookmarksFolderPersistence.remove(folderId);
119 }
120
121
128 @Indexable(type = IndexableType.DELETE)
129 @Override
130 public BookmarksFolder deleteBookmarksFolder(
131 BookmarksFolder bookmarksFolder) throws SystemException {
132 return bookmarksFolderPersistence.remove(bookmarksFolder);
133 }
134
135 @Override
136 public DynamicQuery dynamicQuery() {
137 Class<?> clazz = getClass();
138
139 return DynamicQueryFactoryUtil.forClass(BookmarksFolder.class,
140 clazz.getClassLoader());
141 }
142
143
150 @Override
151 @SuppressWarnings("rawtypes")
152 public List dynamicQuery(DynamicQuery dynamicQuery)
153 throws SystemException {
154 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery);
155 }
156
157
170 @Override
171 @SuppressWarnings("rawtypes")
172 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
173 throws SystemException {
174 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
175 start, end);
176 }
177
178
192 @Override
193 @SuppressWarnings("rawtypes")
194 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
195 OrderByComparator orderByComparator) throws SystemException {
196 return bookmarksFolderPersistence.findWithDynamicQuery(dynamicQuery,
197 start, end, orderByComparator);
198 }
199
200
207 @Override
208 public long dynamicQueryCount(DynamicQuery dynamicQuery)
209 throws SystemException {
210 return bookmarksFolderPersistence.countWithDynamicQuery(dynamicQuery);
211 }
212
213
221 @Override
222 public long dynamicQueryCount(DynamicQuery dynamicQuery,
223 Projection projection) throws SystemException {
224 return bookmarksFolderPersistence.countWithDynamicQuery(dynamicQuery,
225 projection);
226 }
227
228 @Override
229 public BookmarksFolder fetchBookmarksFolder(long folderId)
230 throws SystemException {
231 return bookmarksFolderPersistence.fetchByPrimaryKey(folderId);
232 }
233
234
242 @Override
243 public BookmarksFolder fetchBookmarksFolderByUuidAndCompanyId(String uuid,
244 long companyId) throws SystemException {
245 return bookmarksFolderPersistence.fetchByUuid_C_First(uuid, companyId,
246 null);
247 }
248
249
257 @Override
258 public BookmarksFolder fetchBookmarksFolderByUuidAndGroupId(String uuid,
259 long groupId) throws SystemException {
260 return bookmarksFolderPersistence.fetchByUUID_G(uuid, groupId);
261 }
262
263
271 @Override
272 public BookmarksFolder getBookmarksFolder(long folderId)
273 throws PortalException, SystemException {
274 return bookmarksFolderPersistence.findByPrimaryKey(folderId);
275 }
276
277 @Override
278 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
279 throws PortalException, SystemException {
280 return bookmarksFolderPersistence.findByPrimaryKey(primaryKeyObj);
281 }
282
283
292 @Override
293 public BookmarksFolder getBookmarksFolderByUuidAndCompanyId(String uuid,
294 long companyId) throws PortalException, SystemException {
295 return bookmarksFolderPersistence.findByUuid_C_First(uuid, companyId,
296 null);
297 }
298
299
308 @Override
309 public BookmarksFolder getBookmarksFolderByUuidAndGroupId(String uuid,
310 long groupId) throws PortalException, SystemException {
311 return bookmarksFolderPersistence.findByUUID_G(uuid, groupId);
312 }
313
314
326 @Override
327 public List<BookmarksFolder> getBookmarksFolders(int start, int end)
328 throws SystemException {
329 return bookmarksFolderPersistence.findAll(start, end);
330 }
331
332
338 @Override
339 public int getBookmarksFoldersCount() throws SystemException {
340 return bookmarksFolderPersistence.countAll();
341 }
342
343
350 @Indexable(type = IndexableType.REINDEX)
351 @Override
352 public BookmarksFolder updateBookmarksFolder(
353 BookmarksFolder bookmarksFolder) throws SystemException {
354 return bookmarksFolderPersistence.update(bookmarksFolder);
355 }
356
357
362 public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
363 return bookmarksEntryLocalService;
364 }
365
366
371 public void setBookmarksEntryLocalService(
372 com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
373 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
374 }
375
376
381 public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
382 return bookmarksEntryService;
383 }
384
385
390 public void setBookmarksEntryService(
391 com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
392 this.bookmarksEntryService = bookmarksEntryService;
393 }
394
395
400 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
401 return bookmarksEntryPersistence;
402 }
403
404
409 public void setBookmarksEntryPersistence(
410 BookmarksEntryPersistence bookmarksEntryPersistence) {
411 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
412 }
413
414
419 public BookmarksEntryFinder getBookmarksEntryFinder() {
420 return bookmarksEntryFinder;
421 }
422
423
428 public void setBookmarksEntryFinder(
429 BookmarksEntryFinder bookmarksEntryFinder) {
430 this.bookmarksEntryFinder = bookmarksEntryFinder;
431 }
432
433
438 public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
439 return bookmarksFolderLocalService;
440 }
441
442
447 public void setBookmarksFolderLocalService(
448 com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
449 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
450 }
451
452
457 public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
458 return bookmarksFolderService;
459 }
460
461
466 public void setBookmarksFolderService(
467 com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
468 this.bookmarksFolderService = bookmarksFolderService;
469 }
470
471
476 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
477 return bookmarksFolderPersistence;
478 }
479
480
485 public void setBookmarksFolderPersistence(
486 BookmarksFolderPersistence bookmarksFolderPersistence) {
487 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
488 }
489
490
495 public BookmarksFolderFinder getBookmarksFolderFinder() {
496 return bookmarksFolderFinder;
497 }
498
499
504 public void setBookmarksFolderFinder(
505 BookmarksFolderFinder bookmarksFolderFinder) {
506 this.bookmarksFolderFinder = bookmarksFolderFinder;
507 }
508
509
514 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
515 return counterLocalService;
516 }
517
518
523 public void setCounterLocalService(
524 com.liferay.counter.service.CounterLocalService counterLocalService) {
525 this.counterLocalService = counterLocalService;
526 }
527
528
533 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
534 return groupLocalService;
535 }
536
537
542 public void setGroupLocalService(
543 com.liferay.portal.service.GroupLocalService groupLocalService) {
544 this.groupLocalService = groupLocalService;
545 }
546
547
552 public com.liferay.portal.service.GroupService getGroupService() {
553 return groupService;
554 }
555
556
561 public void setGroupService(
562 com.liferay.portal.service.GroupService groupService) {
563 this.groupService = groupService;
564 }
565
566
571 public GroupPersistence getGroupPersistence() {
572 return groupPersistence;
573 }
574
575
580 public void setGroupPersistence(GroupPersistence groupPersistence) {
581 this.groupPersistence = groupPersistence;
582 }
583
584
589 public GroupFinder getGroupFinder() {
590 return groupFinder;
591 }
592
593
598 public void setGroupFinder(GroupFinder groupFinder) {
599 this.groupFinder = groupFinder;
600 }
601
602
607 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
608 return resourceLocalService;
609 }
610
611
616 public void setResourceLocalService(
617 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
618 this.resourceLocalService = resourceLocalService;
619 }
620
621
626 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
627 return subscriptionLocalService;
628 }
629
630
635 public void setSubscriptionLocalService(
636 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
637 this.subscriptionLocalService = subscriptionLocalService;
638 }
639
640
645 public SubscriptionPersistence getSubscriptionPersistence() {
646 return subscriptionPersistence;
647 }
648
649
654 public void setSubscriptionPersistence(
655 SubscriptionPersistence subscriptionPersistence) {
656 this.subscriptionPersistence = subscriptionPersistence;
657 }
658
659
664 public com.liferay.portal.service.UserLocalService getUserLocalService() {
665 return userLocalService;
666 }
667
668
673 public void setUserLocalService(
674 com.liferay.portal.service.UserLocalService userLocalService) {
675 this.userLocalService = userLocalService;
676 }
677
678
683 public com.liferay.portal.service.UserService getUserService() {
684 return userService;
685 }
686
687
692 public void setUserService(
693 com.liferay.portal.service.UserService userService) {
694 this.userService = userService;
695 }
696
697
702 public UserPersistence getUserPersistence() {
703 return userPersistence;
704 }
705
706
711 public void setUserPersistence(UserPersistence userPersistence) {
712 this.userPersistence = userPersistence;
713 }
714
715
720 public UserFinder getUserFinder() {
721 return userFinder;
722 }
723
724
729 public void setUserFinder(UserFinder userFinder) {
730 this.userFinder = userFinder;
731 }
732
733
738 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
739 return assetEntryLocalService;
740 }
741
742
747 public void setAssetEntryLocalService(
748 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
749 this.assetEntryLocalService = assetEntryLocalService;
750 }
751
752
757 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
758 return assetEntryService;
759 }
760
761
766 public void setAssetEntryService(
767 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
768 this.assetEntryService = assetEntryService;
769 }
770
771
776 public AssetEntryPersistence getAssetEntryPersistence() {
777 return assetEntryPersistence;
778 }
779
780
785 public void setAssetEntryPersistence(
786 AssetEntryPersistence assetEntryPersistence) {
787 this.assetEntryPersistence = assetEntryPersistence;
788 }
789
790
795 public AssetEntryFinder getAssetEntryFinder() {
796 return assetEntryFinder;
797 }
798
799
804 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
805 this.assetEntryFinder = assetEntryFinder;
806 }
807
808
813 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
814 return assetLinkLocalService;
815 }
816
817
822 public void setAssetLinkLocalService(
823 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
824 this.assetLinkLocalService = assetLinkLocalService;
825 }
826
827
832 public AssetLinkPersistence getAssetLinkPersistence() {
833 return assetLinkPersistence;
834 }
835
836
841 public void setAssetLinkPersistence(
842 AssetLinkPersistence assetLinkPersistence) {
843 this.assetLinkPersistence = assetLinkPersistence;
844 }
845
846
851 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
852 return expandoRowLocalService;
853 }
854
855
860 public void setExpandoRowLocalService(
861 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
862 this.expandoRowLocalService = expandoRowLocalService;
863 }
864
865
870 public ExpandoRowPersistence getExpandoRowPersistence() {
871 return expandoRowPersistence;
872 }
873
874
879 public void setExpandoRowPersistence(
880 ExpandoRowPersistence expandoRowPersistence) {
881 this.expandoRowPersistence = expandoRowPersistence;
882 }
883
884
889 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
890 return socialActivityLocalService;
891 }
892
893
898 public void setSocialActivityLocalService(
899 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
900 this.socialActivityLocalService = socialActivityLocalService;
901 }
902
903
908 public SocialActivityPersistence getSocialActivityPersistence() {
909 return socialActivityPersistence;
910 }
911
912
917 public void setSocialActivityPersistence(
918 SocialActivityPersistence socialActivityPersistence) {
919 this.socialActivityPersistence = socialActivityPersistence;
920 }
921
922
927 public SocialActivityFinder getSocialActivityFinder() {
928 return socialActivityFinder;
929 }
930
931
936 public void setSocialActivityFinder(
937 SocialActivityFinder socialActivityFinder) {
938 this.socialActivityFinder = socialActivityFinder;
939 }
940
941
946 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
947 return trashEntryLocalService;
948 }
949
950
955 public void setTrashEntryLocalService(
956 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
957 this.trashEntryLocalService = trashEntryLocalService;
958 }
959
960
965 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
966 return trashEntryService;
967 }
968
969
974 public void setTrashEntryService(
975 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
976 this.trashEntryService = trashEntryService;
977 }
978
979
984 public TrashEntryPersistence getTrashEntryPersistence() {
985 return trashEntryPersistence;
986 }
987
988
993 public void setTrashEntryPersistence(
994 TrashEntryPersistence trashEntryPersistence) {
995 this.trashEntryPersistence = trashEntryPersistence;
996 }
997
998 public void afterPropertiesSet() {
999 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksFolder",
1000 bookmarksFolderLocalService);
1001 }
1002
1003 public void destroy() {
1004 persistedModelLocalServiceRegistry.unregister(
1005 "com.liferay.portlet.bookmarks.model.BookmarksFolder");
1006 }
1007
1008
1013 @Override
1014 public String getBeanIdentifier() {
1015 return _beanIdentifier;
1016 }
1017
1018
1023 @Override
1024 public void setBeanIdentifier(String beanIdentifier) {
1025 _beanIdentifier = beanIdentifier;
1026 }
1027
1028 protected Class<?> getModelClass() {
1029 return BookmarksFolder.class;
1030 }
1031
1032 protected String getModelClassName() {
1033 return BookmarksFolder.class.getName();
1034 }
1035
1036
1041 protected void runSQL(String sql) throws SystemException {
1042 try {
1043 DataSource dataSource = bookmarksFolderPersistence.getDataSource();
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.bookmarks.service.BookmarksEntryLocalService.class)
1056 protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
1057 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
1058 protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
1059 @BeanReference(type = BookmarksEntryPersistence.class)
1060 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1061 @BeanReference(type = BookmarksEntryFinder.class)
1062 protected BookmarksEntryFinder bookmarksEntryFinder;
1063 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
1064 protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
1065 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
1066 protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
1067 @BeanReference(type = BookmarksFolderPersistence.class)
1068 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1069 @BeanReference(type = BookmarksFolderFinder.class)
1070 protected BookmarksFolderFinder bookmarksFolderFinder;
1071 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1072 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1073 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1074 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1075 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1076 protected com.liferay.portal.service.GroupService groupService;
1077 @BeanReference(type = GroupPersistence.class)
1078 protected GroupPersistence groupPersistence;
1079 @BeanReference(type = GroupFinder.class)
1080 protected GroupFinder groupFinder;
1081 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1082 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1083 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1084 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1085 @BeanReference(type = SubscriptionPersistence.class)
1086 protected SubscriptionPersistence subscriptionPersistence;
1087 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1088 protected com.liferay.portal.service.UserLocalService userLocalService;
1089 @BeanReference(type = com.liferay.portal.service.UserService.class)
1090 protected com.liferay.portal.service.UserService userService;
1091 @BeanReference(type = UserPersistence.class)
1092 protected UserPersistence userPersistence;
1093 @BeanReference(type = UserFinder.class)
1094 protected UserFinder userFinder;
1095 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1096 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1097 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1098 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1099 @BeanReference(type = AssetEntryPersistence.class)
1100 protected AssetEntryPersistence assetEntryPersistence;
1101 @BeanReference(type = AssetEntryFinder.class)
1102 protected AssetEntryFinder assetEntryFinder;
1103 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1104 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1105 @BeanReference(type = AssetLinkPersistence.class)
1106 protected AssetLinkPersistence assetLinkPersistence;
1107 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1108 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1109 @BeanReference(type = ExpandoRowPersistence.class)
1110 protected ExpandoRowPersistence expandoRowPersistence;
1111 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1112 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1113 @BeanReference(type = SocialActivityPersistence.class)
1114 protected SocialActivityPersistence socialActivityPersistence;
1115 @BeanReference(type = SocialActivityFinder.class)
1116 protected SocialActivityFinder socialActivityFinder;
1117 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1118 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1119 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1120 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1121 @BeanReference(type = TrashEntryPersistence.class)
1122 protected TrashEntryPersistence trashEntryPersistence;
1123 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1124 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1125 private String _beanIdentifier;
1126 }