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