001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.bookmarks.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.exception.SystemException;
024    import com.liferay.portal.service.BaseServiceImpl;
025    import com.liferay.portal.service.PortletPreferencesLocalService;
026    import com.liferay.portal.service.PortletPreferencesService;
027    import com.liferay.portal.service.ResourceLocalService;
028    import com.liferay.portal.service.SubscriptionLocalService;
029    import com.liferay.portal.service.UserLocalService;
030    import com.liferay.portal.service.UserService;
031    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
032    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
033    import com.liferay.portal.service.persistence.SubscriptionPersistence;
034    import com.liferay.portal.service.persistence.UserFinder;
035    import com.liferay.portal.service.persistence.UserPersistence;
036    
037    import com.liferay.portlet.asset.service.AssetEntryLocalService;
038    import com.liferay.portlet.asset.service.AssetEntryService;
039    import com.liferay.portlet.asset.service.AssetLinkLocalService;
040    import com.liferay.portlet.asset.service.AssetTagLocalService;
041    import com.liferay.portlet.asset.service.AssetTagService;
042    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
043    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
044    import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
045    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
046    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
047    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
048    import com.liferay.portlet.bookmarks.model.BookmarksEntry;
049    import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
050    import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
051    import com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService;
052    import com.liferay.portlet.bookmarks.service.BookmarksFolderService;
053    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
054    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
055    import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
056    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
057    import com.liferay.portlet.expando.service.ExpandoValueService;
058    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
059    import com.liferay.portlet.social.service.SocialActivityLocalService;
060    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
061    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
062    
063    import javax.sql.DataSource;
064    
065    /**
066     * The base implementation of the bookmarks entry remote service.
067     *
068     * <p>
069     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portlet.bookmarks.service.impl.BookmarksEntryServiceImpl}.
070     * </p>
071     *
072     * @author Brian Wing Shun Chan
073     * @see com.liferay.portlet.bookmarks.service.impl.BookmarksEntryServiceImpl
074     * @see com.liferay.portlet.bookmarks.service.BookmarksEntryServiceUtil
075     * @generated
076     */
077    public abstract class BookmarksEntryServiceBaseImpl extends BaseServiceImpl
078            implements BookmarksEntryService, IdentifiableBean {
079            /*
080             * NOTE FOR DEVELOPERS:
081             *
082             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.bookmarks.service.BookmarksEntryServiceUtil} to access the bookmarks entry remote service.
083             */
084    
085            /**
086             * Returns the bookmarks entry local service.
087             *
088             * @return the bookmarks entry local service
089             */
090            public BookmarksEntryLocalService getBookmarksEntryLocalService() {
091                    return bookmarksEntryLocalService;
092            }
093    
094            /**
095             * Sets the bookmarks entry local service.
096             *
097             * @param bookmarksEntryLocalService the bookmarks entry local service
098             */
099            public void setBookmarksEntryLocalService(
100                    BookmarksEntryLocalService bookmarksEntryLocalService) {
101                    this.bookmarksEntryLocalService = bookmarksEntryLocalService;
102            }
103    
104            /**
105             * Returns the bookmarks entry remote service.
106             *
107             * @return the bookmarks entry remote service
108             */
109            public BookmarksEntryService getBookmarksEntryService() {
110                    return bookmarksEntryService;
111            }
112    
113            /**
114             * Sets the bookmarks entry remote service.
115             *
116             * @param bookmarksEntryService the bookmarks entry remote service
117             */
118            public void setBookmarksEntryService(
119                    BookmarksEntryService bookmarksEntryService) {
120                    this.bookmarksEntryService = bookmarksEntryService;
121            }
122    
123            /**
124             * Returns the bookmarks entry persistence.
125             *
126             * @return the bookmarks entry persistence
127             */
128            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
129                    return bookmarksEntryPersistence;
130            }
131    
132            /**
133             * Sets the bookmarks entry persistence.
134             *
135             * @param bookmarksEntryPersistence the bookmarks entry persistence
136             */
137            public void setBookmarksEntryPersistence(
138                    BookmarksEntryPersistence bookmarksEntryPersistence) {
139                    this.bookmarksEntryPersistence = bookmarksEntryPersistence;
140            }
141    
142            /**
143             * Returns the bookmarks entry finder.
144             *
145             * @return the bookmarks entry finder
146             */
147            public BookmarksEntryFinder getBookmarksEntryFinder() {
148                    return bookmarksEntryFinder;
149            }
150    
151            /**
152             * Sets the bookmarks entry finder.
153             *
154             * @param bookmarksEntryFinder the bookmarks entry finder
155             */
156            public void setBookmarksEntryFinder(
157                    BookmarksEntryFinder bookmarksEntryFinder) {
158                    this.bookmarksEntryFinder = bookmarksEntryFinder;
159            }
160    
161            /**
162             * Returns the bookmarks folder local service.
163             *
164             * @return the bookmarks folder local service
165             */
166            public BookmarksFolderLocalService getBookmarksFolderLocalService() {
167                    return bookmarksFolderLocalService;
168            }
169    
170            /**
171             * Sets the bookmarks folder local service.
172             *
173             * @param bookmarksFolderLocalService the bookmarks folder local service
174             */
175            public void setBookmarksFolderLocalService(
176                    BookmarksFolderLocalService bookmarksFolderLocalService) {
177                    this.bookmarksFolderLocalService = bookmarksFolderLocalService;
178            }
179    
180            /**
181             * Returns the bookmarks folder remote service.
182             *
183             * @return the bookmarks folder remote service
184             */
185            public BookmarksFolderService getBookmarksFolderService() {
186                    return bookmarksFolderService;
187            }
188    
189            /**
190             * Sets the bookmarks folder remote service.
191             *
192             * @param bookmarksFolderService the bookmarks folder remote service
193             */
194            public void setBookmarksFolderService(
195                    BookmarksFolderService bookmarksFolderService) {
196                    this.bookmarksFolderService = bookmarksFolderService;
197            }
198    
199            /**
200             * Returns the bookmarks folder persistence.
201             *
202             * @return the bookmarks folder persistence
203             */
204            public BookmarksFolderPersistence getBookmarksFolderPersistence() {
205                    return bookmarksFolderPersistence;
206            }
207    
208            /**
209             * Sets the bookmarks folder persistence.
210             *
211             * @param bookmarksFolderPersistence the bookmarks folder persistence
212             */
213            public void setBookmarksFolderPersistence(
214                    BookmarksFolderPersistence bookmarksFolderPersistence) {
215                    this.bookmarksFolderPersistence = bookmarksFolderPersistence;
216            }
217    
218            /**
219             * Returns the counter local service.
220             *
221             * @return the counter local service
222             */
223            public CounterLocalService getCounterLocalService() {
224                    return counterLocalService;
225            }
226    
227            /**
228             * Sets the counter local service.
229             *
230             * @param counterLocalService the counter local service
231             */
232            public void setCounterLocalService(CounterLocalService counterLocalService) {
233                    this.counterLocalService = counterLocalService;
234            }
235    
236            /**
237             * Returns the portlet preferences local service.
238             *
239             * @return the portlet preferences local service
240             */
241            public PortletPreferencesLocalService getPortletPreferencesLocalService() {
242                    return portletPreferencesLocalService;
243            }
244    
245            /**
246             * Sets the portlet preferences local service.
247             *
248             * @param portletPreferencesLocalService the portlet preferences local service
249             */
250            public void setPortletPreferencesLocalService(
251                    PortletPreferencesLocalService portletPreferencesLocalService) {
252                    this.portletPreferencesLocalService = portletPreferencesLocalService;
253            }
254    
255            /**
256             * Returns the portlet preferences remote service.
257             *
258             * @return the portlet preferences remote service
259             */
260            public PortletPreferencesService getPortletPreferencesService() {
261                    return portletPreferencesService;
262            }
263    
264            /**
265             * Sets the portlet preferences remote service.
266             *
267             * @param portletPreferencesService the portlet preferences remote service
268             */
269            public void setPortletPreferencesService(
270                    PortletPreferencesService portletPreferencesService) {
271                    this.portletPreferencesService = portletPreferencesService;
272            }
273    
274            /**
275             * Returns the portlet preferences persistence.
276             *
277             * @return the portlet preferences persistence
278             */
279            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
280                    return portletPreferencesPersistence;
281            }
282    
283            /**
284             * Sets the portlet preferences persistence.
285             *
286             * @param portletPreferencesPersistence the portlet preferences persistence
287             */
288            public void setPortletPreferencesPersistence(
289                    PortletPreferencesPersistence portletPreferencesPersistence) {
290                    this.portletPreferencesPersistence = portletPreferencesPersistence;
291            }
292    
293            /**
294             * Returns the portlet preferences finder.
295             *
296             * @return the portlet preferences finder
297             */
298            public PortletPreferencesFinder getPortletPreferencesFinder() {
299                    return portletPreferencesFinder;
300            }
301    
302            /**
303             * Sets the portlet preferences finder.
304             *
305             * @param portletPreferencesFinder the portlet preferences finder
306             */
307            public void setPortletPreferencesFinder(
308                    PortletPreferencesFinder portletPreferencesFinder) {
309                    this.portletPreferencesFinder = portletPreferencesFinder;
310            }
311    
312            /**
313             * Returns the resource local service.
314             *
315             * @return the resource local service
316             */
317            public ResourceLocalService getResourceLocalService() {
318                    return resourceLocalService;
319            }
320    
321            /**
322             * Sets the resource local service.
323             *
324             * @param resourceLocalService the resource local service
325             */
326            public void setResourceLocalService(
327                    ResourceLocalService resourceLocalService) {
328                    this.resourceLocalService = resourceLocalService;
329            }
330    
331            /**
332             * Returns the subscription local service.
333             *
334             * @return the subscription local service
335             */
336            public SubscriptionLocalService getSubscriptionLocalService() {
337                    return subscriptionLocalService;
338            }
339    
340            /**
341             * Sets the subscription local service.
342             *
343             * @param subscriptionLocalService the subscription local service
344             */
345            public void setSubscriptionLocalService(
346                    SubscriptionLocalService subscriptionLocalService) {
347                    this.subscriptionLocalService = subscriptionLocalService;
348            }
349    
350            /**
351             * Returns the subscription persistence.
352             *
353             * @return the subscription persistence
354             */
355            public SubscriptionPersistence getSubscriptionPersistence() {
356                    return subscriptionPersistence;
357            }
358    
359            /**
360             * Sets the subscription persistence.
361             *
362             * @param subscriptionPersistence the subscription persistence
363             */
364            public void setSubscriptionPersistence(
365                    SubscriptionPersistence subscriptionPersistence) {
366                    this.subscriptionPersistence = subscriptionPersistence;
367            }
368    
369            /**
370             * Returns the user local service.
371             *
372             * @return the user local service
373             */
374            public UserLocalService getUserLocalService() {
375                    return userLocalService;
376            }
377    
378            /**
379             * Sets the user local service.
380             *
381             * @param userLocalService the user local service
382             */
383            public void setUserLocalService(UserLocalService userLocalService) {
384                    this.userLocalService = userLocalService;
385            }
386    
387            /**
388             * Returns the user remote service.
389             *
390             * @return the user remote service
391             */
392            public UserService getUserService() {
393                    return userService;
394            }
395    
396            /**
397             * Sets the user remote service.
398             *
399             * @param userService the user remote service
400             */
401            public void setUserService(UserService userService) {
402                    this.userService = userService;
403            }
404    
405            /**
406             * Returns the user persistence.
407             *
408             * @return the user persistence
409             */
410            public UserPersistence getUserPersistence() {
411                    return userPersistence;
412            }
413    
414            /**
415             * Sets the user persistence.
416             *
417             * @param userPersistence the user persistence
418             */
419            public void setUserPersistence(UserPersistence userPersistence) {
420                    this.userPersistence = userPersistence;
421            }
422    
423            /**
424             * Returns the user finder.
425             *
426             * @return the user finder
427             */
428            public UserFinder getUserFinder() {
429                    return userFinder;
430            }
431    
432            /**
433             * Sets the user finder.
434             *
435             * @param userFinder the user finder
436             */
437            public void setUserFinder(UserFinder userFinder) {
438                    this.userFinder = userFinder;
439            }
440    
441            /**
442             * Returns the asset entry local service.
443             *
444             * @return the asset entry local service
445             */
446            public AssetEntryLocalService getAssetEntryLocalService() {
447                    return assetEntryLocalService;
448            }
449    
450            /**
451             * Sets the asset entry local service.
452             *
453             * @param assetEntryLocalService the asset entry local service
454             */
455            public void setAssetEntryLocalService(
456                    AssetEntryLocalService assetEntryLocalService) {
457                    this.assetEntryLocalService = assetEntryLocalService;
458            }
459    
460            /**
461             * Returns the asset entry remote service.
462             *
463             * @return the asset entry remote service
464             */
465            public AssetEntryService getAssetEntryService() {
466                    return assetEntryService;
467            }
468    
469            /**
470             * Sets the asset entry remote service.
471             *
472             * @param assetEntryService the asset entry remote service
473             */
474            public void setAssetEntryService(AssetEntryService assetEntryService) {
475                    this.assetEntryService = assetEntryService;
476            }
477    
478            /**
479             * Returns the asset entry persistence.
480             *
481             * @return the asset entry persistence
482             */
483            public AssetEntryPersistence getAssetEntryPersistence() {
484                    return assetEntryPersistence;
485            }
486    
487            /**
488             * Sets the asset entry persistence.
489             *
490             * @param assetEntryPersistence the asset entry persistence
491             */
492            public void setAssetEntryPersistence(
493                    AssetEntryPersistence assetEntryPersistence) {
494                    this.assetEntryPersistence = assetEntryPersistence;
495            }
496    
497            /**
498             * Returns the asset entry finder.
499             *
500             * @return the asset entry finder
501             */
502            public AssetEntryFinder getAssetEntryFinder() {
503                    return assetEntryFinder;
504            }
505    
506            /**
507             * Sets the asset entry finder.
508             *
509             * @param assetEntryFinder the asset entry finder
510             */
511            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
512                    this.assetEntryFinder = assetEntryFinder;
513            }
514    
515            /**
516             * Returns the asset link local service.
517             *
518             * @return the asset link local service
519             */
520            public AssetLinkLocalService getAssetLinkLocalService() {
521                    return assetLinkLocalService;
522            }
523    
524            /**
525             * Sets the asset link local service.
526             *
527             * @param assetLinkLocalService the asset link local service
528             */
529            public void setAssetLinkLocalService(
530                    AssetLinkLocalService assetLinkLocalService) {
531                    this.assetLinkLocalService = assetLinkLocalService;
532            }
533    
534            /**
535             * Returns the asset link persistence.
536             *
537             * @return the asset link persistence
538             */
539            public AssetLinkPersistence getAssetLinkPersistence() {
540                    return assetLinkPersistence;
541            }
542    
543            /**
544             * Sets the asset link persistence.
545             *
546             * @param assetLinkPersistence the asset link persistence
547             */
548            public void setAssetLinkPersistence(
549                    AssetLinkPersistence assetLinkPersistence) {
550                    this.assetLinkPersistence = assetLinkPersistence;
551            }
552    
553            /**
554             * Returns the asset link finder.
555             *
556             * @return the asset link finder
557             */
558            public AssetLinkFinder getAssetLinkFinder() {
559                    return assetLinkFinder;
560            }
561    
562            /**
563             * Sets the asset link finder.
564             *
565             * @param assetLinkFinder the asset link finder
566             */
567            public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
568                    this.assetLinkFinder = assetLinkFinder;
569            }
570    
571            /**
572             * Returns the asset tag local service.
573             *
574             * @return the asset tag local service
575             */
576            public AssetTagLocalService getAssetTagLocalService() {
577                    return assetTagLocalService;
578            }
579    
580            /**
581             * Sets the asset tag local service.
582             *
583             * @param assetTagLocalService the asset tag local service
584             */
585            public void setAssetTagLocalService(
586                    AssetTagLocalService assetTagLocalService) {
587                    this.assetTagLocalService = assetTagLocalService;
588            }
589    
590            /**
591             * Returns the asset tag remote service.
592             *
593             * @return the asset tag remote service
594             */
595            public AssetTagService getAssetTagService() {
596                    return assetTagService;
597            }
598    
599            /**
600             * Sets the asset tag remote service.
601             *
602             * @param assetTagService the asset tag remote service
603             */
604            public void setAssetTagService(AssetTagService assetTagService) {
605                    this.assetTagService = assetTagService;
606            }
607    
608            /**
609             * Returns the asset tag persistence.
610             *
611             * @return the asset tag persistence
612             */
613            public AssetTagPersistence getAssetTagPersistence() {
614                    return assetTagPersistence;
615            }
616    
617            /**
618             * Sets the asset tag persistence.
619             *
620             * @param assetTagPersistence the asset tag persistence
621             */
622            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
623                    this.assetTagPersistence = assetTagPersistence;
624            }
625    
626            /**
627             * Returns the asset tag finder.
628             *
629             * @return the asset tag finder
630             */
631            public AssetTagFinder getAssetTagFinder() {
632                    return assetTagFinder;
633            }
634    
635            /**
636             * Sets the asset tag finder.
637             *
638             * @param assetTagFinder the asset tag finder
639             */
640            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
641                    this.assetTagFinder = assetTagFinder;
642            }
643    
644            /**
645             * Returns the expando value local service.
646             *
647             * @return the expando value local service
648             */
649            public ExpandoValueLocalService getExpandoValueLocalService() {
650                    return expandoValueLocalService;
651            }
652    
653            /**
654             * Sets the expando value local service.
655             *
656             * @param expandoValueLocalService the expando value local service
657             */
658            public void setExpandoValueLocalService(
659                    ExpandoValueLocalService expandoValueLocalService) {
660                    this.expandoValueLocalService = expandoValueLocalService;
661            }
662    
663            /**
664             * Returns the expando value remote service.
665             *
666             * @return the expando value remote service
667             */
668            public ExpandoValueService getExpandoValueService() {
669                    return expandoValueService;
670            }
671    
672            /**
673             * Sets the expando value remote service.
674             *
675             * @param expandoValueService the expando value remote service
676             */
677            public void setExpandoValueService(ExpandoValueService expandoValueService) {
678                    this.expandoValueService = expandoValueService;
679            }
680    
681            /**
682             * Returns the expando value persistence.
683             *
684             * @return the expando value persistence
685             */
686            public ExpandoValuePersistence getExpandoValuePersistence() {
687                    return expandoValuePersistence;
688            }
689    
690            /**
691             * Sets the expando value persistence.
692             *
693             * @param expandoValuePersistence the expando value persistence
694             */
695            public void setExpandoValuePersistence(
696                    ExpandoValuePersistence expandoValuePersistence) {
697                    this.expandoValuePersistence = expandoValuePersistence;
698            }
699    
700            /**
701             * Returns the social activity local service.
702             *
703             * @return the social activity local service
704             */
705            public SocialActivityLocalService getSocialActivityLocalService() {
706                    return socialActivityLocalService;
707            }
708    
709            /**
710             * Sets the social activity local service.
711             *
712             * @param socialActivityLocalService the social activity local service
713             */
714            public void setSocialActivityLocalService(
715                    SocialActivityLocalService socialActivityLocalService) {
716                    this.socialActivityLocalService = socialActivityLocalService;
717            }
718    
719            /**
720             * Returns the social activity persistence.
721             *
722             * @return the social activity persistence
723             */
724            public SocialActivityPersistence getSocialActivityPersistence() {
725                    return socialActivityPersistence;
726            }
727    
728            /**
729             * Sets the social activity persistence.
730             *
731             * @param socialActivityPersistence the social activity persistence
732             */
733            public void setSocialActivityPersistence(
734                    SocialActivityPersistence socialActivityPersistence) {
735                    this.socialActivityPersistence = socialActivityPersistence;
736            }
737    
738            /**
739             * Returns the social activity finder.
740             *
741             * @return the social activity finder
742             */
743            public SocialActivityFinder getSocialActivityFinder() {
744                    return socialActivityFinder;
745            }
746    
747            /**
748             * Sets the social activity finder.
749             *
750             * @param socialActivityFinder the social activity finder
751             */
752            public void setSocialActivityFinder(
753                    SocialActivityFinder socialActivityFinder) {
754                    this.socialActivityFinder = socialActivityFinder;
755            }
756    
757            public void afterPropertiesSet() {
758            }
759    
760            public void destroy() {
761            }
762    
763            /**
764             * Returns the Spring bean ID for this bean.
765             *
766             * @return the Spring bean ID for this bean
767             */
768            public String getBeanIdentifier() {
769                    return _beanIdentifier;
770            }
771    
772            /**
773             * Sets the Spring bean ID for this bean.
774             *
775             * @param beanIdentifier the Spring bean ID for this bean
776             */
777            public void setBeanIdentifier(String beanIdentifier) {
778                    _beanIdentifier = beanIdentifier;
779            }
780    
781            protected Class<?> getModelClass() {
782                    return BookmarksEntry.class;
783            }
784    
785            protected String getModelClassName() {
786                    return BookmarksEntry.class.getName();
787            }
788    
789            /**
790             * Performs an SQL query.
791             *
792             * @param sql the sql query
793             */
794            protected void runSQL(String sql) throws SystemException {
795                    try {
796                            DataSource dataSource = bookmarksEntryPersistence.getDataSource();
797    
798                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
799                                            sql, new int[0]);
800    
801                            sqlUpdate.update();
802                    }
803                    catch (Exception e) {
804                            throw new SystemException(e);
805                    }
806            }
807    
808            @BeanReference(type = BookmarksEntryLocalService.class)
809            protected BookmarksEntryLocalService bookmarksEntryLocalService;
810            @BeanReference(type = BookmarksEntryService.class)
811            protected BookmarksEntryService bookmarksEntryService;
812            @BeanReference(type = BookmarksEntryPersistence.class)
813            protected BookmarksEntryPersistence bookmarksEntryPersistence;
814            @BeanReference(type = BookmarksEntryFinder.class)
815            protected BookmarksEntryFinder bookmarksEntryFinder;
816            @BeanReference(type = BookmarksFolderLocalService.class)
817            protected BookmarksFolderLocalService bookmarksFolderLocalService;
818            @BeanReference(type = BookmarksFolderService.class)
819            protected BookmarksFolderService bookmarksFolderService;
820            @BeanReference(type = BookmarksFolderPersistence.class)
821            protected BookmarksFolderPersistence bookmarksFolderPersistence;
822            @BeanReference(type = CounterLocalService.class)
823            protected CounterLocalService counterLocalService;
824            @BeanReference(type = PortletPreferencesLocalService.class)
825            protected PortletPreferencesLocalService portletPreferencesLocalService;
826            @BeanReference(type = PortletPreferencesService.class)
827            protected PortletPreferencesService portletPreferencesService;
828            @BeanReference(type = PortletPreferencesPersistence.class)
829            protected PortletPreferencesPersistence portletPreferencesPersistence;
830            @BeanReference(type = PortletPreferencesFinder.class)
831            protected PortletPreferencesFinder portletPreferencesFinder;
832            @BeanReference(type = ResourceLocalService.class)
833            protected ResourceLocalService resourceLocalService;
834            @BeanReference(type = SubscriptionLocalService.class)
835            protected SubscriptionLocalService subscriptionLocalService;
836            @BeanReference(type = SubscriptionPersistence.class)
837            protected SubscriptionPersistence subscriptionPersistence;
838            @BeanReference(type = UserLocalService.class)
839            protected UserLocalService userLocalService;
840            @BeanReference(type = UserService.class)
841            protected UserService userService;
842            @BeanReference(type = UserPersistence.class)
843            protected UserPersistence userPersistence;
844            @BeanReference(type = UserFinder.class)
845            protected UserFinder userFinder;
846            @BeanReference(type = AssetEntryLocalService.class)
847            protected AssetEntryLocalService assetEntryLocalService;
848            @BeanReference(type = AssetEntryService.class)
849            protected AssetEntryService assetEntryService;
850            @BeanReference(type = AssetEntryPersistence.class)
851            protected AssetEntryPersistence assetEntryPersistence;
852            @BeanReference(type = AssetEntryFinder.class)
853            protected AssetEntryFinder assetEntryFinder;
854            @BeanReference(type = AssetLinkLocalService.class)
855            protected AssetLinkLocalService assetLinkLocalService;
856            @BeanReference(type = AssetLinkPersistence.class)
857            protected AssetLinkPersistence assetLinkPersistence;
858            @BeanReference(type = AssetLinkFinder.class)
859            protected AssetLinkFinder assetLinkFinder;
860            @BeanReference(type = AssetTagLocalService.class)
861            protected AssetTagLocalService assetTagLocalService;
862            @BeanReference(type = AssetTagService.class)
863            protected AssetTagService assetTagService;
864            @BeanReference(type = AssetTagPersistence.class)
865            protected AssetTagPersistence assetTagPersistence;
866            @BeanReference(type = AssetTagFinder.class)
867            protected AssetTagFinder assetTagFinder;
868            @BeanReference(type = ExpandoValueLocalService.class)
869            protected ExpandoValueLocalService expandoValueLocalService;
870            @BeanReference(type = ExpandoValueService.class)
871            protected ExpandoValueService expandoValueService;
872            @BeanReference(type = ExpandoValuePersistence.class)
873            protected ExpandoValuePersistence expandoValuePersistence;
874            @BeanReference(type = SocialActivityLocalService.class)
875            protected SocialActivityLocalService socialActivityLocalService;
876            @BeanReference(type = SocialActivityPersistence.class)
877            protected SocialActivityPersistence socialActivityPersistence;
878            @BeanReference(type = SocialActivityFinder.class)
879            protected SocialActivityFinder socialActivityFinder;
880            private String _beanIdentifier;
881    }