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