001    /**
002     * Copyright (c) 2000-2013 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.social.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.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.UserFinder;
024    import com.liferay.portal.service.persistence.UserPersistence;
025    
026    import com.liferay.portlet.social.model.SocialRequest;
027    import com.liferay.portlet.social.service.SocialRequestService;
028    import com.liferay.portlet.social.service.persistence.SocialActivityAchievementPersistence;
029    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
030    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
031    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
032    import com.liferay.portlet.social.service.persistence.SocialActivityLimitPersistence;
033    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
034    import com.liferay.portlet.social.service.persistence.SocialActivitySetFinder;
035    import com.liferay.portlet.social.service.persistence.SocialActivitySetPersistence;
036    import com.liferay.portlet.social.service.persistence.SocialActivitySettingPersistence;
037    import com.liferay.portlet.social.service.persistence.SocialRelationPersistence;
038    import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
039    
040    import javax.sql.DataSource;
041    
042    /**
043     * Provides the base implementation for the social request remote service.
044     *
045     * <p>
046     * 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.social.service.impl.SocialRequestServiceImpl}.
047     * </p>
048     *
049     * @author Brian Wing Shun Chan
050     * @see com.liferay.portlet.social.service.impl.SocialRequestServiceImpl
051     * @see com.liferay.portlet.social.service.SocialRequestServiceUtil
052     * @generated
053     */
054    public abstract class SocialRequestServiceBaseImpl extends BaseServiceImpl
055            implements SocialRequestService, IdentifiableBean {
056            /*
057             * NOTE FOR DEVELOPERS:
058             *
059             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.social.service.SocialRequestServiceUtil} to access the social request remote service.
060             */
061    
062            /**
063             * Returns the social activity local service.
064             *
065             * @return the social activity local service
066             */
067            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
068                    return socialActivityLocalService;
069            }
070    
071            /**
072             * Sets the social activity local service.
073             *
074             * @param socialActivityLocalService the social activity local service
075             */
076            public void setSocialActivityLocalService(
077                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
078                    this.socialActivityLocalService = socialActivityLocalService;
079            }
080    
081            /**
082             * Returns the social activity remote service.
083             *
084             * @return the social activity remote service
085             */
086            public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
087                    return socialActivityService;
088            }
089    
090            /**
091             * Sets the social activity remote service.
092             *
093             * @param socialActivityService the social activity remote service
094             */
095            public void setSocialActivityService(
096                    com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
097                    this.socialActivityService = socialActivityService;
098            }
099    
100            /**
101             * Returns the social activity persistence.
102             *
103             * @return the social activity persistence
104             */
105            public SocialActivityPersistence getSocialActivityPersistence() {
106                    return socialActivityPersistence;
107            }
108    
109            /**
110             * Sets the social activity persistence.
111             *
112             * @param socialActivityPersistence the social activity persistence
113             */
114            public void setSocialActivityPersistence(
115                    SocialActivityPersistence socialActivityPersistence) {
116                    this.socialActivityPersistence = socialActivityPersistence;
117            }
118    
119            /**
120             * Returns the social activity finder.
121             *
122             * @return the social activity finder
123             */
124            public SocialActivityFinder getSocialActivityFinder() {
125                    return socialActivityFinder;
126            }
127    
128            /**
129             * Sets the social activity finder.
130             *
131             * @param socialActivityFinder the social activity finder
132             */
133            public void setSocialActivityFinder(
134                    SocialActivityFinder socialActivityFinder) {
135                    this.socialActivityFinder = socialActivityFinder;
136            }
137    
138            /**
139             * Returns the social activity achievement local service.
140             *
141             * @return the social activity achievement local service
142             */
143            public com.liferay.portlet.social.service.SocialActivityAchievementLocalService getSocialActivityAchievementLocalService() {
144                    return socialActivityAchievementLocalService;
145            }
146    
147            /**
148             * Sets the social activity achievement local service.
149             *
150             * @param socialActivityAchievementLocalService the social activity achievement local service
151             */
152            public void setSocialActivityAchievementLocalService(
153                    com.liferay.portlet.social.service.SocialActivityAchievementLocalService socialActivityAchievementLocalService) {
154                    this.socialActivityAchievementLocalService = socialActivityAchievementLocalService;
155            }
156    
157            /**
158             * Returns the social activity achievement persistence.
159             *
160             * @return the social activity achievement persistence
161             */
162            public SocialActivityAchievementPersistence getSocialActivityAchievementPersistence() {
163                    return socialActivityAchievementPersistence;
164            }
165    
166            /**
167             * Sets the social activity achievement persistence.
168             *
169             * @param socialActivityAchievementPersistence the social activity achievement persistence
170             */
171            public void setSocialActivityAchievementPersistence(
172                    SocialActivityAchievementPersistence socialActivityAchievementPersistence) {
173                    this.socialActivityAchievementPersistence = socialActivityAchievementPersistence;
174            }
175    
176            /**
177             * Returns the social activity counter local service.
178             *
179             * @return the social activity counter local service
180             */
181            public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
182                    return socialActivityCounterLocalService;
183            }
184    
185            /**
186             * Sets the social activity counter local service.
187             *
188             * @param socialActivityCounterLocalService the social activity counter local service
189             */
190            public void setSocialActivityCounterLocalService(
191                    com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
192                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
193            }
194    
195            /**
196             * Returns the social activity counter persistence.
197             *
198             * @return the social activity counter persistence
199             */
200            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
201                    return socialActivityCounterPersistence;
202            }
203    
204            /**
205             * Sets the social activity counter persistence.
206             *
207             * @param socialActivityCounterPersistence the social activity counter persistence
208             */
209            public void setSocialActivityCounterPersistence(
210                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
211                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
212            }
213    
214            /**
215             * Returns the social activity counter finder.
216             *
217             * @return the social activity counter finder
218             */
219            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
220                    return socialActivityCounterFinder;
221            }
222    
223            /**
224             * Sets the social activity counter finder.
225             *
226             * @param socialActivityCounterFinder the social activity counter finder
227             */
228            public void setSocialActivityCounterFinder(
229                    SocialActivityCounterFinder socialActivityCounterFinder) {
230                    this.socialActivityCounterFinder = socialActivityCounterFinder;
231            }
232    
233            /**
234             * Returns the social activity interpreter local service.
235             *
236             * @return the social activity interpreter local service
237             */
238            public com.liferay.portlet.social.service.SocialActivityInterpreterLocalService getSocialActivityInterpreterLocalService() {
239                    return socialActivityInterpreterLocalService;
240            }
241    
242            /**
243             * Sets the social activity interpreter local service.
244             *
245             * @param socialActivityInterpreterLocalService the social activity interpreter local service
246             */
247            public void setSocialActivityInterpreterLocalService(
248                    com.liferay.portlet.social.service.SocialActivityInterpreterLocalService socialActivityInterpreterLocalService) {
249                    this.socialActivityInterpreterLocalService = socialActivityInterpreterLocalService;
250            }
251    
252            /**
253             * Returns the social activity limit local service.
254             *
255             * @return the social activity limit local service
256             */
257            public com.liferay.portlet.social.service.SocialActivityLimitLocalService getSocialActivityLimitLocalService() {
258                    return socialActivityLimitLocalService;
259            }
260    
261            /**
262             * Sets the social activity limit local service.
263             *
264             * @param socialActivityLimitLocalService the social activity limit local service
265             */
266            public void setSocialActivityLimitLocalService(
267                    com.liferay.portlet.social.service.SocialActivityLimitLocalService socialActivityLimitLocalService) {
268                    this.socialActivityLimitLocalService = socialActivityLimitLocalService;
269            }
270    
271            /**
272             * Returns the social activity limit persistence.
273             *
274             * @return the social activity limit persistence
275             */
276            public SocialActivityLimitPersistence getSocialActivityLimitPersistence() {
277                    return socialActivityLimitPersistence;
278            }
279    
280            /**
281             * Sets the social activity limit persistence.
282             *
283             * @param socialActivityLimitPersistence the social activity limit persistence
284             */
285            public void setSocialActivityLimitPersistence(
286                    SocialActivityLimitPersistence socialActivityLimitPersistence) {
287                    this.socialActivityLimitPersistence = socialActivityLimitPersistence;
288            }
289    
290            /**
291             * Returns the social activity set local service.
292             *
293             * @return the social activity set local service
294             */
295            public com.liferay.portlet.social.service.SocialActivitySetLocalService getSocialActivitySetLocalService() {
296                    return socialActivitySetLocalService;
297            }
298    
299            /**
300             * Sets the social activity set local service.
301             *
302             * @param socialActivitySetLocalService the social activity set local service
303             */
304            public void setSocialActivitySetLocalService(
305                    com.liferay.portlet.social.service.SocialActivitySetLocalService socialActivitySetLocalService) {
306                    this.socialActivitySetLocalService = socialActivitySetLocalService;
307            }
308    
309            /**
310             * Returns the social activity set persistence.
311             *
312             * @return the social activity set persistence
313             */
314            public SocialActivitySetPersistence getSocialActivitySetPersistence() {
315                    return socialActivitySetPersistence;
316            }
317    
318            /**
319             * Sets the social activity set persistence.
320             *
321             * @param socialActivitySetPersistence the social activity set persistence
322             */
323            public void setSocialActivitySetPersistence(
324                    SocialActivitySetPersistence socialActivitySetPersistence) {
325                    this.socialActivitySetPersistence = socialActivitySetPersistence;
326            }
327    
328            /**
329             * Returns the social activity set finder.
330             *
331             * @return the social activity set finder
332             */
333            public SocialActivitySetFinder getSocialActivitySetFinder() {
334                    return socialActivitySetFinder;
335            }
336    
337            /**
338             * Sets the social activity set finder.
339             *
340             * @param socialActivitySetFinder the social activity set finder
341             */
342            public void setSocialActivitySetFinder(
343                    SocialActivitySetFinder socialActivitySetFinder) {
344                    this.socialActivitySetFinder = socialActivitySetFinder;
345            }
346    
347            /**
348             * Returns the social activity setting local service.
349             *
350             * @return the social activity setting local service
351             */
352            public com.liferay.portlet.social.service.SocialActivitySettingLocalService getSocialActivitySettingLocalService() {
353                    return socialActivitySettingLocalService;
354            }
355    
356            /**
357             * Sets the social activity setting local service.
358             *
359             * @param socialActivitySettingLocalService the social activity setting local service
360             */
361            public void setSocialActivitySettingLocalService(
362                    com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService) {
363                    this.socialActivitySettingLocalService = socialActivitySettingLocalService;
364            }
365    
366            /**
367             * Returns the social activity setting remote service.
368             *
369             * @return the social activity setting remote service
370             */
371            public com.liferay.portlet.social.service.SocialActivitySettingService getSocialActivitySettingService() {
372                    return socialActivitySettingService;
373            }
374    
375            /**
376             * Sets the social activity setting remote service.
377             *
378             * @param socialActivitySettingService the social activity setting remote service
379             */
380            public void setSocialActivitySettingService(
381                    com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService) {
382                    this.socialActivitySettingService = socialActivitySettingService;
383            }
384    
385            /**
386             * Returns the social activity setting persistence.
387             *
388             * @return the social activity setting persistence
389             */
390            public SocialActivitySettingPersistence getSocialActivitySettingPersistence() {
391                    return socialActivitySettingPersistence;
392            }
393    
394            /**
395             * Sets the social activity setting persistence.
396             *
397             * @param socialActivitySettingPersistence the social activity setting persistence
398             */
399            public void setSocialActivitySettingPersistence(
400                    SocialActivitySettingPersistence socialActivitySettingPersistence) {
401                    this.socialActivitySettingPersistence = socialActivitySettingPersistence;
402            }
403    
404            /**
405             * Returns the social relation local service.
406             *
407             * @return the social relation local service
408             */
409            public com.liferay.portlet.social.service.SocialRelationLocalService getSocialRelationLocalService() {
410                    return socialRelationLocalService;
411            }
412    
413            /**
414             * Sets the social relation local service.
415             *
416             * @param socialRelationLocalService the social relation local service
417             */
418            public void setSocialRelationLocalService(
419                    com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService) {
420                    this.socialRelationLocalService = socialRelationLocalService;
421            }
422    
423            /**
424             * Returns the social relation persistence.
425             *
426             * @return the social relation persistence
427             */
428            public SocialRelationPersistence getSocialRelationPersistence() {
429                    return socialRelationPersistence;
430            }
431    
432            /**
433             * Sets the social relation persistence.
434             *
435             * @param socialRelationPersistence the social relation persistence
436             */
437            public void setSocialRelationPersistence(
438                    SocialRelationPersistence socialRelationPersistence) {
439                    this.socialRelationPersistence = socialRelationPersistence;
440            }
441    
442            /**
443             * Returns the social request local service.
444             *
445             * @return the social request local service
446             */
447            public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
448                    return socialRequestLocalService;
449            }
450    
451            /**
452             * Sets the social request local service.
453             *
454             * @param socialRequestLocalService the social request local service
455             */
456            public void setSocialRequestLocalService(
457                    com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
458                    this.socialRequestLocalService = socialRequestLocalService;
459            }
460    
461            /**
462             * Returns the social request remote service.
463             *
464             * @return the social request remote service
465             */
466            public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
467                    return socialRequestService;
468            }
469    
470            /**
471             * Sets the social request remote service.
472             *
473             * @param socialRequestService the social request remote service
474             */
475            public void setSocialRequestService(
476                    com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
477                    this.socialRequestService = socialRequestService;
478            }
479    
480            /**
481             * Returns the social request persistence.
482             *
483             * @return the social request persistence
484             */
485            public SocialRequestPersistence getSocialRequestPersistence() {
486                    return socialRequestPersistence;
487            }
488    
489            /**
490             * Sets the social request persistence.
491             *
492             * @param socialRequestPersistence the social request persistence
493             */
494            public void setSocialRequestPersistence(
495                    SocialRequestPersistence socialRequestPersistence) {
496                    this.socialRequestPersistence = socialRequestPersistence;
497            }
498    
499            /**
500             * Returns the social request interpreter local service.
501             *
502             * @return the social request interpreter local service
503             */
504            public com.liferay.portlet.social.service.SocialRequestInterpreterLocalService getSocialRequestInterpreterLocalService() {
505                    return socialRequestInterpreterLocalService;
506            }
507    
508            /**
509             * Sets the social request interpreter local service.
510             *
511             * @param socialRequestInterpreterLocalService the social request interpreter local service
512             */
513            public void setSocialRequestInterpreterLocalService(
514                    com.liferay.portlet.social.service.SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
515                    this.socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
516            }
517    
518            /**
519             * Returns the counter local service.
520             *
521             * @return the counter local service
522             */
523            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
524                    return counterLocalService;
525            }
526    
527            /**
528             * Sets the counter local service.
529             *
530             * @param counterLocalService the counter local service
531             */
532            public void setCounterLocalService(
533                    com.liferay.counter.service.CounterLocalService counterLocalService) {
534                    this.counterLocalService = counterLocalService;
535            }
536    
537            /**
538             * Returns the resource local service.
539             *
540             * @return the resource local service
541             */
542            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
543                    return resourceLocalService;
544            }
545    
546            /**
547             * Sets the resource local service.
548             *
549             * @param resourceLocalService the resource local service
550             */
551            public void setResourceLocalService(
552                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
553                    this.resourceLocalService = resourceLocalService;
554            }
555    
556            /**
557             * Returns the user local service.
558             *
559             * @return the user local service
560             */
561            public com.liferay.portal.service.UserLocalService getUserLocalService() {
562                    return userLocalService;
563            }
564    
565            /**
566             * Sets the user local service.
567             *
568             * @param userLocalService the user local service
569             */
570            public void setUserLocalService(
571                    com.liferay.portal.service.UserLocalService userLocalService) {
572                    this.userLocalService = userLocalService;
573            }
574    
575            /**
576             * Returns the user remote service.
577             *
578             * @return the user remote service
579             */
580            public com.liferay.portal.service.UserService getUserService() {
581                    return userService;
582            }
583    
584            /**
585             * Sets the user remote service.
586             *
587             * @param userService the user remote service
588             */
589            public void setUserService(
590                    com.liferay.portal.service.UserService userService) {
591                    this.userService = userService;
592            }
593    
594            /**
595             * Returns the user persistence.
596             *
597             * @return the user persistence
598             */
599            public UserPersistence getUserPersistence() {
600                    return userPersistence;
601            }
602    
603            /**
604             * Sets the user persistence.
605             *
606             * @param userPersistence the user persistence
607             */
608            public void setUserPersistence(UserPersistence userPersistence) {
609                    this.userPersistence = userPersistence;
610            }
611    
612            /**
613             * Returns the user finder.
614             *
615             * @return the user finder
616             */
617            public UserFinder getUserFinder() {
618                    return userFinder;
619            }
620    
621            /**
622             * Sets the user finder.
623             *
624             * @param userFinder the user finder
625             */
626            public void setUserFinder(UserFinder userFinder) {
627                    this.userFinder = userFinder;
628            }
629    
630            public void afterPropertiesSet() {
631            }
632    
633            public void destroy() {
634            }
635    
636            /**
637             * Returns the Spring bean ID for this bean.
638             *
639             * @return the Spring bean ID for this bean
640             */
641            @Override
642            public String getBeanIdentifier() {
643                    return _beanIdentifier;
644            }
645    
646            /**
647             * Sets the Spring bean ID for this bean.
648             *
649             * @param beanIdentifier the Spring bean ID for this bean
650             */
651            @Override
652            public void setBeanIdentifier(String beanIdentifier) {
653                    _beanIdentifier = beanIdentifier;
654            }
655    
656            protected Class<?> getModelClass() {
657                    return SocialRequest.class;
658            }
659    
660            protected String getModelClassName() {
661                    return SocialRequest.class.getName();
662            }
663    
664            /**
665             * Performs an SQL query.
666             *
667             * @param sql the sql query
668             */
669            protected void runSQL(String sql) throws SystemException {
670                    try {
671                            DataSource dataSource = socialRequestPersistence.getDataSource();
672    
673                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
674                                            sql, new int[0]);
675    
676                            sqlUpdate.update();
677                    }
678                    catch (Exception e) {
679                            throw new SystemException(e);
680                    }
681            }
682    
683            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
684            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
685            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
686            protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
687            @BeanReference(type = SocialActivityPersistence.class)
688            protected SocialActivityPersistence socialActivityPersistence;
689            @BeanReference(type = SocialActivityFinder.class)
690            protected SocialActivityFinder socialActivityFinder;
691            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityAchievementLocalService.class)
692            protected com.liferay.portlet.social.service.SocialActivityAchievementLocalService socialActivityAchievementLocalService;
693            @BeanReference(type = SocialActivityAchievementPersistence.class)
694            protected SocialActivityAchievementPersistence socialActivityAchievementPersistence;
695            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
696            protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
697            @BeanReference(type = SocialActivityCounterPersistence.class)
698            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
699            @BeanReference(type = SocialActivityCounterFinder.class)
700            protected SocialActivityCounterFinder socialActivityCounterFinder;
701            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityInterpreterLocalService.class)
702            protected com.liferay.portlet.social.service.SocialActivityInterpreterLocalService socialActivityInterpreterLocalService;
703            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLimitLocalService.class)
704            protected com.liferay.portlet.social.service.SocialActivityLimitLocalService socialActivityLimitLocalService;
705            @BeanReference(type = SocialActivityLimitPersistence.class)
706            protected SocialActivityLimitPersistence socialActivityLimitPersistence;
707            @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySetLocalService.class)
708            protected com.liferay.portlet.social.service.SocialActivitySetLocalService socialActivitySetLocalService;
709            @BeanReference(type = SocialActivitySetPersistence.class)
710            protected SocialActivitySetPersistence socialActivitySetPersistence;
711            @BeanReference(type = SocialActivitySetFinder.class)
712            protected SocialActivitySetFinder socialActivitySetFinder;
713            @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingLocalService.class)
714            protected com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService;
715            @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingService.class)
716            protected com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService;
717            @BeanReference(type = SocialActivitySettingPersistence.class)
718            protected SocialActivitySettingPersistence socialActivitySettingPersistence;
719            @BeanReference(type = com.liferay.portlet.social.service.SocialRelationLocalService.class)
720            protected com.liferay.portlet.social.service.SocialRelationLocalService socialRelationLocalService;
721            @BeanReference(type = SocialRelationPersistence.class)
722            protected SocialRelationPersistence socialRelationPersistence;
723            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
724            protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
725            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
726            protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
727            @BeanReference(type = SocialRequestPersistence.class)
728            protected SocialRequestPersistence socialRequestPersistence;
729            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestInterpreterLocalService.class)
730            protected com.liferay.portlet.social.service.SocialRequestInterpreterLocalService socialRequestInterpreterLocalService;
731            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
732            protected com.liferay.counter.service.CounterLocalService counterLocalService;
733            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
734            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
735            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
736            protected com.liferay.portal.service.UserLocalService userLocalService;
737            @BeanReference(type = com.liferay.portal.service.UserService.class)
738            protected com.liferay.portal.service.UserService userService;
739            @BeanReference(type = UserPersistence.class)
740            protected UserPersistence userPersistence;
741            @BeanReference(type = UserFinder.class)
742            protected UserFinder userFinder;
743            private String _beanIdentifier;
744    }