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.SocialActivityCounterFinder;
053 import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
054 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
055 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
056 import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
057
058 import java.io.Serializable;
059
060 import java.util.List;
061
062 import javax.sql.DataSource;
063
064
076 public abstract class BookmarksEntryLocalServiceBaseImpl
077 extends BaseLocalServiceImpl implements BookmarksEntryLocalService,
078 IdentifiableBean {
079
084
085
092 @Indexable(type = IndexableType.REINDEX)
093 @Override
094 public BookmarksEntry addBookmarksEntry(BookmarksEntry bookmarksEntry)
095 throws SystemException {
096 bookmarksEntry.setNew(true);
097
098 return bookmarksEntryPersistence.update(bookmarksEntry);
099 }
100
101
107 @Override
108 public BookmarksEntry createBookmarksEntry(long entryId) {
109 return bookmarksEntryPersistence.create(entryId);
110 }
111
112
120 @Indexable(type = IndexableType.DELETE)
121 @Override
122 public BookmarksEntry deleteBookmarksEntry(long entryId)
123 throws PortalException, SystemException {
124 return bookmarksEntryPersistence.remove(entryId);
125 }
126
127
134 @Indexable(type = IndexableType.DELETE)
135 @Override
136 public BookmarksEntry deleteBookmarksEntry(BookmarksEntry bookmarksEntry)
137 throws SystemException {
138 return bookmarksEntryPersistence.remove(bookmarksEntry);
139 }
140
141 @Override
142 public DynamicQuery dynamicQuery() {
143 Class<?> clazz = getClass();
144
145 return DynamicQueryFactoryUtil.forClass(BookmarksEntry.class,
146 clazz.getClassLoader());
147 }
148
149
156 @Override
157 @SuppressWarnings("rawtypes")
158 public List dynamicQuery(DynamicQuery dynamicQuery)
159 throws SystemException {
160 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery);
161 }
162
163
176 @Override
177 @SuppressWarnings("rawtypes")
178 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
179 throws SystemException {
180 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
181 start, end);
182 }
183
184
198 @Override
199 @SuppressWarnings("rawtypes")
200 public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
201 OrderByComparator orderByComparator) throws SystemException {
202 return bookmarksEntryPersistence.findWithDynamicQuery(dynamicQuery,
203 start, end, orderByComparator);
204 }
205
206
213 @Override
214 public long dynamicQueryCount(DynamicQuery dynamicQuery)
215 throws SystemException {
216 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery);
217 }
218
219
227 @Override
228 public long dynamicQueryCount(DynamicQuery dynamicQuery,
229 Projection projection) throws SystemException {
230 return bookmarksEntryPersistence.countWithDynamicQuery(dynamicQuery,
231 projection);
232 }
233
234 @Override
235 public BookmarksEntry fetchBookmarksEntry(long entryId)
236 throws SystemException {
237 return bookmarksEntryPersistence.fetchByPrimaryKey(entryId);
238 }
239
240
248 @Override
249 public BookmarksEntry fetchBookmarksEntryByUuidAndCompanyId(String uuid,
250 long companyId) throws SystemException {
251 return bookmarksEntryPersistence.fetchByUuid_C_First(uuid, companyId,
252 null);
253 }
254
255
263 @Override
264 public BookmarksEntry fetchBookmarksEntryByUuidAndGroupId(String uuid,
265 long groupId) throws SystemException {
266 return bookmarksEntryPersistence.fetchByUUID_G(uuid, groupId);
267 }
268
269
277 @Override
278 public BookmarksEntry getBookmarksEntry(long entryId)
279 throws PortalException, SystemException {
280 return bookmarksEntryPersistence.findByPrimaryKey(entryId);
281 }
282
283 @Override
284 public PersistedModel getPersistedModel(Serializable primaryKeyObj)
285 throws PortalException, SystemException {
286 return bookmarksEntryPersistence.findByPrimaryKey(primaryKeyObj);
287 }
288
289
298 @Override
299 public BookmarksEntry getBookmarksEntryByUuidAndCompanyId(String uuid,
300 long companyId) throws PortalException, SystemException {
301 return bookmarksEntryPersistence.findByUuid_C_First(uuid, companyId,
302 null);
303 }
304
305
314 @Override
315 public BookmarksEntry getBookmarksEntryByUuidAndGroupId(String uuid,
316 long groupId) throws PortalException, SystemException {
317 return bookmarksEntryPersistence.findByUUID_G(uuid, groupId);
318 }
319
320
332 @Override
333 public List<BookmarksEntry> getBookmarksEntries(int start, int end)
334 throws SystemException {
335 return bookmarksEntryPersistence.findAll(start, end);
336 }
337
338
344 @Override
345 public int getBookmarksEntriesCount() throws SystemException {
346 return bookmarksEntryPersistence.countAll();
347 }
348
349
356 @Indexable(type = IndexableType.REINDEX)
357 @Override
358 public BookmarksEntry updateBookmarksEntry(BookmarksEntry bookmarksEntry)
359 throws SystemException {
360 return bookmarksEntryPersistence.update(bookmarksEntry);
361 }
362
363
368 public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
369 return bookmarksEntryLocalService;
370 }
371
372
377 public void setBookmarksEntryLocalService(
378 com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
379 this.bookmarksEntryLocalService = bookmarksEntryLocalService;
380 }
381
382
387 public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
388 return bookmarksEntryService;
389 }
390
391
396 public void setBookmarksEntryService(
397 com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
398 this.bookmarksEntryService = bookmarksEntryService;
399 }
400
401
406 public BookmarksEntryPersistence getBookmarksEntryPersistence() {
407 return bookmarksEntryPersistence;
408 }
409
410
415 public void setBookmarksEntryPersistence(
416 BookmarksEntryPersistence bookmarksEntryPersistence) {
417 this.bookmarksEntryPersistence = bookmarksEntryPersistence;
418 }
419
420
425 public BookmarksEntryFinder getBookmarksEntryFinder() {
426 return bookmarksEntryFinder;
427 }
428
429
434 public void setBookmarksEntryFinder(
435 BookmarksEntryFinder bookmarksEntryFinder) {
436 this.bookmarksEntryFinder = bookmarksEntryFinder;
437 }
438
439
444 public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
445 return bookmarksFolderLocalService;
446 }
447
448
453 public void setBookmarksFolderLocalService(
454 com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
455 this.bookmarksFolderLocalService = bookmarksFolderLocalService;
456 }
457
458
463 public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
464 return bookmarksFolderService;
465 }
466
467
472 public void setBookmarksFolderService(
473 com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
474 this.bookmarksFolderService = bookmarksFolderService;
475 }
476
477
482 public BookmarksFolderPersistence getBookmarksFolderPersistence() {
483 return bookmarksFolderPersistence;
484 }
485
486
491 public void setBookmarksFolderPersistence(
492 BookmarksFolderPersistence bookmarksFolderPersistence) {
493 this.bookmarksFolderPersistence = bookmarksFolderPersistence;
494 }
495
496
501 public BookmarksFolderFinder getBookmarksFolderFinder() {
502 return bookmarksFolderFinder;
503 }
504
505
510 public void setBookmarksFolderFinder(
511 BookmarksFolderFinder bookmarksFolderFinder) {
512 this.bookmarksFolderFinder = bookmarksFolderFinder;
513 }
514
515
520 public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
521 return counterLocalService;
522 }
523
524
529 public void setCounterLocalService(
530 com.liferay.counter.service.CounterLocalService counterLocalService) {
531 this.counterLocalService = counterLocalService;
532 }
533
534
539 public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
540 return groupLocalService;
541 }
542
543
548 public void setGroupLocalService(
549 com.liferay.portal.service.GroupLocalService groupLocalService) {
550 this.groupLocalService = groupLocalService;
551 }
552
553
558 public com.liferay.portal.service.GroupService getGroupService() {
559 return groupService;
560 }
561
562
567 public void setGroupService(
568 com.liferay.portal.service.GroupService groupService) {
569 this.groupService = groupService;
570 }
571
572
577 public GroupPersistence getGroupPersistence() {
578 return groupPersistence;
579 }
580
581
586 public void setGroupPersistence(GroupPersistence groupPersistence) {
587 this.groupPersistence = groupPersistence;
588 }
589
590
595 public GroupFinder getGroupFinder() {
596 return groupFinder;
597 }
598
599
604 public void setGroupFinder(GroupFinder groupFinder) {
605 this.groupFinder = groupFinder;
606 }
607
608
613 public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
614 return portletPreferencesLocalService;
615 }
616
617
622 public void setPortletPreferencesLocalService(
623 com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
624 this.portletPreferencesLocalService = portletPreferencesLocalService;
625 }
626
627
632 public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
633 return portletPreferencesService;
634 }
635
636
641 public void setPortletPreferencesService(
642 com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
643 this.portletPreferencesService = portletPreferencesService;
644 }
645
646
651 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
652 return portletPreferencesPersistence;
653 }
654
655
660 public void setPortletPreferencesPersistence(
661 PortletPreferencesPersistence portletPreferencesPersistence) {
662 this.portletPreferencesPersistence = portletPreferencesPersistence;
663 }
664
665
670 public PortletPreferencesFinder getPortletPreferencesFinder() {
671 return portletPreferencesFinder;
672 }
673
674
679 public void setPortletPreferencesFinder(
680 PortletPreferencesFinder portletPreferencesFinder) {
681 this.portletPreferencesFinder = portletPreferencesFinder;
682 }
683
684
689 public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
690 return resourceLocalService;
691 }
692
693
698 public void setResourceLocalService(
699 com.liferay.portal.service.ResourceLocalService resourceLocalService) {
700 this.resourceLocalService = resourceLocalService;
701 }
702
703
708 public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
709 return subscriptionLocalService;
710 }
711
712
717 public void setSubscriptionLocalService(
718 com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
719 this.subscriptionLocalService = subscriptionLocalService;
720 }
721
722
727 public SubscriptionPersistence getSubscriptionPersistence() {
728 return subscriptionPersistence;
729 }
730
731
736 public void setSubscriptionPersistence(
737 SubscriptionPersistence subscriptionPersistence) {
738 this.subscriptionPersistence = subscriptionPersistence;
739 }
740
741
746 public com.liferay.portal.service.UserLocalService getUserLocalService() {
747 return userLocalService;
748 }
749
750
755 public void setUserLocalService(
756 com.liferay.portal.service.UserLocalService userLocalService) {
757 this.userLocalService = userLocalService;
758 }
759
760
765 public com.liferay.portal.service.UserService getUserService() {
766 return userService;
767 }
768
769
774 public void setUserService(
775 com.liferay.portal.service.UserService userService) {
776 this.userService = userService;
777 }
778
779
784 public UserPersistence getUserPersistence() {
785 return userPersistence;
786 }
787
788
793 public void setUserPersistence(UserPersistence userPersistence) {
794 this.userPersistence = userPersistence;
795 }
796
797
802 public UserFinder getUserFinder() {
803 return userFinder;
804 }
805
806
811 public void setUserFinder(UserFinder userFinder) {
812 this.userFinder = userFinder;
813 }
814
815
820 public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
821 return assetEntryLocalService;
822 }
823
824
829 public void setAssetEntryLocalService(
830 com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
831 this.assetEntryLocalService = assetEntryLocalService;
832 }
833
834
839 public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
840 return assetEntryService;
841 }
842
843
848 public void setAssetEntryService(
849 com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
850 this.assetEntryService = assetEntryService;
851 }
852
853
858 public AssetEntryPersistence getAssetEntryPersistence() {
859 return assetEntryPersistence;
860 }
861
862
867 public void setAssetEntryPersistence(
868 AssetEntryPersistence assetEntryPersistence) {
869 this.assetEntryPersistence = assetEntryPersistence;
870 }
871
872
877 public AssetEntryFinder getAssetEntryFinder() {
878 return assetEntryFinder;
879 }
880
881
886 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
887 this.assetEntryFinder = assetEntryFinder;
888 }
889
890
895 public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
896 return assetLinkLocalService;
897 }
898
899
904 public void setAssetLinkLocalService(
905 com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
906 this.assetLinkLocalService = assetLinkLocalService;
907 }
908
909
914 public AssetLinkPersistence getAssetLinkPersistence() {
915 return assetLinkPersistence;
916 }
917
918
923 public void setAssetLinkPersistence(
924 AssetLinkPersistence assetLinkPersistence) {
925 this.assetLinkPersistence = assetLinkPersistence;
926 }
927
928
933 public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
934 return assetTagLocalService;
935 }
936
937
942 public void setAssetTagLocalService(
943 com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
944 this.assetTagLocalService = assetTagLocalService;
945 }
946
947
952 public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
953 return assetTagService;
954 }
955
956
961 public void setAssetTagService(
962 com.liferay.portlet.asset.service.AssetTagService assetTagService) {
963 this.assetTagService = assetTagService;
964 }
965
966
971 public AssetTagPersistence getAssetTagPersistence() {
972 return assetTagPersistence;
973 }
974
975
980 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
981 this.assetTagPersistence = assetTagPersistence;
982 }
983
984
989 public AssetTagFinder getAssetTagFinder() {
990 return assetTagFinder;
991 }
992
993
998 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
999 this.assetTagFinder = assetTagFinder;
1000 }
1001
1002
1007 public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1008 return expandoRowLocalService;
1009 }
1010
1011
1016 public void setExpandoRowLocalService(
1017 com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1018 this.expandoRowLocalService = expandoRowLocalService;
1019 }
1020
1021
1026 public ExpandoRowPersistence getExpandoRowPersistence() {
1027 return expandoRowPersistence;
1028 }
1029
1030
1035 public void setExpandoRowPersistence(
1036 ExpandoRowPersistence expandoRowPersistence) {
1037 this.expandoRowPersistence = expandoRowPersistence;
1038 }
1039
1040
1045 public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1046 return socialActivityLocalService;
1047 }
1048
1049
1054 public void setSocialActivityLocalService(
1055 com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1056 this.socialActivityLocalService = socialActivityLocalService;
1057 }
1058
1059
1064 public SocialActivityPersistence getSocialActivityPersistence() {
1065 return socialActivityPersistence;
1066 }
1067
1068
1073 public void setSocialActivityPersistence(
1074 SocialActivityPersistence socialActivityPersistence) {
1075 this.socialActivityPersistence = socialActivityPersistence;
1076 }
1077
1078
1083 public SocialActivityFinder getSocialActivityFinder() {
1084 return socialActivityFinder;
1085 }
1086
1087
1092 public void setSocialActivityFinder(
1093 SocialActivityFinder socialActivityFinder) {
1094 this.socialActivityFinder = socialActivityFinder;
1095 }
1096
1097
1102 public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1103 return socialActivityCounterLocalService;
1104 }
1105
1106
1111 public void setSocialActivityCounterLocalService(
1112 com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
1113 this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1114 }
1115
1116
1121 public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1122 return socialActivityCounterPersistence;
1123 }
1124
1125
1130 public void setSocialActivityCounterPersistence(
1131 SocialActivityCounterPersistence socialActivityCounterPersistence) {
1132 this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1133 }
1134
1135
1140 public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1141 return socialActivityCounterFinder;
1142 }
1143
1144
1149 public void setSocialActivityCounterFinder(
1150 SocialActivityCounterFinder socialActivityCounterFinder) {
1151 this.socialActivityCounterFinder = socialActivityCounterFinder;
1152 }
1153
1154
1159 public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1160 return trashEntryLocalService;
1161 }
1162
1163
1168 public void setTrashEntryLocalService(
1169 com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1170 this.trashEntryLocalService = trashEntryLocalService;
1171 }
1172
1173
1178 public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1179 return trashEntryService;
1180 }
1181
1182
1187 public void setTrashEntryService(
1188 com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1189 this.trashEntryService = trashEntryService;
1190 }
1191
1192
1197 public TrashEntryPersistence getTrashEntryPersistence() {
1198 return trashEntryPersistence;
1199 }
1200
1201
1206 public void setTrashEntryPersistence(
1207 TrashEntryPersistence trashEntryPersistence) {
1208 this.trashEntryPersistence = trashEntryPersistence;
1209 }
1210
1211 public void afterPropertiesSet() {
1212 persistedModelLocalServiceRegistry.register("com.liferay.portlet.bookmarks.model.BookmarksEntry",
1213 bookmarksEntryLocalService);
1214 }
1215
1216 public void destroy() {
1217 persistedModelLocalServiceRegistry.unregister(
1218 "com.liferay.portlet.bookmarks.model.BookmarksEntry");
1219 }
1220
1221
1226 @Override
1227 public String getBeanIdentifier() {
1228 return _beanIdentifier;
1229 }
1230
1231
1236 @Override
1237 public void setBeanIdentifier(String beanIdentifier) {
1238 _beanIdentifier = beanIdentifier;
1239 }
1240
1241 protected Class<?> getModelClass() {
1242 return BookmarksEntry.class;
1243 }
1244
1245 protected String getModelClassName() {
1246 return BookmarksEntry.class.getName();
1247 }
1248
1249
1254 protected void runSQL(String sql) throws SystemException {
1255 try {
1256 DataSource dataSource = bookmarksEntryPersistence.getDataSource();
1257
1258 SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1259 sql, new int[0]);
1260
1261 sqlUpdate.update();
1262 }
1263 catch (Exception e) {
1264 throw new SystemException(e);
1265 }
1266 }
1267
1268 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.class)
1269 protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
1270 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
1271 protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
1272 @BeanReference(type = BookmarksEntryPersistence.class)
1273 protected BookmarksEntryPersistence bookmarksEntryPersistence;
1274 @BeanReference(type = BookmarksEntryFinder.class)
1275 protected BookmarksEntryFinder bookmarksEntryFinder;
1276 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
1277 protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
1278 @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
1279 protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
1280 @BeanReference(type = BookmarksFolderPersistence.class)
1281 protected BookmarksFolderPersistence bookmarksFolderPersistence;
1282 @BeanReference(type = BookmarksFolderFinder.class)
1283 protected BookmarksFolderFinder bookmarksFolderFinder;
1284 @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1285 protected com.liferay.counter.service.CounterLocalService counterLocalService;
1286 @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1287 protected com.liferay.portal.service.GroupLocalService groupLocalService;
1288 @BeanReference(type = com.liferay.portal.service.GroupService.class)
1289 protected com.liferay.portal.service.GroupService groupService;
1290 @BeanReference(type = GroupPersistence.class)
1291 protected GroupPersistence groupPersistence;
1292 @BeanReference(type = GroupFinder.class)
1293 protected GroupFinder groupFinder;
1294 @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1295 protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1296 @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1297 protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1298 @BeanReference(type = PortletPreferencesPersistence.class)
1299 protected PortletPreferencesPersistence portletPreferencesPersistence;
1300 @BeanReference(type = PortletPreferencesFinder.class)
1301 protected PortletPreferencesFinder portletPreferencesFinder;
1302 @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1303 protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1304 @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1305 protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1306 @BeanReference(type = SubscriptionPersistence.class)
1307 protected SubscriptionPersistence subscriptionPersistence;
1308 @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1309 protected com.liferay.portal.service.UserLocalService userLocalService;
1310 @BeanReference(type = com.liferay.portal.service.UserService.class)
1311 protected com.liferay.portal.service.UserService userService;
1312 @BeanReference(type = UserPersistence.class)
1313 protected UserPersistence userPersistence;
1314 @BeanReference(type = UserFinder.class)
1315 protected UserFinder userFinder;
1316 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1317 protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1318 @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1319 protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1320 @BeanReference(type = AssetEntryPersistence.class)
1321 protected AssetEntryPersistence assetEntryPersistence;
1322 @BeanReference(type = AssetEntryFinder.class)
1323 protected AssetEntryFinder assetEntryFinder;
1324 @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1325 protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1326 @BeanReference(type = AssetLinkPersistence.class)
1327 protected AssetLinkPersistence assetLinkPersistence;
1328 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1329 protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1330 @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1331 protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1332 @BeanReference(type = AssetTagPersistence.class)
1333 protected AssetTagPersistence assetTagPersistence;
1334 @BeanReference(type = AssetTagFinder.class)
1335 protected AssetTagFinder assetTagFinder;
1336 @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1337 protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1338 @BeanReference(type = ExpandoRowPersistence.class)
1339 protected ExpandoRowPersistence expandoRowPersistence;
1340 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1341 protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1342 @BeanReference(type = SocialActivityPersistence.class)
1343 protected SocialActivityPersistence socialActivityPersistence;
1344 @BeanReference(type = SocialActivityFinder.class)
1345 protected SocialActivityFinder socialActivityFinder;
1346 @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
1347 protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
1348 @BeanReference(type = SocialActivityCounterPersistence.class)
1349 protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1350 @BeanReference(type = SocialActivityCounterFinder.class)
1351 protected SocialActivityCounterFinder socialActivityCounterFinder;
1352 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1353 protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1354 @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1355 protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1356 @BeanReference(type = TrashEntryPersistence.class)
1357 protected TrashEntryPersistence trashEntryPersistence;
1358 @BeanReference(type = PersistedModelLocalServiceRegistry.class)
1359 protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
1360 private String _beanIdentifier;
1361 }