001    /**
002     * Copyright (c) 2000-2012 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.documentlibrary.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.exception.SystemException;
024    import com.liferay.portal.kernel.util.InfrastructureUtil;
025    import com.liferay.portal.service.BaseLocalServiceImpl;
026    import com.liferay.portal.service.GroupLocalService;
027    import com.liferay.portal.service.GroupService;
028    import com.liferay.portal.service.ImageLocalService;
029    import com.liferay.portal.service.ImageService;
030    import com.liferay.portal.service.LayoutLocalService;
031    import com.liferay.portal.service.LayoutService;
032    import com.liferay.portal.service.LockLocalService;
033    import com.liferay.portal.service.ResourceLocalService;
034    import com.liferay.portal.service.SubscriptionLocalService;
035    import com.liferay.portal.service.UserLocalService;
036    import com.liferay.portal.service.UserService;
037    import com.liferay.portal.service.WebDAVPropsLocalService;
038    import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
039    import com.liferay.portal.service.persistence.GroupFinder;
040    import com.liferay.portal.service.persistence.GroupPersistence;
041    import com.liferay.portal.service.persistence.ImagePersistence;
042    import com.liferay.portal.service.persistence.LayoutFinder;
043    import com.liferay.portal.service.persistence.LayoutPersistence;
044    import com.liferay.portal.service.persistence.LockFinder;
045    import com.liferay.portal.service.persistence.LockPersistence;
046    import com.liferay.portal.service.persistence.SubscriptionPersistence;
047    import com.liferay.portal.service.persistence.UserFinder;
048    import com.liferay.portal.service.persistence.UserPersistence;
049    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
050    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
051    
052    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
053    import com.liferay.portlet.asset.service.AssetCategoryService;
054    import com.liferay.portlet.asset.service.AssetEntryLocalService;
055    import com.liferay.portlet.asset.service.AssetEntryService;
056    import com.liferay.portlet.asset.service.AssetLinkLocalService;
057    import com.liferay.portlet.asset.service.AssetTagLocalService;
058    import com.liferay.portlet.asset.service.AssetTagService;
059    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
060    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
061    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
062    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
063    import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
064    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
065    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
066    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
067    import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
068    import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
069    import com.liferay.portlet.documentlibrary.service.DLAppService;
070    import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
071    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
072    import com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService;
073    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
074    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService;
075    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
076    import com.liferay.portlet.documentlibrary.service.DLFileRankLocalService;
077    import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
078    import com.liferay.portlet.documentlibrary.service.DLFileShortcutService;
079    import com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService;
080    import com.liferay.portlet.documentlibrary.service.DLFileVersionService;
081    import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
082    import com.liferay.portlet.documentlibrary.service.DLFolderService;
083    import com.liferay.portlet.documentlibrary.service.DLSyncLocalService;
084    import com.liferay.portlet.documentlibrary.service.DLSyncService;
085    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
086    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
087    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
088    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
089    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
090    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
091    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
092    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
093    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
094    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
095    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
096    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
097    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncFinder;
098    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncPersistence;
099    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
100    import com.liferay.portlet.expando.service.ExpandoValueService;
101    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
102    import com.liferay.portlet.messageboards.service.MBDiscussionLocalService;
103    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
104    import com.liferay.portlet.messageboards.service.MBMessageService;
105    import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
106    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
107    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
108    import com.liferay.portlet.ratings.service.RatingsEntryLocalService;
109    import com.liferay.portlet.ratings.service.RatingsEntryService;
110    import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
111    import com.liferay.portlet.ratings.service.persistence.RatingsEntryFinder;
112    import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence;
113    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
114    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
115    import com.liferay.portlet.social.service.SocialActivityCounterLocalService;
116    import com.liferay.portlet.social.service.SocialActivityLocalService;
117    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
118    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
119    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
120    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
121    import com.liferay.portlet.trash.service.TrashEntryLocalService;
122    import com.liferay.portlet.trash.service.TrashEntryService;
123    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
124    
125    import javax.sql.DataSource;
126    
127    /**
128     * The base implementation of the d l app helper local service.
129     *
130     * <p>
131     * 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.documentlibrary.service.impl.DLAppHelperLocalServiceImpl}.
132     * </p>
133     *
134     * @author Brian Wing Shun Chan
135     * @see com.liferay.portlet.documentlibrary.service.impl.DLAppHelperLocalServiceImpl
136     * @see com.liferay.portlet.documentlibrary.service.DLAppHelperLocalServiceUtil
137     * @generated
138     */
139    public abstract class DLAppHelperLocalServiceBaseImpl
140            extends BaseLocalServiceImpl implements DLAppHelperLocalService,
141                    IdentifiableBean {
142            /*
143             * NOTE FOR DEVELOPERS:
144             *
145             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLAppHelperLocalServiceUtil} to access the d l app helper local service.
146             */
147    
148            /**
149             * Returns the d l app local service.
150             *
151             * @return the d l app local service
152             */
153            public DLAppLocalService getDLAppLocalService() {
154                    return dlAppLocalService;
155            }
156    
157            /**
158             * Sets the d l app local service.
159             *
160             * @param dlAppLocalService the d l app local service
161             */
162            public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
163                    this.dlAppLocalService = dlAppLocalService;
164            }
165    
166            /**
167             * Returns the d l app remote service.
168             *
169             * @return the d l app remote service
170             */
171            public DLAppService getDLAppService() {
172                    return dlAppService;
173            }
174    
175            /**
176             * Sets the d l app remote service.
177             *
178             * @param dlAppService the d l app remote service
179             */
180            public void setDLAppService(DLAppService dlAppService) {
181                    this.dlAppService = dlAppService;
182            }
183    
184            /**
185             * Returns the d l app helper local service.
186             *
187             * @return the d l app helper local service
188             */
189            public DLAppHelperLocalService getDLAppHelperLocalService() {
190                    return dlAppHelperLocalService;
191            }
192    
193            /**
194             * Sets the d l app helper local service.
195             *
196             * @param dlAppHelperLocalService the d l app helper local service
197             */
198            public void setDLAppHelperLocalService(
199                    DLAppHelperLocalService dlAppHelperLocalService) {
200                    this.dlAppHelperLocalService = dlAppHelperLocalService;
201            }
202    
203            /**
204             * Returns the document library content local service.
205             *
206             * @return the document library content local service
207             */
208            public DLContentLocalService getDLContentLocalService() {
209                    return dlContentLocalService;
210            }
211    
212            /**
213             * Sets the document library content local service.
214             *
215             * @param dlContentLocalService the document library content local service
216             */
217            public void setDLContentLocalService(
218                    DLContentLocalService dlContentLocalService) {
219                    this.dlContentLocalService = dlContentLocalService;
220            }
221    
222            /**
223             * Returns the document library content persistence.
224             *
225             * @return the document library content persistence
226             */
227            public DLContentPersistence getDLContentPersistence() {
228                    return dlContentPersistence;
229            }
230    
231            /**
232             * Sets the document library content persistence.
233             *
234             * @param dlContentPersistence the document library content persistence
235             */
236            public void setDLContentPersistence(
237                    DLContentPersistence dlContentPersistence) {
238                    this.dlContentPersistence = dlContentPersistence;
239            }
240    
241            /**
242             * Returns the document library file entry local service.
243             *
244             * @return the document library file entry local service
245             */
246            public DLFileEntryLocalService getDLFileEntryLocalService() {
247                    return dlFileEntryLocalService;
248            }
249    
250            /**
251             * Sets the document library file entry local service.
252             *
253             * @param dlFileEntryLocalService the document library file entry local service
254             */
255            public void setDLFileEntryLocalService(
256                    DLFileEntryLocalService dlFileEntryLocalService) {
257                    this.dlFileEntryLocalService = dlFileEntryLocalService;
258            }
259    
260            /**
261             * Returns the document library file entry remote service.
262             *
263             * @return the document library file entry remote service
264             */
265            public DLFileEntryService getDLFileEntryService() {
266                    return dlFileEntryService;
267            }
268    
269            /**
270             * Sets the document library file entry remote service.
271             *
272             * @param dlFileEntryService the document library file entry remote service
273             */
274            public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
275                    this.dlFileEntryService = dlFileEntryService;
276            }
277    
278            /**
279             * Returns the document library file entry persistence.
280             *
281             * @return the document library file entry persistence
282             */
283            public DLFileEntryPersistence getDLFileEntryPersistence() {
284                    return dlFileEntryPersistence;
285            }
286    
287            /**
288             * Sets the document library file entry persistence.
289             *
290             * @param dlFileEntryPersistence the document library file entry persistence
291             */
292            public void setDLFileEntryPersistence(
293                    DLFileEntryPersistence dlFileEntryPersistence) {
294                    this.dlFileEntryPersistence = dlFileEntryPersistence;
295            }
296    
297            /**
298             * Returns the document library file entry finder.
299             *
300             * @return the document library file entry finder
301             */
302            public DLFileEntryFinder getDLFileEntryFinder() {
303                    return dlFileEntryFinder;
304            }
305    
306            /**
307             * Sets the document library file entry finder.
308             *
309             * @param dlFileEntryFinder the document library file entry finder
310             */
311            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
312                    this.dlFileEntryFinder = dlFileEntryFinder;
313            }
314    
315            /**
316             * Returns the document library file entry metadata local service.
317             *
318             * @return the document library file entry metadata local service
319             */
320            public DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
321                    return dlFileEntryMetadataLocalService;
322            }
323    
324            /**
325             * Sets the document library file entry metadata local service.
326             *
327             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
328             */
329            public void setDLFileEntryMetadataLocalService(
330                    DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
331                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
332            }
333    
334            /**
335             * Returns the document library file entry metadata persistence.
336             *
337             * @return the document library file entry metadata persistence
338             */
339            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
340                    return dlFileEntryMetadataPersistence;
341            }
342    
343            /**
344             * Sets the document library file entry metadata persistence.
345             *
346             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
347             */
348            public void setDLFileEntryMetadataPersistence(
349                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
350                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
351            }
352    
353            /**
354             * Returns the document library file entry type local service.
355             *
356             * @return the document library file entry type local service
357             */
358            public DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
359                    return dlFileEntryTypeLocalService;
360            }
361    
362            /**
363             * Sets the document library file entry type local service.
364             *
365             * @param dlFileEntryTypeLocalService the document library file entry type local service
366             */
367            public void setDLFileEntryTypeLocalService(
368                    DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
369                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
370            }
371    
372            /**
373             * Returns the document library file entry type remote service.
374             *
375             * @return the document library file entry type remote service
376             */
377            public DLFileEntryTypeService getDLFileEntryTypeService() {
378                    return dlFileEntryTypeService;
379            }
380    
381            /**
382             * Sets the document library file entry type remote service.
383             *
384             * @param dlFileEntryTypeService the document library file entry type remote service
385             */
386            public void setDLFileEntryTypeService(
387                    DLFileEntryTypeService dlFileEntryTypeService) {
388                    this.dlFileEntryTypeService = dlFileEntryTypeService;
389            }
390    
391            /**
392             * Returns the document library file entry type persistence.
393             *
394             * @return the document library file entry type persistence
395             */
396            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
397                    return dlFileEntryTypePersistence;
398            }
399    
400            /**
401             * Sets the document library file entry type persistence.
402             *
403             * @param dlFileEntryTypePersistence the document library file entry type persistence
404             */
405            public void setDLFileEntryTypePersistence(
406                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
407                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
408            }
409    
410            /**
411             * Returns the document library file entry type finder.
412             *
413             * @return the document library file entry type finder
414             */
415            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
416                    return dlFileEntryTypeFinder;
417            }
418    
419            /**
420             * Sets the document library file entry type finder.
421             *
422             * @param dlFileEntryTypeFinder the document library file entry type finder
423             */
424            public void setDLFileEntryTypeFinder(
425                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
426                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
427            }
428    
429            /**
430             * Returns the document library file rank local service.
431             *
432             * @return the document library file rank local service
433             */
434            public DLFileRankLocalService getDLFileRankLocalService() {
435                    return dlFileRankLocalService;
436            }
437    
438            /**
439             * Sets the document library file rank local service.
440             *
441             * @param dlFileRankLocalService the document library file rank local service
442             */
443            public void setDLFileRankLocalService(
444                    DLFileRankLocalService dlFileRankLocalService) {
445                    this.dlFileRankLocalService = dlFileRankLocalService;
446            }
447    
448            /**
449             * Returns the document library file rank persistence.
450             *
451             * @return the document library file rank persistence
452             */
453            public DLFileRankPersistence getDLFileRankPersistence() {
454                    return dlFileRankPersistence;
455            }
456    
457            /**
458             * Sets the document library file rank persistence.
459             *
460             * @param dlFileRankPersistence the document library file rank persistence
461             */
462            public void setDLFileRankPersistence(
463                    DLFileRankPersistence dlFileRankPersistence) {
464                    this.dlFileRankPersistence = dlFileRankPersistence;
465            }
466    
467            /**
468             * Returns the document library file rank finder.
469             *
470             * @return the document library file rank finder
471             */
472            public DLFileRankFinder getDLFileRankFinder() {
473                    return dlFileRankFinder;
474            }
475    
476            /**
477             * Sets the document library file rank finder.
478             *
479             * @param dlFileRankFinder the document library file rank finder
480             */
481            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
482                    this.dlFileRankFinder = dlFileRankFinder;
483            }
484    
485            /**
486             * Returns the document library file shortcut local service.
487             *
488             * @return the document library file shortcut local service
489             */
490            public DLFileShortcutLocalService getDLFileShortcutLocalService() {
491                    return dlFileShortcutLocalService;
492            }
493    
494            /**
495             * Sets the document library file shortcut local service.
496             *
497             * @param dlFileShortcutLocalService the document library file shortcut local service
498             */
499            public void setDLFileShortcutLocalService(
500                    DLFileShortcutLocalService dlFileShortcutLocalService) {
501                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
502            }
503    
504            /**
505             * Returns the document library file shortcut remote service.
506             *
507             * @return the document library file shortcut remote service
508             */
509            public DLFileShortcutService getDLFileShortcutService() {
510                    return dlFileShortcutService;
511            }
512    
513            /**
514             * Sets the document library file shortcut remote service.
515             *
516             * @param dlFileShortcutService the document library file shortcut remote service
517             */
518            public void setDLFileShortcutService(
519                    DLFileShortcutService dlFileShortcutService) {
520                    this.dlFileShortcutService = dlFileShortcutService;
521            }
522    
523            /**
524             * Returns the document library file shortcut persistence.
525             *
526             * @return the document library file shortcut persistence
527             */
528            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
529                    return dlFileShortcutPersistence;
530            }
531    
532            /**
533             * Sets the document library file shortcut persistence.
534             *
535             * @param dlFileShortcutPersistence the document library file shortcut persistence
536             */
537            public void setDLFileShortcutPersistence(
538                    DLFileShortcutPersistence dlFileShortcutPersistence) {
539                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
540            }
541    
542            /**
543             * Returns the document library file version local service.
544             *
545             * @return the document library file version local service
546             */
547            public DLFileVersionLocalService getDLFileVersionLocalService() {
548                    return dlFileVersionLocalService;
549            }
550    
551            /**
552             * Sets the document library file version local service.
553             *
554             * @param dlFileVersionLocalService the document library file version local service
555             */
556            public void setDLFileVersionLocalService(
557                    DLFileVersionLocalService dlFileVersionLocalService) {
558                    this.dlFileVersionLocalService = dlFileVersionLocalService;
559            }
560    
561            /**
562             * Returns the document library file version remote service.
563             *
564             * @return the document library file version remote service
565             */
566            public DLFileVersionService getDLFileVersionService() {
567                    return dlFileVersionService;
568            }
569    
570            /**
571             * Sets the document library file version remote service.
572             *
573             * @param dlFileVersionService the document library file version remote service
574             */
575            public void setDLFileVersionService(
576                    DLFileVersionService dlFileVersionService) {
577                    this.dlFileVersionService = dlFileVersionService;
578            }
579    
580            /**
581             * Returns the document library file version persistence.
582             *
583             * @return the document library file version persistence
584             */
585            public DLFileVersionPersistence getDLFileVersionPersistence() {
586                    return dlFileVersionPersistence;
587            }
588    
589            /**
590             * Sets the document library file version persistence.
591             *
592             * @param dlFileVersionPersistence the document library file version persistence
593             */
594            public void setDLFileVersionPersistence(
595                    DLFileVersionPersistence dlFileVersionPersistence) {
596                    this.dlFileVersionPersistence = dlFileVersionPersistence;
597            }
598    
599            /**
600             * Returns the document library folder local service.
601             *
602             * @return the document library folder local service
603             */
604            public DLFolderLocalService getDLFolderLocalService() {
605                    return dlFolderLocalService;
606            }
607    
608            /**
609             * Sets the document library folder local service.
610             *
611             * @param dlFolderLocalService the document library folder local service
612             */
613            public void setDLFolderLocalService(
614                    DLFolderLocalService dlFolderLocalService) {
615                    this.dlFolderLocalService = dlFolderLocalService;
616            }
617    
618            /**
619             * Returns the document library folder remote service.
620             *
621             * @return the document library folder remote service
622             */
623            public DLFolderService getDLFolderService() {
624                    return dlFolderService;
625            }
626    
627            /**
628             * Sets the document library folder remote service.
629             *
630             * @param dlFolderService the document library folder remote service
631             */
632            public void setDLFolderService(DLFolderService dlFolderService) {
633                    this.dlFolderService = dlFolderService;
634            }
635    
636            /**
637             * Returns the document library folder persistence.
638             *
639             * @return the document library folder persistence
640             */
641            public DLFolderPersistence getDLFolderPersistence() {
642                    return dlFolderPersistence;
643            }
644    
645            /**
646             * Sets the document library folder persistence.
647             *
648             * @param dlFolderPersistence the document library folder persistence
649             */
650            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
651                    this.dlFolderPersistence = dlFolderPersistence;
652            }
653    
654            /**
655             * Returns the document library folder finder.
656             *
657             * @return the document library folder finder
658             */
659            public DLFolderFinder getDLFolderFinder() {
660                    return dlFolderFinder;
661            }
662    
663            /**
664             * Sets the document library folder finder.
665             *
666             * @param dlFolderFinder the document library folder finder
667             */
668            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
669                    this.dlFolderFinder = dlFolderFinder;
670            }
671    
672            /**
673             * Returns the d l sync local service.
674             *
675             * @return the d l sync local service
676             */
677            public DLSyncLocalService getDLSyncLocalService() {
678                    return dlSyncLocalService;
679            }
680    
681            /**
682             * Sets the d l sync local service.
683             *
684             * @param dlSyncLocalService the d l sync local service
685             */
686            public void setDLSyncLocalService(DLSyncLocalService dlSyncLocalService) {
687                    this.dlSyncLocalService = dlSyncLocalService;
688            }
689    
690            /**
691             * Returns the d l sync remote service.
692             *
693             * @return the d l sync remote service
694             */
695            public DLSyncService getDLSyncService() {
696                    return dlSyncService;
697            }
698    
699            /**
700             * Sets the d l sync remote service.
701             *
702             * @param dlSyncService the d l sync remote service
703             */
704            public void setDLSyncService(DLSyncService dlSyncService) {
705                    this.dlSyncService = dlSyncService;
706            }
707    
708            /**
709             * Returns the d l sync persistence.
710             *
711             * @return the d l sync persistence
712             */
713            public DLSyncPersistence getDLSyncPersistence() {
714                    return dlSyncPersistence;
715            }
716    
717            /**
718             * Sets the d l sync persistence.
719             *
720             * @param dlSyncPersistence the d l sync persistence
721             */
722            public void setDLSyncPersistence(DLSyncPersistence dlSyncPersistence) {
723                    this.dlSyncPersistence = dlSyncPersistence;
724            }
725    
726            /**
727             * Returns the d l sync finder.
728             *
729             * @return the d l sync finder
730             */
731            public DLSyncFinder getDLSyncFinder() {
732                    return dlSyncFinder;
733            }
734    
735            /**
736             * Sets the d l sync finder.
737             *
738             * @param dlSyncFinder the d l sync finder
739             */
740            public void setDLSyncFinder(DLSyncFinder dlSyncFinder) {
741                    this.dlSyncFinder = dlSyncFinder;
742            }
743    
744            /**
745             * Returns the counter local service.
746             *
747             * @return the counter local service
748             */
749            public CounterLocalService getCounterLocalService() {
750                    return counterLocalService;
751            }
752    
753            /**
754             * Sets the counter local service.
755             *
756             * @param counterLocalService the counter local service
757             */
758            public void setCounterLocalService(CounterLocalService counterLocalService) {
759                    this.counterLocalService = counterLocalService;
760            }
761    
762            /**
763             * Returns the group local service.
764             *
765             * @return the group local service
766             */
767            public GroupLocalService getGroupLocalService() {
768                    return groupLocalService;
769            }
770    
771            /**
772             * Sets the group local service.
773             *
774             * @param groupLocalService the group local service
775             */
776            public void setGroupLocalService(GroupLocalService groupLocalService) {
777                    this.groupLocalService = groupLocalService;
778            }
779    
780            /**
781             * Returns the group remote service.
782             *
783             * @return the group remote service
784             */
785            public GroupService getGroupService() {
786                    return groupService;
787            }
788    
789            /**
790             * Sets the group remote service.
791             *
792             * @param groupService the group remote service
793             */
794            public void setGroupService(GroupService groupService) {
795                    this.groupService = groupService;
796            }
797    
798            /**
799             * Returns the group persistence.
800             *
801             * @return the group persistence
802             */
803            public GroupPersistence getGroupPersistence() {
804                    return groupPersistence;
805            }
806    
807            /**
808             * Sets the group persistence.
809             *
810             * @param groupPersistence the group persistence
811             */
812            public void setGroupPersistence(GroupPersistence groupPersistence) {
813                    this.groupPersistence = groupPersistence;
814            }
815    
816            /**
817             * Returns the group finder.
818             *
819             * @return the group finder
820             */
821            public GroupFinder getGroupFinder() {
822                    return groupFinder;
823            }
824    
825            /**
826             * Sets the group finder.
827             *
828             * @param groupFinder the group finder
829             */
830            public void setGroupFinder(GroupFinder groupFinder) {
831                    this.groupFinder = groupFinder;
832            }
833    
834            /**
835             * Returns the image local service.
836             *
837             * @return the image local service
838             */
839            public ImageLocalService getImageLocalService() {
840                    return imageLocalService;
841            }
842    
843            /**
844             * Sets the image local service.
845             *
846             * @param imageLocalService the image local service
847             */
848            public void setImageLocalService(ImageLocalService imageLocalService) {
849                    this.imageLocalService = imageLocalService;
850            }
851    
852            /**
853             * Returns the image remote service.
854             *
855             * @return the image remote service
856             */
857            public ImageService getImageService() {
858                    return imageService;
859            }
860    
861            /**
862             * Sets the image remote service.
863             *
864             * @param imageService the image remote service
865             */
866            public void setImageService(ImageService imageService) {
867                    this.imageService = imageService;
868            }
869    
870            /**
871             * Returns the image persistence.
872             *
873             * @return the image persistence
874             */
875            public ImagePersistence getImagePersistence() {
876                    return imagePersistence;
877            }
878    
879            /**
880             * Sets the image persistence.
881             *
882             * @param imagePersistence the image persistence
883             */
884            public void setImagePersistence(ImagePersistence imagePersistence) {
885                    this.imagePersistence = imagePersistence;
886            }
887    
888            /**
889             * Returns the layout local service.
890             *
891             * @return the layout local service
892             */
893            public LayoutLocalService getLayoutLocalService() {
894                    return layoutLocalService;
895            }
896    
897            /**
898             * Sets the layout local service.
899             *
900             * @param layoutLocalService the layout local service
901             */
902            public void setLayoutLocalService(LayoutLocalService layoutLocalService) {
903                    this.layoutLocalService = layoutLocalService;
904            }
905    
906            /**
907             * Returns the layout remote service.
908             *
909             * @return the layout remote service
910             */
911            public LayoutService getLayoutService() {
912                    return layoutService;
913            }
914    
915            /**
916             * Sets the layout remote service.
917             *
918             * @param layoutService the layout remote service
919             */
920            public void setLayoutService(LayoutService layoutService) {
921                    this.layoutService = layoutService;
922            }
923    
924            /**
925             * Returns the layout persistence.
926             *
927             * @return the layout persistence
928             */
929            public LayoutPersistence getLayoutPersistence() {
930                    return layoutPersistence;
931            }
932    
933            /**
934             * Sets the layout persistence.
935             *
936             * @param layoutPersistence the layout persistence
937             */
938            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
939                    this.layoutPersistence = layoutPersistence;
940            }
941    
942            /**
943             * Returns the layout finder.
944             *
945             * @return the layout finder
946             */
947            public LayoutFinder getLayoutFinder() {
948                    return layoutFinder;
949            }
950    
951            /**
952             * Sets the layout finder.
953             *
954             * @param layoutFinder the layout finder
955             */
956            public void setLayoutFinder(LayoutFinder layoutFinder) {
957                    this.layoutFinder = layoutFinder;
958            }
959    
960            /**
961             * Returns the lock local service.
962             *
963             * @return the lock local service
964             */
965            public LockLocalService getLockLocalService() {
966                    return lockLocalService;
967            }
968    
969            /**
970             * Sets the lock local service.
971             *
972             * @param lockLocalService the lock local service
973             */
974            public void setLockLocalService(LockLocalService lockLocalService) {
975                    this.lockLocalService = lockLocalService;
976            }
977    
978            /**
979             * Returns the lock persistence.
980             *
981             * @return the lock persistence
982             */
983            public LockPersistence getLockPersistence() {
984                    return lockPersistence;
985            }
986    
987            /**
988             * Sets the lock persistence.
989             *
990             * @param lockPersistence the lock persistence
991             */
992            public void setLockPersistence(LockPersistence lockPersistence) {
993                    this.lockPersistence = lockPersistence;
994            }
995    
996            /**
997             * Returns the lock finder.
998             *
999             * @return the lock finder
1000             */
1001            public LockFinder getLockFinder() {
1002                    return lockFinder;
1003            }
1004    
1005            /**
1006             * Sets the lock finder.
1007             *
1008             * @param lockFinder the lock finder
1009             */
1010            public void setLockFinder(LockFinder lockFinder) {
1011                    this.lockFinder = lockFinder;
1012            }
1013    
1014            /**
1015             * Returns the resource local service.
1016             *
1017             * @return the resource local service
1018             */
1019            public ResourceLocalService getResourceLocalService() {
1020                    return resourceLocalService;
1021            }
1022    
1023            /**
1024             * Sets the resource local service.
1025             *
1026             * @param resourceLocalService the resource local service
1027             */
1028            public void setResourceLocalService(
1029                    ResourceLocalService resourceLocalService) {
1030                    this.resourceLocalService = resourceLocalService;
1031            }
1032    
1033            /**
1034             * Returns the subscription local service.
1035             *
1036             * @return the subscription local service
1037             */
1038            public SubscriptionLocalService getSubscriptionLocalService() {
1039                    return subscriptionLocalService;
1040            }
1041    
1042            /**
1043             * Sets the subscription local service.
1044             *
1045             * @param subscriptionLocalService the subscription local service
1046             */
1047            public void setSubscriptionLocalService(
1048                    SubscriptionLocalService subscriptionLocalService) {
1049                    this.subscriptionLocalService = subscriptionLocalService;
1050            }
1051    
1052            /**
1053             * Returns the subscription persistence.
1054             *
1055             * @return the subscription persistence
1056             */
1057            public SubscriptionPersistence getSubscriptionPersistence() {
1058                    return subscriptionPersistence;
1059            }
1060    
1061            /**
1062             * Sets the subscription persistence.
1063             *
1064             * @param subscriptionPersistence the subscription persistence
1065             */
1066            public void setSubscriptionPersistence(
1067                    SubscriptionPersistence subscriptionPersistence) {
1068                    this.subscriptionPersistence = subscriptionPersistence;
1069            }
1070    
1071            /**
1072             * Returns the user local service.
1073             *
1074             * @return the user local service
1075             */
1076            public UserLocalService getUserLocalService() {
1077                    return userLocalService;
1078            }
1079    
1080            /**
1081             * Sets the user local service.
1082             *
1083             * @param userLocalService the user local service
1084             */
1085            public void setUserLocalService(UserLocalService userLocalService) {
1086                    this.userLocalService = userLocalService;
1087            }
1088    
1089            /**
1090             * Returns the user remote service.
1091             *
1092             * @return the user remote service
1093             */
1094            public UserService getUserService() {
1095                    return userService;
1096            }
1097    
1098            /**
1099             * Sets the user remote service.
1100             *
1101             * @param userService the user remote service
1102             */
1103            public void setUserService(UserService userService) {
1104                    this.userService = userService;
1105            }
1106    
1107            /**
1108             * Returns the user persistence.
1109             *
1110             * @return the user persistence
1111             */
1112            public UserPersistence getUserPersistence() {
1113                    return userPersistence;
1114            }
1115    
1116            /**
1117             * Sets the user persistence.
1118             *
1119             * @param userPersistence the user persistence
1120             */
1121            public void setUserPersistence(UserPersistence userPersistence) {
1122                    this.userPersistence = userPersistence;
1123            }
1124    
1125            /**
1126             * Returns the user finder.
1127             *
1128             * @return the user finder
1129             */
1130            public UserFinder getUserFinder() {
1131                    return userFinder;
1132            }
1133    
1134            /**
1135             * Sets the user finder.
1136             *
1137             * @param userFinder the user finder
1138             */
1139            public void setUserFinder(UserFinder userFinder) {
1140                    this.userFinder = userFinder;
1141            }
1142    
1143            /**
1144             * Returns the web d a v props local service.
1145             *
1146             * @return the web d a v props local service
1147             */
1148            public WebDAVPropsLocalService getWebDAVPropsLocalService() {
1149                    return webDAVPropsLocalService;
1150            }
1151    
1152            /**
1153             * Sets the web d a v props local service.
1154             *
1155             * @param webDAVPropsLocalService the web d a v props local service
1156             */
1157            public void setWebDAVPropsLocalService(
1158                    WebDAVPropsLocalService webDAVPropsLocalService) {
1159                    this.webDAVPropsLocalService = webDAVPropsLocalService;
1160            }
1161    
1162            /**
1163             * Returns the web d a v props persistence.
1164             *
1165             * @return the web d a v props persistence
1166             */
1167            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1168                    return webDAVPropsPersistence;
1169            }
1170    
1171            /**
1172             * Sets the web d a v props persistence.
1173             *
1174             * @param webDAVPropsPersistence the web d a v props persistence
1175             */
1176            public void setWebDAVPropsPersistence(
1177                    WebDAVPropsPersistence webDAVPropsPersistence) {
1178                    this.webDAVPropsPersistence = webDAVPropsPersistence;
1179            }
1180    
1181            /**
1182             * Returns the workflow instance link local service.
1183             *
1184             * @return the workflow instance link local service
1185             */
1186            public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1187                    return workflowInstanceLinkLocalService;
1188            }
1189    
1190            /**
1191             * Sets the workflow instance link local service.
1192             *
1193             * @param workflowInstanceLinkLocalService the workflow instance link local service
1194             */
1195            public void setWorkflowInstanceLinkLocalService(
1196                    WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1197                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1198            }
1199    
1200            /**
1201             * Returns the workflow instance link persistence.
1202             *
1203             * @return the workflow instance link persistence
1204             */
1205            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1206                    return workflowInstanceLinkPersistence;
1207            }
1208    
1209            /**
1210             * Sets the workflow instance link persistence.
1211             *
1212             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1213             */
1214            public void setWorkflowInstanceLinkPersistence(
1215                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1216                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1217            }
1218    
1219            /**
1220             * Returns the asset category local service.
1221             *
1222             * @return the asset category local service
1223             */
1224            public AssetCategoryLocalService getAssetCategoryLocalService() {
1225                    return assetCategoryLocalService;
1226            }
1227    
1228            /**
1229             * Sets the asset category local service.
1230             *
1231             * @param assetCategoryLocalService the asset category local service
1232             */
1233            public void setAssetCategoryLocalService(
1234                    AssetCategoryLocalService assetCategoryLocalService) {
1235                    this.assetCategoryLocalService = assetCategoryLocalService;
1236            }
1237    
1238            /**
1239             * Returns the asset category remote service.
1240             *
1241             * @return the asset category remote service
1242             */
1243            public AssetCategoryService getAssetCategoryService() {
1244                    return assetCategoryService;
1245            }
1246    
1247            /**
1248             * Sets the asset category remote service.
1249             *
1250             * @param assetCategoryService the asset category remote service
1251             */
1252            public void setAssetCategoryService(
1253                    AssetCategoryService assetCategoryService) {
1254                    this.assetCategoryService = assetCategoryService;
1255            }
1256    
1257            /**
1258             * Returns the asset category persistence.
1259             *
1260             * @return the asset category persistence
1261             */
1262            public AssetCategoryPersistence getAssetCategoryPersistence() {
1263                    return assetCategoryPersistence;
1264            }
1265    
1266            /**
1267             * Sets the asset category persistence.
1268             *
1269             * @param assetCategoryPersistence the asset category persistence
1270             */
1271            public void setAssetCategoryPersistence(
1272                    AssetCategoryPersistence assetCategoryPersistence) {
1273                    this.assetCategoryPersistence = assetCategoryPersistence;
1274            }
1275    
1276            /**
1277             * Returns the asset category finder.
1278             *
1279             * @return the asset category finder
1280             */
1281            public AssetCategoryFinder getAssetCategoryFinder() {
1282                    return assetCategoryFinder;
1283            }
1284    
1285            /**
1286             * Sets the asset category finder.
1287             *
1288             * @param assetCategoryFinder the asset category finder
1289             */
1290            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1291                    this.assetCategoryFinder = assetCategoryFinder;
1292            }
1293    
1294            /**
1295             * Returns the asset entry local service.
1296             *
1297             * @return the asset entry local service
1298             */
1299            public AssetEntryLocalService getAssetEntryLocalService() {
1300                    return assetEntryLocalService;
1301            }
1302    
1303            /**
1304             * Sets the asset entry local service.
1305             *
1306             * @param assetEntryLocalService the asset entry local service
1307             */
1308            public void setAssetEntryLocalService(
1309                    AssetEntryLocalService assetEntryLocalService) {
1310                    this.assetEntryLocalService = assetEntryLocalService;
1311            }
1312    
1313            /**
1314             * Returns the asset entry remote service.
1315             *
1316             * @return the asset entry remote service
1317             */
1318            public AssetEntryService getAssetEntryService() {
1319                    return assetEntryService;
1320            }
1321    
1322            /**
1323             * Sets the asset entry remote service.
1324             *
1325             * @param assetEntryService the asset entry remote service
1326             */
1327            public void setAssetEntryService(AssetEntryService assetEntryService) {
1328                    this.assetEntryService = assetEntryService;
1329            }
1330    
1331            /**
1332             * Returns the asset entry persistence.
1333             *
1334             * @return the asset entry persistence
1335             */
1336            public AssetEntryPersistence getAssetEntryPersistence() {
1337                    return assetEntryPersistence;
1338            }
1339    
1340            /**
1341             * Sets the asset entry persistence.
1342             *
1343             * @param assetEntryPersistence the asset entry persistence
1344             */
1345            public void setAssetEntryPersistence(
1346                    AssetEntryPersistence assetEntryPersistence) {
1347                    this.assetEntryPersistence = assetEntryPersistence;
1348            }
1349    
1350            /**
1351             * Returns the asset entry finder.
1352             *
1353             * @return the asset entry finder
1354             */
1355            public AssetEntryFinder getAssetEntryFinder() {
1356                    return assetEntryFinder;
1357            }
1358    
1359            /**
1360             * Sets the asset entry finder.
1361             *
1362             * @param assetEntryFinder the asset entry finder
1363             */
1364            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1365                    this.assetEntryFinder = assetEntryFinder;
1366            }
1367    
1368            /**
1369             * Returns the asset link local service.
1370             *
1371             * @return the asset link local service
1372             */
1373            public AssetLinkLocalService getAssetLinkLocalService() {
1374                    return assetLinkLocalService;
1375            }
1376    
1377            /**
1378             * Sets the asset link local service.
1379             *
1380             * @param assetLinkLocalService the asset link local service
1381             */
1382            public void setAssetLinkLocalService(
1383                    AssetLinkLocalService assetLinkLocalService) {
1384                    this.assetLinkLocalService = assetLinkLocalService;
1385            }
1386    
1387            /**
1388             * Returns the asset link persistence.
1389             *
1390             * @return the asset link persistence
1391             */
1392            public AssetLinkPersistence getAssetLinkPersistence() {
1393                    return assetLinkPersistence;
1394            }
1395    
1396            /**
1397             * Sets the asset link persistence.
1398             *
1399             * @param assetLinkPersistence the asset link persistence
1400             */
1401            public void setAssetLinkPersistence(
1402                    AssetLinkPersistence assetLinkPersistence) {
1403                    this.assetLinkPersistence = assetLinkPersistence;
1404            }
1405    
1406            /**
1407             * Returns the asset link finder.
1408             *
1409             * @return the asset link finder
1410             */
1411            public AssetLinkFinder getAssetLinkFinder() {
1412                    return assetLinkFinder;
1413            }
1414    
1415            /**
1416             * Sets the asset link finder.
1417             *
1418             * @param assetLinkFinder the asset link finder
1419             */
1420            public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
1421                    this.assetLinkFinder = assetLinkFinder;
1422            }
1423    
1424            /**
1425             * Returns the asset tag local service.
1426             *
1427             * @return the asset tag local service
1428             */
1429            public AssetTagLocalService getAssetTagLocalService() {
1430                    return assetTagLocalService;
1431            }
1432    
1433            /**
1434             * Sets the asset tag local service.
1435             *
1436             * @param assetTagLocalService the asset tag local service
1437             */
1438            public void setAssetTagLocalService(
1439                    AssetTagLocalService assetTagLocalService) {
1440                    this.assetTagLocalService = assetTagLocalService;
1441            }
1442    
1443            /**
1444             * Returns the asset tag remote service.
1445             *
1446             * @return the asset tag remote service
1447             */
1448            public AssetTagService getAssetTagService() {
1449                    return assetTagService;
1450            }
1451    
1452            /**
1453             * Sets the asset tag remote service.
1454             *
1455             * @param assetTagService the asset tag remote service
1456             */
1457            public void setAssetTagService(AssetTagService assetTagService) {
1458                    this.assetTagService = assetTagService;
1459            }
1460    
1461            /**
1462             * Returns the asset tag persistence.
1463             *
1464             * @return the asset tag persistence
1465             */
1466            public AssetTagPersistence getAssetTagPersistence() {
1467                    return assetTagPersistence;
1468            }
1469    
1470            /**
1471             * Sets the asset tag persistence.
1472             *
1473             * @param assetTagPersistence the asset tag persistence
1474             */
1475            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1476                    this.assetTagPersistence = assetTagPersistence;
1477            }
1478    
1479            /**
1480             * Returns the asset tag finder.
1481             *
1482             * @return the asset tag finder
1483             */
1484            public AssetTagFinder getAssetTagFinder() {
1485                    return assetTagFinder;
1486            }
1487    
1488            /**
1489             * Sets the asset tag finder.
1490             *
1491             * @param assetTagFinder the asset tag finder
1492             */
1493            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1494                    this.assetTagFinder = assetTagFinder;
1495            }
1496    
1497            /**
1498             * Returns the expando value local service.
1499             *
1500             * @return the expando value local service
1501             */
1502            public ExpandoValueLocalService getExpandoValueLocalService() {
1503                    return expandoValueLocalService;
1504            }
1505    
1506            /**
1507             * Sets the expando value local service.
1508             *
1509             * @param expandoValueLocalService the expando value local service
1510             */
1511            public void setExpandoValueLocalService(
1512                    ExpandoValueLocalService expandoValueLocalService) {
1513                    this.expandoValueLocalService = expandoValueLocalService;
1514            }
1515    
1516            /**
1517             * Returns the expando value remote service.
1518             *
1519             * @return the expando value remote service
1520             */
1521            public ExpandoValueService getExpandoValueService() {
1522                    return expandoValueService;
1523            }
1524    
1525            /**
1526             * Sets the expando value remote service.
1527             *
1528             * @param expandoValueService the expando value remote service
1529             */
1530            public void setExpandoValueService(ExpandoValueService expandoValueService) {
1531                    this.expandoValueService = expandoValueService;
1532            }
1533    
1534            /**
1535             * Returns the expando value persistence.
1536             *
1537             * @return the expando value persistence
1538             */
1539            public ExpandoValuePersistence getExpandoValuePersistence() {
1540                    return expandoValuePersistence;
1541            }
1542    
1543            /**
1544             * Sets the expando value persistence.
1545             *
1546             * @param expandoValuePersistence the expando value persistence
1547             */
1548            public void setExpandoValuePersistence(
1549                    ExpandoValuePersistence expandoValuePersistence) {
1550                    this.expandoValuePersistence = expandoValuePersistence;
1551            }
1552    
1553            /**
1554             * Returns the message boards discussion local service.
1555             *
1556             * @return the message boards discussion local service
1557             */
1558            public MBDiscussionLocalService getMBDiscussionLocalService() {
1559                    return mbDiscussionLocalService;
1560            }
1561    
1562            /**
1563             * Sets the message boards discussion local service.
1564             *
1565             * @param mbDiscussionLocalService the message boards discussion local service
1566             */
1567            public void setMBDiscussionLocalService(
1568                    MBDiscussionLocalService mbDiscussionLocalService) {
1569                    this.mbDiscussionLocalService = mbDiscussionLocalService;
1570            }
1571    
1572            /**
1573             * Returns the message boards discussion persistence.
1574             *
1575             * @return the message boards discussion persistence
1576             */
1577            public MBDiscussionPersistence getMBDiscussionPersistence() {
1578                    return mbDiscussionPersistence;
1579            }
1580    
1581            /**
1582             * Sets the message boards discussion persistence.
1583             *
1584             * @param mbDiscussionPersistence the message boards discussion persistence
1585             */
1586            public void setMBDiscussionPersistence(
1587                    MBDiscussionPersistence mbDiscussionPersistence) {
1588                    this.mbDiscussionPersistence = mbDiscussionPersistence;
1589            }
1590    
1591            /**
1592             * Returns the message-boards message local service.
1593             *
1594             * @return the message-boards message local service
1595             */
1596            public MBMessageLocalService getMBMessageLocalService() {
1597                    return mbMessageLocalService;
1598            }
1599    
1600            /**
1601             * Sets the message-boards message local service.
1602             *
1603             * @param mbMessageLocalService the message-boards message local service
1604             */
1605            public void setMBMessageLocalService(
1606                    MBMessageLocalService mbMessageLocalService) {
1607                    this.mbMessageLocalService = mbMessageLocalService;
1608            }
1609    
1610            /**
1611             * Returns the message-boards message remote service.
1612             *
1613             * @return the message-boards message remote service
1614             */
1615            public MBMessageService getMBMessageService() {
1616                    return mbMessageService;
1617            }
1618    
1619            /**
1620             * Sets the message-boards message remote service.
1621             *
1622             * @param mbMessageService the message-boards message remote service
1623             */
1624            public void setMBMessageService(MBMessageService mbMessageService) {
1625                    this.mbMessageService = mbMessageService;
1626            }
1627    
1628            /**
1629             * Returns the message-boards message persistence.
1630             *
1631             * @return the message-boards message persistence
1632             */
1633            public MBMessagePersistence getMBMessagePersistence() {
1634                    return mbMessagePersistence;
1635            }
1636    
1637            /**
1638             * Sets the message-boards message persistence.
1639             *
1640             * @param mbMessagePersistence the message-boards message persistence
1641             */
1642            public void setMBMessagePersistence(
1643                    MBMessagePersistence mbMessagePersistence) {
1644                    this.mbMessagePersistence = mbMessagePersistence;
1645            }
1646    
1647            /**
1648             * Returns the message-boards message finder.
1649             *
1650             * @return the message-boards message finder
1651             */
1652            public MBMessageFinder getMBMessageFinder() {
1653                    return mbMessageFinder;
1654            }
1655    
1656            /**
1657             * Sets the message-boards message finder.
1658             *
1659             * @param mbMessageFinder the message-boards message finder
1660             */
1661            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1662                    this.mbMessageFinder = mbMessageFinder;
1663            }
1664    
1665            /**
1666             * Returns the ratings entry local service.
1667             *
1668             * @return the ratings entry local service
1669             */
1670            public RatingsEntryLocalService getRatingsEntryLocalService() {
1671                    return ratingsEntryLocalService;
1672            }
1673    
1674            /**
1675             * Sets the ratings entry local service.
1676             *
1677             * @param ratingsEntryLocalService the ratings entry local service
1678             */
1679            public void setRatingsEntryLocalService(
1680                    RatingsEntryLocalService ratingsEntryLocalService) {
1681                    this.ratingsEntryLocalService = ratingsEntryLocalService;
1682            }
1683    
1684            /**
1685             * Returns the ratings entry remote service.
1686             *
1687             * @return the ratings entry remote service
1688             */
1689            public RatingsEntryService getRatingsEntryService() {
1690                    return ratingsEntryService;
1691            }
1692    
1693            /**
1694             * Sets the ratings entry remote service.
1695             *
1696             * @param ratingsEntryService the ratings entry remote service
1697             */
1698            public void setRatingsEntryService(RatingsEntryService ratingsEntryService) {
1699                    this.ratingsEntryService = ratingsEntryService;
1700            }
1701    
1702            /**
1703             * Returns the ratings entry persistence.
1704             *
1705             * @return the ratings entry persistence
1706             */
1707            public RatingsEntryPersistence getRatingsEntryPersistence() {
1708                    return ratingsEntryPersistence;
1709            }
1710    
1711            /**
1712             * Sets the ratings entry persistence.
1713             *
1714             * @param ratingsEntryPersistence the ratings entry persistence
1715             */
1716            public void setRatingsEntryPersistence(
1717                    RatingsEntryPersistence ratingsEntryPersistence) {
1718                    this.ratingsEntryPersistence = ratingsEntryPersistence;
1719            }
1720    
1721            /**
1722             * Returns the ratings entry finder.
1723             *
1724             * @return the ratings entry finder
1725             */
1726            public RatingsEntryFinder getRatingsEntryFinder() {
1727                    return ratingsEntryFinder;
1728            }
1729    
1730            /**
1731             * Sets the ratings entry finder.
1732             *
1733             * @param ratingsEntryFinder the ratings entry finder
1734             */
1735            public void setRatingsEntryFinder(RatingsEntryFinder ratingsEntryFinder) {
1736                    this.ratingsEntryFinder = ratingsEntryFinder;
1737            }
1738    
1739            /**
1740             * Returns the ratings stats local service.
1741             *
1742             * @return the ratings stats local service
1743             */
1744            public RatingsStatsLocalService getRatingsStatsLocalService() {
1745                    return ratingsStatsLocalService;
1746            }
1747    
1748            /**
1749             * Sets the ratings stats local service.
1750             *
1751             * @param ratingsStatsLocalService the ratings stats local service
1752             */
1753            public void setRatingsStatsLocalService(
1754                    RatingsStatsLocalService ratingsStatsLocalService) {
1755                    this.ratingsStatsLocalService = ratingsStatsLocalService;
1756            }
1757    
1758            /**
1759             * Returns the ratings stats persistence.
1760             *
1761             * @return the ratings stats persistence
1762             */
1763            public RatingsStatsPersistence getRatingsStatsPersistence() {
1764                    return ratingsStatsPersistence;
1765            }
1766    
1767            /**
1768             * Sets the ratings stats persistence.
1769             *
1770             * @param ratingsStatsPersistence the ratings stats persistence
1771             */
1772            public void setRatingsStatsPersistence(
1773                    RatingsStatsPersistence ratingsStatsPersistence) {
1774                    this.ratingsStatsPersistence = ratingsStatsPersistence;
1775            }
1776    
1777            /**
1778             * Returns the ratings stats finder.
1779             *
1780             * @return the ratings stats finder
1781             */
1782            public RatingsStatsFinder getRatingsStatsFinder() {
1783                    return ratingsStatsFinder;
1784            }
1785    
1786            /**
1787             * Sets the ratings stats finder.
1788             *
1789             * @param ratingsStatsFinder the ratings stats finder
1790             */
1791            public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1792                    this.ratingsStatsFinder = ratingsStatsFinder;
1793            }
1794    
1795            /**
1796             * Returns the social activity local service.
1797             *
1798             * @return the social activity local service
1799             */
1800            public SocialActivityLocalService getSocialActivityLocalService() {
1801                    return socialActivityLocalService;
1802            }
1803    
1804            /**
1805             * Sets the social activity local service.
1806             *
1807             * @param socialActivityLocalService the social activity local service
1808             */
1809            public void setSocialActivityLocalService(
1810                    SocialActivityLocalService socialActivityLocalService) {
1811                    this.socialActivityLocalService = socialActivityLocalService;
1812            }
1813    
1814            /**
1815             * Returns the social activity persistence.
1816             *
1817             * @return the social activity persistence
1818             */
1819            public SocialActivityPersistence getSocialActivityPersistence() {
1820                    return socialActivityPersistence;
1821            }
1822    
1823            /**
1824             * Sets the social activity persistence.
1825             *
1826             * @param socialActivityPersistence the social activity persistence
1827             */
1828            public void setSocialActivityPersistence(
1829                    SocialActivityPersistence socialActivityPersistence) {
1830                    this.socialActivityPersistence = socialActivityPersistence;
1831            }
1832    
1833            /**
1834             * Returns the social activity finder.
1835             *
1836             * @return the social activity finder
1837             */
1838            public SocialActivityFinder getSocialActivityFinder() {
1839                    return socialActivityFinder;
1840            }
1841    
1842            /**
1843             * Sets the social activity finder.
1844             *
1845             * @param socialActivityFinder the social activity finder
1846             */
1847            public void setSocialActivityFinder(
1848                    SocialActivityFinder socialActivityFinder) {
1849                    this.socialActivityFinder = socialActivityFinder;
1850            }
1851    
1852            /**
1853             * Returns the social activity counter local service.
1854             *
1855             * @return the social activity counter local service
1856             */
1857            public SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1858                    return socialActivityCounterLocalService;
1859            }
1860    
1861            /**
1862             * Sets the social activity counter local service.
1863             *
1864             * @param socialActivityCounterLocalService the social activity counter local service
1865             */
1866            public void setSocialActivityCounterLocalService(
1867                    SocialActivityCounterLocalService socialActivityCounterLocalService) {
1868                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1869            }
1870    
1871            /**
1872             * Returns the social activity counter persistence.
1873             *
1874             * @return the social activity counter persistence
1875             */
1876            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1877                    return socialActivityCounterPersistence;
1878            }
1879    
1880            /**
1881             * Sets the social activity counter persistence.
1882             *
1883             * @param socialActivityCounterPersistence the social activity counter persistence
1884             */
1885            public void setSocialActivityCounterPersistence(
1886                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
1887                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1888            }
1889    
1890            /**
1891             * Returns the social activity counter finder.
1892             *
1893             * @return the social activity counter finder
1894             */
1895            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1896                    return socialActivityCounterFinder;
1897            }
1898    
1899            /**
1900             * Sets the social activity counter finder.
1901             *
1902             * @param socialActivityCounterFinder the social activity counter finder
1903             */
1904            public void setSocialActivityCounterFinder(
1905                    SocialActivityCounterFinder socialActivityCounterFinder) {
1906                    this.socialActivityCounterFinder = socialActivityCounterFinder;
1907            }
1908    
1909            /**
1910             * Returns the trash entry local service.
1911             *
1912             * @return the trash entry local service
1913             */
1914            public TrashEntryLocalService getTrashEntryLocalService() {
1915                    return trashEntryLocalService;
1916            }
1917    
1918            /**
1919             * Sets the trash entry local service.
1920             *
1921             * @param trashEntryLocalService the trash entry local service
1922             */
1923            public void setTrashEntryLocalService(
1924                    TrashEntryLocalService trashEntryLocalService) {
1925                    this.trashEntryLocalService = trashEntryLocalService;
1926            }
1927    
1928            /**
1929             * Returns the trash entry remote service.
1930             *
1931             * @return the trash entry remote service
1932             */
1933            public TrashEntryService getTrashEntryService() {
1934                    return trashEntryService;
1935            }
1936    
1937            /**
1938             * Sets the trash entry remote service.
1939             *
1940             * @param trashEntryService the trash entry remote service
1941             */
1942            public void setTrashEntryService(TrashEntryService trashEntryService) {
1943                    this.trashEntryService = trashEntryService;
1944            }
1945    
1946            /**
1947             * Returns the trash entry persistence.
1948             *
1949             * @return the trash entry persistence
1950             */
1951            public TrashEntryPersistence getTrashEntryPersistence() {
1952                    return trashEntryPersistence;
1953            }
1954    
1955            /**
1956             * Sets the trash entry persistence.
1957             *
1958             * @param trashEntryPersistence the trash entry persistence
1959             */
1960            public void setTrashEntryPersistence(
1961                    TrashEntryPersistence trashEntryPersistence) {
1962                    this.trashEntryPersistence = trashEntryPersistence;
1963            }
1964    
1965            public void afterPropertiesSet() {
1966            }
1967    
1968            public void destroy() {
1969            }
1970    
1971            /**
1972             * Returns the Spring bean ID for this bean.
1973             *
1974             * @return the Spring bean ID for this bean
1975             */
1976            public String getBeanIdentifier() {
1977                    return _beanIdentifier;
1978            }
1979    
1980            /**
1981             * Sets the Spring bean ID for this bean.
1982             *
1983             * @param beanIdentifier the Spring bean ID for this bean
1984             */
1985            public void setBeanIdentifier(String beanIdentifier) {
1986                    _beanIdentifier = beanIdentifier;
1987            }
1988    
1989            /**
1990             * Performs an SQL query.
1991             *
1992             * @param sql the sql query
1993             */
1994            protected void runSQL(String sql) throws SystemException {
1995                    try {
1996                            DataSource dataSource = InfrastructureUtil.getDataSource();
1997    
1998                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1999                                            sql, new int[0]);
2000    
2001                            sqlUpdate.update();
2002                    }
2003                    catch (Exception e) {
2004                            throw new SystemException(e);
2005                    }
2006            }
2007    
2008            @BeanReference(type = DLAppLocalService.class)
2009            protected DLAppLocalService dlAppLocalService;
2010            @BeanReference(type = DLAppService.class)
2011            protected DLAppService dlAppService;
2012            @BeanReference(type = DLAppHelperLocalService.class)
2013            protected DLAppHelperLocalService dlAppHelperLocalService;
2014            @BeanReference(type = DLContentLocalService.class)
2015            protected DLContentLocalService dlContentLocalService;
2016            @BeanReference(type = DLContentPersistence.class)
2017            protected DLContentPersistence dlContentPersistence;
2018            @BeanReference(type = DLFileEntryLocalService.class)
2019            protected DLFileEntryLocalService dlFileEntryLocalService;
2020            @BeanReference(type = DLFileEntryService.class)
2021            protected DLFileEntryService dlFileEntryService;
2022            @BeanReference(type = DLFileEntryPersistence.class)
2023            protected DLFileEntryPersistence dlFileEntryPersistence;
2024            @BeanReference(type = DLFileEntryFinder.class)
2025            protected DLFileEntryFinder dlFileEntryFinder;
2026            @BeanReference(type = DLFileEntryMetadataLocalService.class)
2027            protected DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
2028            @BeanReference(type = DLFileEntryMetadataPersistence.class)
2029            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
2030            @BeanReference(type = DLFileEntryTypeLocalService.class)
2031            protected DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
2032            @BeanReference(type = DLFileEntryTypeService.class)
2033            protected DLFileEntryTypeService dlFileEntryTypeService;
2034            @BeanReference(type = DLFileEntryTypePersistence.class)
2035            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
2036            @BeanReference(type = DLFileEntryTypeFinder.class)
2037            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
2038            @BeanReference(type = DLFileRankLocalService.class)
2039            protected DLFileRankLocalService dlFileRankLocalService;
2040            @BeanReference(type = DLFileRankPersistence.class)
2041            protected DLFileRankPersistence dlFileRankPersistence;
2042            @BeanReference(type = DLFileRankFinder.class)
2043            protected DLFileRankFinder dlFileRankFinder;
2044            @BeanReference(type = DLFileShortcutLocalService.class)
2045            protected DLFileShortcutLocalService dlFileShortcutLocalService;
2046            @BeanReference(type = DLFileShortcutService.class)
2047            protected DLFileShortcutService dlFileShortcutService;
2048            @BeanReference(type = DLFileShortcutPersistence.class)
2049            protected DLFileShortcutPersistence dlFileShortcutPersistence;
2050            @BeanReference(type = DLFileVersionLocalService.class)
2051            protected DLFileVersionLocalService dlFileVersionLocalService;
2052            @BeanReference(type = DLFileVersionService.class)
2053            protected DLFileVersionService dlFileVersionService;
2054            @BeanReference(type = DLFileVersionPersistence.class)
2055            protected DLFileVersionPersistence dlFileVersionPersistence;
2056            @BeanReference(type = DLFolderLocalService.class)
2057            protected DLFolderLocalService dlFolderLocalService;
2058            @BeanReference(type = DLFolderService.class)
2059            protected DLFolderService dlFolderService;
2060            @BeanReference(type = DLFolderPersistence.class)
2061            protected DLFolderPersistence dlFolderPersistence;
2062            @BeanReference(type = DLFolderFinder.class)
2063            protected DLFolderFinder dlFolderFinder;
2064            @BeanReference(type = DLSyncLocalService.class)
2065            protected DLSyncLocalService dlSyncLocalService;
2066            @BeanReference(type = DLSyncService.class)
2067            protected DLSyncService dlSyncService;
2068            @BeanReference(type = DLSyncPersistence.class)
2069            protected DLSyncPersistence dlSyncPersistence;
2070            @BeanReference(type = DLSyncFinder.class)
2071            protected DLSyncFinder dlSyncFinder;
2072            @BeanReference(type = CounterLocalService.class)
2073            protected CounterLocalService counterLocalService;
2074            @BeanReference(type = GroupLocalService.class)
2075            protected GroupLocalService groupLocalService;
2076            @BeanReference(type = GroupService.class)
2077            protected GroupService groupService;
2078            @BeanReference(type = GroupPersistence.class)
2079            protected GroupPersistence groupPersistence;
2080            @BeanReference(type = GroupFinder.class)
2081            protected GroupFinder groupFinder;
2082            @BeanReference(type = ImageLocalService.class)
2083            protected ImageLocalService imageLocalService;
2084            @BeanReference(type = ImageService.class)
2085            protected ImageService imageService;
2086            @BeanReference(type = ImagePersistence.class)
2087            protected ImagePersistence imagePersistence;
2088            @BeanReference(type = LayoutLocalService.class)
2089            protected LayoutLocalService layoutLocalService;
2090            @BeanReference(type = LayoutService.class)
2091            protected LayoutService layoutService;
2092            @BeanReference(type = LayoutPersistence.class)
2093            protected LayoutPersistence layoutPersistence;
2094            @BeanReference(type = LayoutFinder.class)
2095            protected LayoutFinder layoutFinder;
2096            @BeanReference(type = LockLocalService.class)
2097            protected LockLocalService lockLocalService;
2098            @BeanReference(type = LockPersistence.class)
2099            protected LockPersistence lockPersistence;
2100            @BeanReference(type = LockFinder.class)
2101            protected LockFinder lockFinder;
2102            @BeanReference(type = ResourceLocalService.class)
2103            protected ResourceLocalService resourceLocalService;
2104            @BeanReference(type = SubscriptionLocalService.class)
2105            protected SubscriptionLocalService subscriptionLocalService;
2106            @BeanReference(type = SubscriptionPersistence.class)
2107            protected SubscriptionPersistence subscriptionPersistence;
2108            @BeanReference(type = UserLocalService.class)
2109            protected UserLocalService userLocalService;
2110            @BeanReference(type = UserService.class)
2111            protected UserService userService;
2112            @BeanReference(type = UserPersistence.class)
2113            protected UserPersistence userPersistence;
2114            @BeanReference(type = UserFinder.class)
2115            protected UserFinder userFinder;
2116            @BeanReference(type = WebDAVPropsLocalService.class)
2117            protected WebDAVPropsLocalService webDAVPropsLocalService;
2118            @BeanReference(type = WebDAVPropsPersistence.class)
2119            protected WebDAVPropsPersistence webDAVPropsPersistence;
2120            @BeanReference(type = WorkflowInstanceLinkLocalService.class)
2121            protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2122            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2123            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2124            @BeanReference(type = AssetCategoryLocalService.class)
2125            protected AssetCategoryLocalService assetCategoryLocalService;
2126            @BeanReference(type = AssetCategoryService.class)
2127            protected AssetCategoryService assetCategoryService;
2128            @BeanReference(type = AssetCategoryPersistence.class)
2129            protected AssetCategoryPersistence assetCategoryPersistence;
2130            @BeanReference(type = AssetCategoryFinder.class)
2131            protected AssetCategoryFinder assetCategoryFinder;
2132            @BeanReference(type = AssetEntryLocalService.class)
2133            protected AssetEntryLocalService assetEntryLocalService;
2134            @BeanReference(type = AssetEntryService.class)
2135            protected AssetEntryService assetEntryService;
2136            @BeanReference(type = AssetEntryPersistence.class)
2137            protected AssetEntryPersistence assetEntryPersistence;
2138            @BeanReference(type = AssetEntryFinder.class)
2139            protected AssetEntryFinder assetEntryFinder;
2140            @BeanReference(type = AssetLinkLocalService.class)
2141            protected AssetLinkLocalService assetLinkLocalService;
2142            @BeanReference(type = AssetLinkPersistence.class)
2143            protected AssetLinkPersistence assetLinkPersistence;
2144            @BeanReference(type = AssetLinkFinder.class)
2145            protected AssetLinkFinder assetLinkFinder;
2146            @BeanReference(type = AssetTagLocalService.class)
2147            protected AssetTagLocalService assetTagLocalService;
2148            @BeanReference(type = AssetTagService.class)
2149            protected AssetTagService assetTagService;
2150            @BeanReference(type = AssetTagPersistence.class)
2151            protected AssetTagPersistence assetTagPersistence;
2152            @BeanReference(type = AssetTagFinder.class)
2153            protected AssetTagFinder assetTagFinder;
2154            @BeanReference(type = ExpandoValueLocalService.class)
2155            protected ExpandoValueLocalService expandoValueLocalService;
2156            @BeanReference(type = ExpandoValueService.class)
2157            protected ExpandoValueService expandoValueService;
2158            @BeanReference(type = ExpandoValuePersistence.class)
2159            protected ExpandoValuePersistence expandoValuePersistence;
2160            @BeanReference(type = MBDiscussionLocalService.class)
2161            protected MBDiscussionLocalService mbDiscussionLocalService;
2162            @BeanReference(type = MBDiscussionPersistence.class)
2163            protected MBDiscussionPersistence mbDiscussionPersistence;
2164            @BeanReference(type = MBMessageLocalService.class)
2165            protected MBMessageLocalService mbMessageLocalService;
2166            @BeanReference(type = MBMessageService.class)
2167            protected MBMessageService mbMessageService;
2168            @BeanReference(type = MBMessagePersistence.class)
2169            protected MBMessagePersistence mbMessagePersistence;
2170            @BeanReference(type = MBMessageFinder.class)
2171            protected MBMessageFinder mbMessageFinder;
2172            @BeanReference(type = RatingsEntryLocalService.class)
2173            protected RatingsEntryLocalService ratingsEntryLocalService;
2174            @BeanReference(type = RatingsEntryService.class)
2175            protected RatingsEntryService ratingsEntryService;
2176            @BeanReference(type = RatingsEntryPersistence.class)
2177            protected RatingsEntryPersistence ratingsEntryPersistence;
2178            @BeanReference(type = RatingsEntryFinder.class)
2179            protected RatingsEntryFinder ratingsEntryFinder;
2180            @BeanReference(type = RatingsStatsLocalService.class)
2181            protected RatingsStatsLocalService ratingsStatsLocalService;
2182            @BeanReference(type = RatingsStatsPersistence.class)
2183            protected RatingsStatsPersistence ratingsStatsPersistence;
2184            @BeanReference(type = RatingsStatsFinder.class)
2185            protected RatingsStatsFinder ratingsStatsFinder;
2186            @BeanReference(type = SocialActivityLocalService.class)
2187            protected SocialActivityLocalService socialActivityLocalService;
2188            @BeanReference(type = SocialActivityPersistence.class)
2189            protected SocialActivityPersistence socialActivityPersistence;
2190            @BeanReference(type = SocialActivityFinder.class)
2191            protected SocialActivityFinder socialActivityFinder;
2192            @BeanReference(type = SocialActivityCounterLocalService.class)
2193            protected SocialActivityCounterLocalService socialActivityCounterLocalService;
2194            @BeanReference(type = SocialActivityCounterPersistence.class)
2195            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
2196            @BeanReference(type = SocialActivityCounterFinder.class)
2197            protected SocialActivityCounterFinder socialActivityCounterFinder;
2198            @BeanReference(type = TrashEntryLocalService.class)
2199            protected TrashEntryLocalService trashEntryLocalService;
2200            @BeanReference(type = TrashEntryService.class)
2201            protected TrashEntryService trashEntryService;
2202            @BeanReference(type = TrashEntryPersistence.class)
2203            protected TrashEntryPersistence trashEntryPersistence;
2204            private String _beanIdentifier;
2205    }