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