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