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