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