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