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.PortletPreferencesFinder;
035 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
036 import com.liferay.portal.service.persistence.SubscriptionPersistence;
037 import com.liferay.portal.service.persistence.UserFinder;
038 import com.liferay.portal.service.persistence.UserPersistence;
039
040 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
041 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
042 import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
043 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
044 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
045 import com.liferay.portlet.bookmarks.model.BookmarksEntry;
046 import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
047 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
048 import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
049 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderFinder;
050 import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
051 import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
052 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
053 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
054 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
055
056 import java.io.Serializable;
057
058 import java.util.List;
059
060 import javax.sql.DataSource;
061
062
074 public abstract class BookmarksEntryLocalServiceBaseImpl
075 extends BaseLocalServiceImpl implements BookmarksEntryLocalService,
076 IdentifiableBean {
077
082
083
090 @Indexable(type = IndexableType.REINDEX)
091 @Override
092 public BookmarksEntry addBookmarksEntry(BookmarksEntry bookmarksEntry)
093 throws SystemException {
094 bookmarksEntry.setNew(true);
095
096 return bookmarksEntryPersistence.update(bookmarksEntry);
097 }
098
099
105 @Override
106 public BookmarksEntry createBookmarksEntry(long entryId) {
107 return bookmarksEntryPersistence.create(entryId);
108 }
109
110
118 @Indexable(type = IndexableType.DELETE)
119 @Override
120 public BookmarksEntry deleteBookmarksEntry(long entryId)
121 throws PortalException, SystemException {
122 return bookmarksEntryPersistence.remove(entryId);
123 }
124
125
132 @Indexable(type = IndexableType.DELETE)
133 @Override
134 public BookmarksEntry deleteBookmarksEntry(BookmarksEntry bookmarksEntry)
135 throws SystemException {
136 return bookmarksEntryPersistence.remove(bookmarksEntry);
137 }
138
139 @Override
140 public DynamicQuery dynamicQuery() {
141 Class<?> clazz = getClass();
142
143 return DynamicQueryFactoryUtil.forClass(BookmarksEntry.class,
144 clazz.getClassLoader());
145 }
146
147
154 @Override
155 @SuppressWarnings("rawtypes")
156 public List dynamicQuery(DynamicQuery dynamicQuery)
157 throws SystemException {
158 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery);
159 }
160
161
174 @Override
175 @SuppressWarnings("rawtypes")
176 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
177 throws SystemException {
178 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
179 start, end);
180 }
181
182
196 @Override
197 @SuppressWarnings("rawtypes")
198 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
199 OrderByComparator orderByComparator) throws SystemException {
200 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
201 start, end, orderByComparator);
202 }
203
204
211 @Override
212 public long dynamicQueryCount(DynamicQuery dynamicQuery)
213 throws SystemException {
214 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery);
215 }
216
217
225 @Override
226 public long dynamicQueryCount(DynamicQuery dynamicQuery,
227 Projection projection) throws SystemException {
228 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery,
229 projection);
230 }
231
232 @Override
233 public BookmarksEntry fetchBookmarksEntry(long entryId)
234 throws SystemException {
235 return bookmarksEntryPersistence.fetchByPrimaryKey(entryId);
236 }
237
238
246 @Override
247 public BookmarksEntry fetchBookmarksEntryByUuidAndCompanyId(String uuid,
248 long companyId) throws SystemException {
249 return bookmarksEntryPersistence.fetchByUuid_C_First(uuid, companyId,
250 null);
251 }
252
253
261 @Override
262 public BookmarksEntry fetchBookmarksEntryByUuidAndGroupId(String uuid,
263 long groupId) throws SystemException {
264 return bookmarksEntryPersistence.fetchByUUID_G(uuid, groupId);
265 }
266
267
275 @Override
276 public BookmarksEntry getBookmarksEntry(long entryId)
277 throws PortalException, SystemException {
278 return bookmarksEntryPersistence.findByPrimaryKey(entryId);
279 }
280
281 @Override
282 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
283 throws PortalException, SystemException {
284 return bookmarksEntryPersistence.findByPrimaryKey(primaryKeyObj);
285 }
286
287
296 @Override
297 public BookmarksEntry getBookmarksEntryByUuidAndCompanyId(String uuid,
298 long companyId) throws PortalException, SystemException {
299 return bookmarksEntryPersistence.findByUuid_C_First(uuid, companyId,
300 null);
301 }
302
303
312 @Override
313 public BookmarksEntry getBookmarksEntryByUuidAndGroupId(String uuid,
314 long groupId) throws PortalException, SystemException {
315 return bookmarksEntryPersistence.findByUUID_G(uuid, groupId);
316 }
317
318
330 @Override
331 public List<BookmarksEntry> getBookmarksEntries(int start, int end)
332 throws SystemException {
333 return bookmarksEntryPersistence.findAll(start, end);
334 }
335
336
342 @Override
343 public int getBookmarksEntriesCount() throws SystemException {
344 return bookmarksEntryPersistence.countAll();
345 }
346
347
354 @Indexable(type = IndexableType.REINDEX)
355 @Override
356 public BookmarksEntry updateBookmarksEntry(BookmarksEntry bookmarksEntry)
357 throws SystemException {
358 return bookmarksEntryPersistence.update(bookmarksEntry);
359 }
360
361
366 public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
367 return bookmarksEntryLocalService;
368 }
369
370
375 public void setBookmarksEntryLocalService(
376 com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
377 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
378 }
379
380
385 public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
386 return bookmarksEntryService;
387 }
388
389
394 public void setBookmarksEntryService(
395 com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
396 this.bookmarksEntryService = bookmarksEntryService;
397 }
398
399
404 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
405 return bookmarksEntryPersistence;
406 }
407
408
413 public void setBookmarksEntryPersistence(
414 BookmarksEntryPersistence bookmarksEntryPersistence) {
415 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
416 }
417
418
423 public BookmarksEntryFinder getBookmarksEntryFinder() {
424 return bookmarksEntryFinder;
425 }
426
427
432 public void setBookmarksEntryFinder(
433 BookmarksEntryFinder bookmarksEntryFinder) {
434 this.bookmarksEntryFinder = bookmarksEntryFinder;
435 }
436
437
442 public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
443 return bookmarksFolderLocalService;
444 }
445
446
451 public void setBookmarksFolderLocalService(
452 com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
453 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
454 }
455
456
461 public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
462 return bookmarksFolderService;
463 }
464
465
470 public void setBookmarksFolderService(
471 com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
472 this.bookmarksFolderService = bookmarksFolderService;
473 }
474
475
480 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
481 return bookmarksFolderPersistence;
482 }
483
484
489 public void setBookmarksFolderPersistence(
490 BookmarksFolderPersistence bookmarksFolderPersistence) {
491 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
492 }
493
494
499 public BookmarksFolderFinder getBookmarksFolderFinder() {
500 return bookmarksFolderFinder;
501 }
502
503
508 public void setBookmarksFolderFinder(
509 BookmarksFolderFinder bookmarksFolderFinder) {
510 this.bookmarksFolderFinder = bookmarksFolderFinder;
511 }
512
513
518 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
519 return counterLocalService;
520 }
521
522
527 public void setCounterLocalService(
528 com.liferay.counter.service.CounterLocalService counterLocalService) {
529 this.counterLocalService = counterLocalService;
530 }
531
532
537 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
538 return groupLocalService;
539 }
540
541
546 public void setGroupLocalService(
547 com.liferay.portal.service.GroupLocalService groupLocalService) {
548 this.groupLocalService = groupLocalService;
549 }
550
551
556 public com.liferay.portal.service.GroupService getGroupService() {
557 return groupService;
558 }
559
560
565 public void setGroupService(
566 com.liferay.portal.service.GroupService groupService) {
567 this.groupService = groupService;
568 }
569
570
575 public GroupPersistence getGroupPersistence() {
576 return groupPersistence;
577 }
578
579
584 public void setGroupPersistence(GroupPersistence groupPersistence) {
585 this.groupPersistence = groupPersistence;
586 }
587
588
593 public GroupFinder getGroupFinder() {
594 return groupFinder;
595 }
596
597
602 public void setGroupFinder(GroupFinder groupFinder) {
603 this.groupFinder = groupFinder;
604 }
605
606
611 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
612 return portletPreferencesLocalService;
613 }
614
615
620 public void setPortletPreferencesLocalService(
621 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
622 this.portletPreferencesLocalService = portletPreferencesLocalService;
623 }
624
625
630 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
631 return portletPreferencesService;
632 }
633
634
639 public void setPortletPreferencesService(
640 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
641 this.portletPreferencesService = portletPreferencesService;
642 }
643
644
649 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
650 return portletPreferencesPersistence;
651 }
652
653
658 public void setPortletPreferencesPersistence(
659 PortletPreferencesPersistence portletPreferencesPersistence) {
660 this.portletPreferencesPersistence = portletPreferencesPersistence;
661 }
662
663
668 public PortletPreferencesFinder getPortletPreferencesFinder() {
669 return portletPreferencesFinder;
670 }
671
672
677 public void setPortletPreferencesFinder(
678 PortletPreferencesFinder portletPreferencesFinder) {
679 this.portletPreferencesFinder = portletPreferencesFinder;
680 }
681
682
687 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
688 return resourceLocalService;
689 }
690
691
696 public void setResourceLocalService(
697 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
698 this.resourceLocalService = resourceLocalService;
699 }
700
701
706 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
707 return subscriptionLocalService;
708 }
709
710
715 public void setSubscriptionLocalService(
716 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
717 this.subscriptionLocalService = subscriptionLocalService;
718 }
719
720
725 public SubscriptionPersistence getSubscriptionPersistence() {
726 return subscriptionPersistence;
727 }
728
729
734 public void setSubscriptionPersistence(
735 SubscriptionPersistence subscriptionPersistence) {
736 this.subscriptionPersistence = subscriptionPersistence;
737 }
738
739
744 public com.liferay.portal.service.UserLocalService getUserLocalService() {
745 return userLocalService;
746 }
747
748
753 public void setUserLocalService(
754 com.liferay.portal.service.UserLocalService userLocalService) {
755 this.userLocalService = userLocalService;
756 }
757
758
763 public com.liferay.portal.service.UserService getUserService() {
764 return userService;
765 }
766
767
772 public void setUserService(
773 com.liferay.portal.service.UserService userService) {
774 this.userService = userService;
775 }
776
777
782 public UserPersistence getUserPersistence() {
783 return userPersistence;
784 }
785
786
791 public void setUserPersistence(UserPersistence userPersistence) {
792 this.userPersistence = userPersistence;
793 }
794
795
800 public UserFinder getUserFinder() {
801 return userFinder;
802 }
803
804
809 public void setUserFinder(UserFinder userFinder) {
810 this.userFinder = userFinder;
811 }
812
813
818 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
819 return assetEntryLocalService;
820 }
821
822
827 public void setAssetEntryLocalService(
828 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
829 this.assetEntryLocalService = assetEntryLocalService;
830 }
831
832
837 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
838 return assetEntryService;
839 }
840
841
846 public void setAssetEntryService(
847 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
848 this.assetEntryService = assetEntryService;
849 }
850
851
856 public AssetEntryPersistence getAssetEntryPersistence() {
857 return assetEntryPersistence;
858 }
859
860
865 public void setAssetEntryPersistence(
866 AssetEntryPersistence assetEntryPersistence) {
867 this.assetEntryPersistence = assetEntryPersistence;
868 }
869
870
875 public AssetEntryFinder getAssetEntryFinder() {
876 return assetEntryFinder;
877 }
878
879
884 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
885 this.assetEntryFinder = assetEntryFinder;
886 }
887
888
893 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
894 return assetLinkLocalService;
895 }
896
897
902 public void setAssetLinkLocalService(
903 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
904 this.assetLinkLocalService = assetLinkLocalService;
905 }
906
907
912 public AssetLinkPersistence getAssetLinkPersistence() {
913 return assetLinkPersistence;
914 }
915
916
921 public void setAssetLinkPersistence(
922 AssetLinkPersistence assetLinkPersistence) {
923 this.assetLinkPersistence = assetLinkPersistence;
924 }
925
926
931 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
932 return assetTagLocalService;
933 }
934
935
940 public void setAssetTagLocalService(
941 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
942 this.assetTagLocalService = assetTagLocalService;
943 }
944
945
950 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
951 return assetTagService;
952 }
953
954
959 public void setAssetTagService(
960 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
961 this.assetTagService = assetTagService;
962 }
963
964
969 public AssetTagPersistence getAssetTagPersistence() {
970 return assetTagPersistence;
971 }
972
973
978 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
979 this.assetTagPersistence = assetTagPersistence;
980 }
981
982
987 public AssetTagFinder getAssetTagFinder() {
988 return assetTagFinder;
989 }
990
991
996 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
997 this.assetTagFinder = assetTagFinder;
998 }
999
1000
1005 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1006 return expandoRowLocalService;
1007 }
1008
1009
1014 public void setExpandoRowLocalService(
1015 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1016 this.expandoRowLocalService = expandoRowLocalService;
1017 }
1018
1019
1024 public ExpandoRowPersistence getExpandoRowPersistence() {
1025 return expandoRowPersistence;
1026 }
1027
1028
1033 public void setExpandoRowPersistence(
1034 ExpandoRowPersistence expandoRowPersistence) {
1035 this.expandoRowPersistence = expandoRowPersistence;
1036 }
1037
1038
1043 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1044 return socialActivityLocalService;
1045 }
1046
1047
1052 public void setSocialActivityLocalService(
1053 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1054 this.socialActivityLocalService = socialActivityLocalService;
1055 }
1056
1057
1062 public SocialActivityPersistence getSocialActivityPersistence() {
1063 return socialActivityPersistence;
1064 }
1065
1066
1071 public void setSocialActivityPersistence(
1072 SocialActivityPersistence socialActivityPersistence) {
1073 this.socialActivityPersistence = socialActivityPersistence;
1074 }
1075
1076
1081 public SocialActivityFinder getSocialActivityFinder() {
1082 return socialActivityFinder;
1083 }
1084
1085
1090 public void setSocialActivityFinder(
1091 SocialActivityFinder socialActivityFinder) {
1092 this.socialActivityFinder = socialActivityFinder;
1093 }
1094
1095
1100 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1101 return trashEntryLocalService;
1102 }
1103
1104
1109 public void setTrashEntryLocalService(
1110 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1111 this.trashEntryLocalService = trashEntryLocalService;
1112 }
1113
1114
1119 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1120 return trashEntryService;
1121 }
1122
1123
1128 public void setTrashEntryService(
1129 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1130 this.trashEntryService = trashEntryService;
1131 }
1132
1133
1138 public TrashEntryPersistence getTrashEntryPersistence() {
1139 return trashEntryPersistence;
1140 }
1141
1142
1147 public void setTrashEntryPersistence(
1148 TrashEntryPersistence trashEntryPersistence) {
1149 this.trashEntryPersistence = trashEntryPersistence;
1150 }
1151
1152 public void afterPropertiesSet() {
1153 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksEntry",
1154 bookmarksEntryLocalService);
1155 }
1156
1157 public void destroy() {
1158 persistedModelLocalServiceRegistry.unregister(
1159 "com.liferay.portlet.bookmarks.model.BookmarksEntry");
1160 }
1161
1162
1167 @Override
1168 public String getBeanIdentifier() {
1169 return _beanIdentifier;
1170 }
1171
1172
1177 @Override
1178 public void setBeanIdentifier(String beanIdentifier) {
1179 _beanIdentifier = beanIdentifier;
1180 }
1181
1182 protected Class<?> getModelClass() {
1183 return BookmarksEntry.class;
1184 }
1185
1186 protected String getModelClassName() {
1187 return BookmarksEntry.class.getName();
1188 }
1189
1190
1195 protected void runSQL(String sql) throws SystemException {
1196 try {
1197 DataSource dataSource = bookmarksEntryPersistence.getDataSource();
1198
1199 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1200 sql, new int[0]);
1201
1202 sqlUpdate.update();
1203 }
1204 catch (Exception e) {
1205 throw new SystemException(e);
1206 }
1207 }
1208
1209 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.class)
1210 protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
1211 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
1212 protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
1213 @BeanReference(type = BookmarksEntryPersistence.class)
1214 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1215 @BeanReference(type = BookmarksEntryFinder.class)
1216 protected BookmarksEntryFinder bookmarksEntryFinder;
1217 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
1218 protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
1219 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
1220 protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
1221 @BeanReference(type = BookmarksFolderPersistence.class)
1222 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1223 @BeanReference(type = BookmarksFolderFinder.class)
1224 protected BookmarksFolderFinder bookmarksFolderFinder;
1225 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1226 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1227 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1228 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1229 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1230 protected com.liferay.portal.service.GroupService groupService;
1231 @BeanReference(type = GroupPersistence.class)
1232 protected GroupPersistence groupPersistence;
1233 @BeanReference(type = GroupFinder.class)
1234 protected GroupFinder groupFinder;
1235 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1236 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1237 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1238 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1239 @BeanReference(type = PortletPreferencesPersistence.class)
1240 protected PortletPreferencesPersistence portletPreferencesPersistence;
1241 @BeanReference(type = PortletPreferencesFinder.class)
1242 protected PortletPreferencesFinder portletPreferencesFinder;
1243 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1244 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1245 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1246 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1247 @BeanReference(type = SubscriptionPersistence.class)
1248 protected SubscriptionPersistence subscriptionPersistence;
1249 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1250 protected com.liferay.portal.service.UserLocalService userLocalService;
1251 @BeanReference(type = com.liferay.portal.service.UserService.class)
1252 protected com.liferay.portal.service.UserService userService;
1253 @BeanReference(type = UserPersistence.class)
1254 protected UserPersistence userPersistence;
1255 @BeanReference(type = UserFinder.class)
1256 protected UserFinder userFinder;
1257 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1258 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1259 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1260 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1261 @BeanReference(type = AssetEntryPersistence.class)
1262 protected AssetEntryPersistence assetEntryPersistence;
1263 @BeanReference(type = AssetEntryFinder.class)
1264 protected AssetEntryFinder assetEntryFinder;
1265 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1266 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1267 @BeanReference(type = AssetLinkPersistence.class)
1268 protected AssetLinkPersistence assetLinkPersistence;
1269 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1270 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1271 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1272 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1273 @BeanReference(type = AssetTagPersistence.class)
1274 protected AssetTagPersistence assetTagPersistence;
1275 @BeanReference(type = AssetTagFinder.class)
1276 protected AssetTagFinder assetTagFinder;
1277 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1278 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1279 @BeanReference(type = ExpandoRowPersistence.class)
1280 protected ExpandoRowPersistence expandoRowPersistence;
1281 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1282 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1283 @BeanReference(type = SocialActivityPersistence.class)
1284 protected SocialActivityPersistence socialActivityPersistence;
1285 @BeanReference(type = SocialActivityFinder.class)
1286 protected SocialActivityFinder socialActivityFinder;
1287 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1288 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1289 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1290 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1291 @BeanReference(type = TrashEntryPersistence.class)
1292 protected TrashEntryPersistence trashEntryPersistence;
1293 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1294 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1295 private String _beanIdentifier;
1296 }