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