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