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