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