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