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