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 import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
056
057 import java.io.Serializable;
058
059 import java.util.List;
060
061 import javax.sql.DataSource;
062
063
075 public abstract class BookmarksEntryLocalServiceBaseImpl
076 extends BaseLocalServiceImpl implements BookmarksEntryLocalService,
077 IdentifiableBean {
078
083
084
091 @Indexable(type = IndexableType.REINDEX)
092 @Override
093 public BookmarksEntry addBookmarksEntry(BookmarksEntry bookmarksEntry)
094 throws SystemException {
095 bookmarksEntry.setNew(true);
096
097 return bookmarksEntryPersistence.update(bookmarksEntry);
098 }
099
100
106 @Override
107 public BookmarksEntry createBookmarksEntry(long entryId) {
108 return bookmarksEntryPersistence.create(entryId);
109 }
110
111
119 @Indexable(type = IndexableType.DELETE)
120 @Override
121 public BookmarksEntry deleteBookmarksEntry(long entryId)
122 throws PortalException, SystemException {
123 return bookmarksEntryPersistence.remove(entryId);
124 }
125
126
133 @Indexable(type = IndexableType.DELETE)
134 @Override
135 public BookmarksEntry deleteBookmarksEntry(BookmarksEntry bookmarksEntry)
136 throws SystemException {
137 return bookmarksEntryPersistence.remove(bookmarksEntry);
138 }
139
140 @Override
141 public DynamicQuery dynamicQuery() {
142 Class<?> clazz = getClass();
143
144 return DynamicQueryFactoryUtil.forClass(BookmarksEntry.class,
145 clazz.getClassLoader());
146 }
147
148
155 @Override
156 @SuppressWarnings("rawtypes")
157 public List dynamicQuery(DynamicQuery dynamicQuery)
158 throws SystemException {
159 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery);
160 }
161
162
175 @Override
176 @SuppressWarnings("rawtypes")
177 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
178 throws SystemException {
179 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
180 start, end);
181 }
182
183
197 @Override
198 @SuppressWarnings("rawtypes")
199 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
200 OrderByComparator orderByComparator) throws SystemException {
201 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
202 start, end, orderByComparator);
203 }
204
205
212 @Override
213 public long dynamicQueryCount(DynamicQuery dynamicQuery)
214 throws SystemException {
215 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery);
216 }
217
218
226 @Override
227 public long dynamicQueryCount(DynamicQuery dynamicQuery,
228 Projection projection) throws SystemException {
229 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery,
230 projection);
231 }
232
233 @Override
234 public BookmarksEntry fetchBookmarksEntry(long entryId)
235 throws SystemException {
236 return bookmarksEntryPersistence.fetchByPrimaryKey(entryId);
237 }
238
239
247 @Override
248 public BookmarksEntry fetchBookmarksEntryByUuidAndCompanyId(String uuid,
249 long companyId) throws SystemException {
250 return bookmarksEntryPersistence.fetchByUuid_C_First(uuid, companyId,
251 null);
252 }
253
254
262 @Override
263 public BookmarksEntry fetchBookmarksEntryByUuidAndGroupId(String uuid,
264 long groupId) throws SystemException {
265 return bookmarksEntryPersistence.fetchByUUID_G(uuid, groupId);
266 }
267
268
276 @Override
277 public BookmarksEntry getBookmarksEntry(long entryId)
278 throws PortalException, SystemException {
279 return bookmarksEntryPersistence.findByPrimaryKey(entryId);
280 }
281
282 @Override
283 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
284 throws PortalException, SystemException {
285 return bookmarksEntryPersistence.findByPrimaryKey(primaryKeyObj);
286 }
287
288
297 @Override
298 public BookmarksEntry getBookmarksEntryByUuidAndCompanyId(String uuid,
299 long companyId) throws PortalException, SystemException {
300 return bookmarksEntryPersistence.findByUuid_C_First(uuid, companyId,
301 null);
302 }
303
304
313 @Override
314 public BookmarksEntry getBookmarksEntryByUuidAndGroupId(String uuid,
315 long groupId) throws PortalException, SystemException {
316 return bookmarksEntryPersistence.findByUUID_G(uuid, groupId);
317 }
318
319
331 @Override
332 public List<BookmarksEntry> getBookmarksEntries(int start, int end)
333 throws SystemException {
334 return bookmarksEntryPersistence.findAll(start, end);
335 }
336
337
343 @Override
344 public int getBookmarksEntriesCount() throws SystemException {
345 return bookmarksEntryPersistence.countAll();
346 }
347
348
355 @Indexable(type = IndexableType.REINDEX)
356 @Override
357 public BookmarksEntry updateBookmarksEntry(BookmarksEntry bookmarksEntry)
358 throws SystemException {
359 return bookmarksEntryPersistence.update(bookmarksEntry);
360 }
361
362
367 public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
368 return bookmarksEntryLocalService;
369 }
370
371
376 public void setBookmarksEntryLocalService(
377 com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
378 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
379 }
380
381
386 public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
387 return bookmarksEntryService;
388 }
389
390
395 public void setBookmarksEntryService(
396 com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
397 this.bookmarksEntryService = bookmarksEntryService;
398 }
399
400
405 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
406 return bookmarksEntryPersistence;
407 }
408
409
414 public void setBookmarksEntryPersistence(
415 BookmarksEntryPersistence bookmarksEntryPersistence) {
416 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
417 }
418
419
424 public BookmarksEntryFinder getBookmarksEntryFinder() {
425 return bookmarksEntryFinder;
426 }
427
428
433 public void setBookmarksEntryFinder(
434 BookmarksEntryFinder bookmarksEntryFinder) {
435 this.bookmarksEntryFinder = bookmarksEntryFinder;
436 }
437
438
443 public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
444 return bookmarksFolderLocalService;
445 }
446
447
452 public void setBookmarksFolderLocalService(
453 com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
454 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
455 }
456
457
462 public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
463 return bookmarksFolderService;
464 }
465
466
471 public void setBookmarksFolderService(
472 com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
473 this.bookmarksFolderService = bookmarksFolderService;
474 }
475
476
481 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
482 return bookmarksFolderPersistence;
483 }
484
485
490 public void setBookmarksFolderPersistence(
491 BookmarksFolderPersistence bookmarksFolderPersistence) {
492 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
493 }
494
495
500 public BookmarksFolderFinder getBookmarksFolderFinder() {
501 return bookmarksFolderFinder;
502 }
503
504
509 public void setBookmarksFolderFinder(
510 BookmarksFolderFinder bookmarksFolderFinder) {
511 this.bookmarksFolderFinder = bookmarksFolderFinder;
512 }
513
514
519 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
520 return counterLocalService;
521 }
522
523
528 public void setCounterLocalService(
529 com.liferay.counter.service.CounterLocalService counterLocalService) {
530 this.counterLocalService = counterLocalService;
531 }
532
533
538 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
539 return groupLocalService;
540 }
541
542
547 public void setGroupLocalService(
548 com.liferay.portal.service.GroupLocalService groupLocalService) {
549 this.groupLocalService = groupLocalService;
550 }
551
552
557 public com.liferay.portal.service.GroupService getGroupService() {
558 return groupService;
559 }
560
561
566 public void setGroupService(
567 com.liferay.portal.service.GroupService groupService) {
568 this.groupService = groupService;
569 }
570
571
576 public GroupPersistence getGroupPersistence() {
577 return groupPersistence;
578 }
579
580
585 public void setGroupPersistence(GroupPersistence groupPersistence) {
586 this.groupPersistence = groupPersistence;
587 }
588
589
594 public GroupFinder getGroupFinder() {
595 return groupFinder;
596 }
597
598
603 public void setGroupFinder(GroupFinder groupFinder) {
604 this.groupFinder = groupFinder;
605 }
606
607
612 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
613 return portletPreferencesLocalService;
614 }
615
616
621 public void setPortletPreferencesLocalService(
622 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
623 this.portletPreferencesLocalService = portletPreferencesLocalService;
624 }
625
626
631 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
632 return portletPreferencesService;
633 }
634
635
640 public void setPortletPreferencesService(
641 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
642 this.portletPreferencesService = portletPreferencesService;
643 }
644
645
650 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
651 return portletPreferencesPersistence;
652 }
653
654
659 public void setPortletPreferencesPersistence(
660 PortletPreferencesPersistence portletPreferencesPersistence) {
661 this.portletPreferencesPersistence = portletPreferencesPersistence;
662 }
663
664
669 public PortletPreferencesFinder getPortletPreferencesFinder() {
670 return portletPreferencesFinder;
671 }
672
673
678 public void setPortletPreferencesFinder(
679 PortletPreferencesFinder portletPreferencesFinder) {
680 this.portletPreferencesFinder = portletPreferencesFinder;
681 }
682
683
688 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
689 return resourceLocalService;
690 }
691
692
697 public void setResourceLocalService(
698 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
699 this.resourceLocalService = resourceLocalService;
700 }
701
702
707 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
708 return subscriptionLocalService;
709 }
710
711
716 public void setSubscriptionLocalService(
717 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
718 this.subscriptionLocalService = subscriptionLocalService;
719 }
720
721
726 public SubscriptionPersistence getSubscriptionPersistence() {
727 return subscriptionPersistence;
728 }
729
730
735 public void setSubscriptionPersistence(
736 SubscriptionPersistence subscriptionPersistence) {
737 this.subscriptionPersistence = subscriptionPersistence;
738 }
739
740
745 public com.liferay.portal.service.UserLocalService getUserLocalService() {
746 return userLocalService;
747 }
748
749
754 public void setUserLocalService(
755 com.liferay.portal.service.UserLocalService userLocalService) {
756 this.userLocalService = userLocalService;
757 }
758
759
764 public com.liferay.portal.service.UserService getUserService() {
765 return userService;
766 }
767
768
773 public void setUserService(
774 com.liferay.portal.service.UserService userService) {
775 this.userService = userService;
776 }
777
778
783 public UserPersistence getUserPersistence() {
784 return userPersistence;
785 }
786
787
792 public void setUserPersistence(UserPersistence userPersistence) {
793 this.userPersistence = userPersistence;
794 }
795
796
801 public UserFinder getUserFinder() {
802 return userFinder;
803 }
804
805
810 public void setUserFinder(UserFinder userFinder) {
811 this.userFinder = userFinder;
812 }
813
814
819 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
820 return assetEntryLocalService;
821 }
822
823
828 public void setAssetEntryLocalService(
829 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
830 this.assetEntryLocalService = assetEntryLocalService;
831 }
832
833
838 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
839 return assetEntryService;
840 }
841
842
847 public void setAssetEntryService(
848 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
849 this.assetEntryService = assetEntryService;
850 }
851
852
857 public AssetEntryPersistence getAssetEntryPersistence() {
858 return assetEntryPersistence;
859 }
860
861
866 public void setAssetEntryPersistence(
867 AssetEntryPersistence assetEntryPersistence) {
868 this.assetEntryPersistence = assetEntryPersistence;
869 }
870
871
876 public AssetEntryFinder getAssetEntryFinder() {
877 return assetEntryFinder;
878 }
879
880
885 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
886 this.assetEntryFinder = assetEntryFinder;
887 }
888
889
894 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
895 return assetLinkLocalService;
896 }
897
898
903 public void setAssetLinkLocalService(
904 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
905 this.assetLinkLocalService = assetLinkLocalService;
906 }
907
908
913 public AssetLinkPersistence getAssetLinkPersistence() {
914 return assetLinkPersistence;
915 }
916
917
922 public void setAssetLinkPersistence(
923 AssetLinkPersistence assetLinkPersistence) {
924 this.assetLinkPersistence = assetLinkPersistence;
925 }
926
927
932 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
933 return assetTagLocalService;
934 }
935
936
941 public void setAssetTagLocalService(
942 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
943 this.assetTagLocalService = assetTagLocalService;
944 }
945
946
951 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
952 return assetTagService;
953 }
954
955
960 public void setAssetTagService(
961 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
962 this.assetTagService = assetTagService;
963 }
964
965
970 public AssetTagPersistence getAssetTagPersistence() {
971 return assetTagPersistence;
972 }
973
974
979 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
980 this.assetTagPersistence = assetTagPersistence;
981 }
982
983
988 public AssetTagFinder getAssetTagFinder() {
989 return assetTagFinder;
990 }
991
992
997 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
998 this.assetTagFinder = assetTagFinder;
999 }
1000
1001
1006 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1007 return expandoRowLocalService;
1008 }
1009
1010
1015 public void setExpandoRowLocalService(
1016 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1017 this.expandoRowLocalService = expandoRowLocalService;
1018 }
1019
1020
1025 public ExpandoRowPersistence getExpandoRowPersistence() {
1026 return expandoRowPersistence;
1027 }
1028
1029
1034 public void setExpandoRowPersistence(
1035 ExpandoRowPersistence expandoRowPersistence) {
1036 this.expandoRowPersistence = expandoRowPersistence;
1037 }
1038
1039
1044 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1045 return socialActivityLocalService;
1046 }
1047
1048
1053 public void setSocialActivityLocalService(
1054 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1055 this.socialActivityLocalService = socialActivityLocalService;
1056 }
1057
1058
1063 public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1064 return socialActivityService;
1065 }
1066
1067
1072 public void setSocialActivityService(
1073 com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1074 this.socialActivityService = socialActivityService;
1075 }
1076
1077
1082 public SocialActivityPersistence getSocialActivityPersistence() {
1083 return socialActivityPersistence;
1084 }
1085
1086
1091 public void setSocialActivityPersistence(
1092 SocialActivityPersistence socialActivityPersistence) {
1093 this.socialActivityPersistence = socialActivityPersistence;
1094 }
1095
1096
1101 public SocialActivityFinder getSocialActivityFinder() {
1102 return socialActivityFinder;
1103 }
1104
1105
1110 public void setSocialActivityFinder(
1111 SocialActivityFinder socialActivityFinder) {
1112 this.socialActivityFinder = socialActivityFinder;
1113 }
1114
1115
1120 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1121 return trashEntryLocalService;
1122 }
1123
1124
1129 public void setTrashEntryLocalService(
1130 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1131 this.trashEntryLocalService = trashEntryLocalService;
1132 }
1133
1134
1139 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1140 return trashEntryService;
1141 }
1142
1143
1148 public void setTrashEntryService(
1149 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1150 this.trashEntryService = trashEntryService;
1151 }
1152
1153
1158 public TrashEntryPersistence getTrashEntryPersistence() {
1159 return trashEntryPersistence;
1160 }
1161
1162
1167 public void setTrashEntryPersistence(
1168 TrashEntryPersistence trashEntryPersistence) {
1169 this.trashEntryPersistence = trashEntryPersistence;
1170 }
1171
1172
1177 public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
1178 return trashVersionLocalService;
1179 }
1180
1181
1186 public void setTrashVersionLocalService(
1187 com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
1188 this.trashVersionLocalService = trashVersionLocalService;
1189 }
1190
1191
1196 public TrashVersionPersistence getTrashVersionPersistence() {
1197 return trashVersionPersistence;
1198 }
1199
1200
1205 public void setTrashVersionPersistence(
1206 TrashVersionPersistence trashVersionPersistence) {
1207 this.trashVersionPersistence = trashVersionPersistence;
1208 }
1209
1210 public void afterPropertiesSet() {
1211 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksEntry",
1212 bookmarksEntryLocalService);
1213 }
1214
1215 public void destroy() {
1216 persistedModelLocalServiceRegistry.unregister(
1217 "com.liferay.portlet.bookmarks.model.BookmarksEntry");
1218 }
1219
1220
1225 @Override
1226 public String getBeanIdentifier() {
1227 return _beanIdentifier;
1228 }
1229
1230
1235 @Override
1236 public void setBeanIdentifier(String beanIdentifier) {
1237 _beanIdentifier = beanIdentifier;
1238 }
1239
1240 protected Class<?> getModelClass() {
1241 return BookmarksEntry.class;
1242 }
1243
1244 protected String getModelClassName() {
1245 return BookmarksEntry.class.getName();
1246 }
1247
1248
1253 protected void runSQL(String sql) throws SystemException {
1254 try {
1255 DataSource dataSource = bookmarksEntryPersistence.getDataSource();
1256
1257 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1258 sql, new int[0]);
1259
1260 sqlUpdate.update();
1261 }
1262 catch (Exception e) {
1263 throw new SystemException(e);
1264 }
1265 }
1266
1267 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.class)
1268 protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
1269 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
1270 protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
1271 @BeanReference(type = BookmarksEntryPersistence.class)
1272 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1273 @BeanReference(type = BookmarksEntryFinder.class)
1274 protected BookmarksEntryFinder bookmarksEntryFinder;
1275 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
1276 protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
1277 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
1278 protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
1279 @BeanReference(type = BookmarksFolderPersistence.class)
1280 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1281 @BeanReference(type = BookmarksFolderFinder.class)
1282 protected BookmarksFolderFinder bookmarksFolderFinder;
1283 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1284 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1285 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1286 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1287 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1288 protected com.liferay.portal.service.GroupService groupService;
1289 @BeanReference(type = GroupPersistence.class)
1290 protected GroupPersistence groupPersistence;
1291 @BeanReference(type = GroupFinder.class)
1292 protected GroupFinder groupFinder;
1293 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1294 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1295 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1296 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1297 @BeanReference(type = PortletPreferencesPersistence.class)
1298 protected PortletPreferencesPersistence portletPreferencesPersistence;
1299 @BeanReference(type = PortletPreferencesFinder.class)
1300 protected PortletPreferencesFinder portletPreferencesFinder;
1301 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1302 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1303 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1304 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1305 @BeanReference(type = SubscriptionPersistence.class)
1306 protected SubscriptionPersistence subscriptionPersistence;
1307 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1308 protected com.liferay.portal.service.UserLocalService userLocalService;
1309 @BeanReference(type = com.liferay.portal.service.UserService.class)
1310 protected com.liferay.portal.service.UserService userService;
1311 @BeanReference(type = UserPersistence.class)
1312 protected UserPersistence userPersistence;
1313 @BeanReference(type = UserFinder.class)
1314 protected UserFinder userFinder;
1315 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1316 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1317 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1318 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1319 @BeanReference(type = AssetEntryPersistence.class)
1320 protected AssetEntryPersistence assetEntryPersistence;
1321 @BeanReference(type = AssetEntryFinder.class)
1322 protected AssetEntryFinder assetEntryFinder;
1323 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1324 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1325 @BeanReference(type = AssetLinkPersistence.class)
1326 protected AssetLinkPersistence assetLinkPersistence;
1327 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1328 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1329 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1330 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1331 @BeanReference(type = AssetTagPersistence.class)
1332 protected AssetTagPersistence assetTagPersistence;
1333 @BeanReference(type = AssetTagFinder.class)
1334 protected AssetTagFinder assetTagFinder;
1335 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1336 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1337 @BeanReference(type = ExpandoRowPersistence.class)
1338 protected ExpandoRowPersistence expandoRowPersistence;
1339 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1340 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1341 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
1342 protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
1343 @BeanReference(type = SocialActivityPersistence.class)
1344 protected SocialActivityPersistence socialActivityPersistence;
1345 @BeanReference(type = SocialActivityFinder.class)
1346 protected SocialActivityFinder socialActivityFinder;
1347 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1348 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1349 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1350 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1351 @BeanReference(type = TrashEntryPersistence.class)
1352 protected TrashEntryPersistence trashEntryPersistence;
1353 @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
1354 protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
1355 @BeanReference(type = TrashVersionPersistence.class)
1356 protected TrashVersionPersistence trashVersionPersistence;
1357 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1358 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1359 private String _beanIdentifier;
1360 }