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