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.service.ImageLocalService;
025    import com.liferay.portal.service.ImageService;
026    import com.liferay.portal.service.LockLocalService;
027    import com.liferay.portal.service.ResourceLocalService;
028    import com.liferay.portal.service.ResourceService;
029    import com.liferay.portal.service.UserLocalService;
030    import com.liferay.portal.service.UserService;
031    import com.liferay.portal.service.WebDAVPropsLocalService;
032    import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
033    import com.liferay.portal.service.base.PrincipalBean;
034    import com.liferay.portal.service.persistence.ImagePersistence;
035    import com.liferay.portal.service.persistence.LockFinder;
036    import com.liferay.portal.service.persistence.LockPersistence;
037    import com.liferay.portal.service.persistence.ResourceFinder;
038    import com.liferay.portal.service.persistence.ResourcePersistence;
039    import com.liferay.portal.service.persistence.UserFinder;
040    import com.liferay.portal.service.persistence.UserPersistence;
041    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
042    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
043    
044    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
045    import com.liferay.portlet.asset.service.AssetCategoryService;
046    import com.liferay.portlet.asset.service.AssetEntryLocalService;
047    import com.liferay.portlet.asset.service.AssetEntryService;
048    import com.liferay.portlet.asset.service.AssetLinkLocalService;
049    import com.liferay.portlet.asset.service.AssetTagLocalService;
050    import com.liferay.portlet.asset.service.AssetTagService;
051    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
052    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
053    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
054    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
055    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
056    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
057    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
058    import com.liferay.portlet.documentlibrary.model.DLFileEntry;
059    import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
060    import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
061    import com.liferay.portlet.documentlibrary.service.DLAppService;
062    import com.liferay.portlet.documentlibrary.service.DLContentLocalService;
063    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
064    import com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService;
065    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
066    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService;
067    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
068    import com.liferay.portlet.documentlibrary.service.DLFileRankLocalService;
069    import com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService;
070    import com.liferay.portlet.documentlibrary.service.DLFileShortcutService;
071    import com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService;
072    import com.liferay.portlet.documentlibrary.service.DLFileVersionService;
073    import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
074    import com.liferay.portlet.documentlibrary.service.DLFolderService;
075    import com.liferay.portlet.documentlibrary.service.DLSyncLocalService;
076    import com.liferay.portlet.documentlibrary.service.DLSyncService;
077    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
078    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
079    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
080    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
081    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
082    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
083    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
084    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
085    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
086    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
087    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
088    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
089    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncPersistence;
090    import com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService;
091    import com.liferay.portlet.dynamicdatamapping.service.DDMStructureService;
092    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
093    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
094    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
095    import com.liferay.portlet.expando.service.ExpandoValueService;
096    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
097    
098    import javax.sql.DataSource;
099    
100    /**
101     * The base implementation of the document library file entry remote service.
102     *
103     * <p>
104     * 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.DLFileEntryServiceImpl}.
105     * </p>
106     *
107     * @author Brian Wing Shun Chan
108     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryServiceImpl
109     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil
110     * @generated
111     */
112    public abstract class DLFileEntryServiceBaseImpl extends PrincipalBean
113            implements DLFileEntryService, IdentifiableBean {
114            /*
115             * NOTE FOR DEVELOPERS:
116             *
117             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil} to access the document library file entry remote service.
118             */
119    
120            /**
121             * Returns the d l app local service.
122             *
123             * @return the d l app local service
124             */
125            public DLAppLocalService getDLAppLocalService() {
126                    return dlAppLocalService;
127            }
128    
129            /**
130             * Sets the d l app local service.
131             *
132             * @param dlAppLocalService the d l app local service
133             */
134            public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
135                    this.dlAppLocalService = dlAppLocalService;
136            }
137    
138            /**
139             * Returns the d l app remote service.
140             *
141             * @return the d l app remote service
142             */
143            public DLAppService getDLAppService() {
144                    return dlAppService;
145            }
146    
147            /**
148             * Sets the d l app remote service.
149             *
150             * @param dlAppService the d l app remote service
151             */
152            public void setDLAppService(DLAppService dlAppService) {
153                    this.dlAppService = dlAppService;
154            }
155    
156            /**
157             * Returns the d l app helper local service.
158             *
159             * @return the d l app helper local service
160             */
161            public DLAppHelperLocalService getDLAppHelperLocalService() {
162                    return dlAppHelperLocalService;
163            }
164    
165            /**
166             * Sets the d l app helper local service.
167             *
168             * @param dlAppHelperLocalService the d l app helper local service
169             */
170            public void setDLAppHelperLocalService(
171                    DLAppHelperLocalService dlAppHelperLocalService) {
172                    this.dlAppHelperLocalService = dlAppHelperLocalService;
173            }
174    
175            /**
176             * Returns the document library content local service.
177             *
178             * @return the document library content local service
179             */
180            public DLContentLocalService getDLContentLocalService() {
181                    return dlContentLocalService;
182            }
183    
184            /**
185             * Sets the document library content local service.
186             *
187             * @param dlContentLocalService the document library content local service
188             */
189            public void setDLContentLocalService(
190                    DLContentLocalService dlContentLocalService) {
191                    this.dlContentLocalService = dlContentLocalService;
192            }
193    
194            /**
195             * Returns the document library content persistence.
196             *
197             * @return the document library content persistence
198             */
199            public DLContentPersistence getDLContentPersistence() {
200                    return dlContentPersistence;
201            }
202    
203            /**
204             * Sets the document library content persistence.
205             *
206             * @param dlContentPersistence the document library content persistence
207             */
208            public void setDLContentPersistence(
209                    DLContentPersistence dlContentPersistence) {
210                    this.dlContentPersistence = dlContentPersistence;
211            }
212    
213            /**
214             * Returns the document library file entry local service.
215             *
216             * @return the document library file entry local service
217             */
218            public DLFileEntryLocalService getDLFileEntryLocalService() {
219                    return dlFileEntryLocalService;
220            }
221    
222            /**
223             * Sets the document library file entry local service.
224             *
225             * @param dlFileEntryLocalService the document library file entry local service
226             */
227            public void setDLFileEntryLocalService(
228                    DLFileEntryLocalService dlFileEntryLocalService) {
229                    this.dlFileEntryLocalService = dlFileEntryLocalService;
230            }
231    
232            /**
233             * Returns the document library file entry remote service.
234             *
235             * @return the document library file entry remote service
236             */
237            public DLFileEntryService getDLFileEntryService() {
238                    return dlFileEntryService;
239            }
240    
241            /**
242             * Sets the document library file entry remote service.
243             *
244             * @param dlFileEntryService the document library file entry remote service
245             */
246            public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
247                    this.dlFileEntryService = dlFileEntryService;
248            }
249    
250            /**
251             * Returns the document library file entry persistence.
252             *
253             * @return the document library file entry persistence
254             */
255            public DLFileEntryPersistence getDLFileEntryPersistence() {
256                    return dlFileEntryPersistence;
257            }
258    
259            /**
260             * Sets the document library file entry persistence.
261             *
262             * @param dlFileEntryPersistence the document library file entry persistence
263             */
264            public void setDLFileEntryPersistence(
265                    DLFileEntryPersistence dlFileEntryPersistence) {
266                    this.dlFileEntryPersistence = dlFileEntryPersistence;
267            }
268    
269            /**
270             * Returns the document library file entry finder.
271             *
272             * @return the document library file entry finder
273             */
274            public DLFileEntryFinder getDLFileEntryFinder() {
275                    return dlFileEntryFinder;
276            }
277    
278            /**
279             * Sets the document library file entry finder.
280             *
281             * @param dlFileEntryFinder the document library file entry finder
282             */
283            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
284                    this.dlFileEntryFinder = dlFileEntryFinder;
285            }
286    
287            /**
288             * Returns the document library file entry metadata local service.
289             *
290             * @return the document library file entry metadata local service
291             */
292            public DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
293                    return dlFileEntryMetadataLocalService;
294            }
295    
296            /**
297             * Sets the document library file entry metadata local service.
298             *
299             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
300             */
301            public void setDLFileEntryMetadataLocalService(
302                    DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
303                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
304            }
305    
306            /**
307             * Returns the document library file entry metadata persistence.
308             *
309             * @return the document library file entry metadata persistence
310             */
311            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
312                    return dlFileEntryMetadataPersistence;
313            }
314    
315            /**
316             * Sets the document library file entry metadata persistence.
317             *
318             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
319             */
320            public void setDLFileEntryMetadataPersistence(
321                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
322                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
323            }
324    
325            /**
326             * Returns the document library file entry type local service.
327             *
328             * @return the document library file entry type local service
329             */
330            public DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
331                    return dlFileEntryTypeLocalService;
332            }
333    
334            /**
335             * Sets the document library file entry type local service.
336             *
337             * @param dlFileEntryTypeLocalService the document library file entry type local service
338             */
339            public void setDLFileEntryTypeLocalService(
340                    DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
341                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
342            }
343    
344            /**
345             * Returns the document library file entry type remote service.
346             *
347             * @return the document library file entry type remote service
348             */
349            public DLFileEntryTypeService getDLFileEntryTypeService() {
350                    return dlFileEntryTypeService;
351            }
352    
353            /**
354             * Sets the document library file entry type remote service.
355             *
356             * @param dlFileEntryTypeService the document library file entry type remote service
357             */
358            public void setDLFileEntryTypeService(
359                    DLFileEntryTypeService dlFileEntryTypeService) {
360                    this.dlFileEntryTypeService = dlFileEntryTypeService;
361            }
362    
363            /**
364             * Returns the document library file entry type persistence.
365             *
366             * @return the document library file entry type persistence
367             */
368            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
369                    return dlFileEntryTypePersistence;
370            }
371    
372            /**
373             * Sets the document library file entry type persistence.
374             *
375             * @param dlFileEntryTypePersistence the document library file entry type persistence
376             */
377            public void setDLFileEntryTypePersistence(
378                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
379                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
380            }
381    
382            /**
383             * Returns the document library file entry type finder.
384             *
385             * @return the document library file entry type finder
386             */
387            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
388                    return dlFileEntryTypeFinder;
389            }
390    
391            /**
392             * Sets the document library file entry type finder.
393             *
394             * @param dlFileEntryTypeFinder the document library file entry type finder
395             */
396            public void setDLFileEntryTypeFinder(
397                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
398                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
399            }
400    
401            /**
402             * Returns the document library file rank local service.
403             *
404             * @return the document library file rank local service
405             */
406            public DLFileRankLocalService getDLFileRankLocalService() {
407                    return dlFileRankLocalService;
408            }
409    
410            /**
411             * Sets the document library file rank local service.
412             *
413             * @param dlFileRankLocalService the document library file rank local service
414             */
415            public void setDLFileRankLocalService(
416                    DLFileRankLocalService dlFileRankLocalService) {
417                    this.dlFileRankLocalService = dlFileRankLocalService;
418            }
419    
420            /**
421             * Returns the document library file rank persistence.
422             *
423             * @return the document library file rank persistence
424             */
425            public DLFileRankPersistence getDLFileRankPersistence() {
426                    return dlFileRankPersistence;
427            }
428    
429            /**
430             * Sets the document library file rank persistence.
431             *
432             * @param dlFileRankPersistence the document library file rank persistence
433             */
434            public void setDLFileRankPersistence(
435                    DLFileRankPersistence dlFileRankPersistence) {
436                    this.dlFileRankPersistence = dlFileRankPersistence;
437            }
438    
439            /**
440             * Returns the document library file rank finder.
441             *
442             * @return the document library file rank finder
443             */
444            public DLFileRankFinder getDLFileRankFinder() {
445                    return dlFileRankFinder;
446            }
447    
448            /**
449             * Sets the document library file rank finder.
450             *
451             * @param dlFileRankFinder the document library file rank finder
452             */
453            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
454                    this.dlFileRankFinder = dlFileRankFinder;
455            }
456    
457            /**
458             * Returns the document library file shortcut local service.
459             *
460             * @return the document library file shortcut local service
461             */
462            public DLFileShortcutLocalService getDLFileShortcutLocalService() {
463                    return dlFileShortcutLocalService;
464            }
465    
466            /**
467             * Sets the document library file shortcut local service.
468             *
469             * @param dlFileShortcutLocalService the document library file shortcut local service
470             */
471            public void setDLFileShortcutLocalService(
472                    DLFileShortcutLocalService dlFileShortcutLocalService) {
473                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
474            }
475    
476            /**
477             * Returns the document library file shortcut remote service.
478             *
479             * @return the document library file shortcut remote service
480             */
481            public DLFileShortcutService getDLFileShortcutService() {
482                    return dlFileShortcutService;
483            }
484    
485            /**
486             * Sets the document library file shortcut remote service.
487             *
488             * @param dlFileShortcutService the document library file shortcut remote service
489             */
490            public void setDLFileShortcutService(
491                    DLFileShortcutService dlFileShortcutService) {
492                    this.dlFileShortcutService = dlFileShortcutService;
493            }
494    
495            /**
496             * Returns the document library file shortcut persistence.
497             *
498             * @return the document library file shortcut persistence
499             */
500            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
501                    return dlFileShortcutPersistence;
502            }
503    
504            /**
505             * Sets the document library file shortcut persistence.
506             *
507             * @param dlFileShortcutPersistence the document library file shortcut persistence
508             */
509            public void setDLFileShortcutPersistence(
510                    DLFileShortcutPersistence dlFileShortcutPersistence) {
511                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
512            }
513    
514            /**
515             * Returns the document library file version local service.
516             *
517             * @return the document library file version local service
518             */
519            public DLFileVersionLocalService getDLFileVersionLocalService() {
520                    return dlFileVersionLocalService;
521            }
522    
523            /**
524             * Sets the document library file version local service.
525             *
526             * @param dlFileVersionLocalService the document library file version local service
527             */
528            public void setDLFileVersionLocalService(
529                    DLFileVersionLocalService dlFileVersionLocalService) {
530                    this.dlFileVersionLocalService = dlFileVersionLocalService;
531            }
532    
533            /**
534             * Returns the document library file version remote service.
535             *
536             * @return the document library file version remote service
537             */
538            public DLFileVersionService getDLFileVersionService() {
539                    return dlFileVersionService;
540            }
541    
542            /**
543             * Sets the document library file version remote service.
544             *
545             * @param dlFileVersionService the document library file version remote service
546             */
547            public void setDLFileVersionService(
548                    DLFileVersionService dlFileVersionService) {
549                    this.dlFileVersionService = dlFileVersionService;
550            }
551    
552            /**
553             * Returns the document library file version persistence.
554             *
555             * @return the document library file version persistence
556             */
557            public DLFileVersionPersistence getDLFileVersionPersistence() {
558                    return dlFileVersionPersistence;
559            }
560    
561            /**
562             * Sets the document library file version persistence.
563             *
564             * @param dlFileVersionPersistence the document library file version persistence
565             */
566            public void setDLFileVersionPersistence(
567                    DLFileVersionPersistence dlFileVersionPersistence) {
568                    this.dlFileVersionPersistence = dlFileVersionPersistence;
569            }
570    
571            /**
572             * Returns the document library folder local service.
573             *
574             * @return the document library folder local service
575             */
576            public DLFolderLocalService getDLFolderLocalService() {
577                    return dlFolderLocalService;
578            }
579    
580            /**
581             * Sets the document library folder local service.
582             *
583             * @param dlFolderLocalService the document library folder local service
584             */
585            public void setDLFolderLocalService(
586                    DLFolderLocalService dlFolderLocalService) {
587                    this.dlFolderLocalService = dlFolderLocalService;
588            }
589    
590            /**
591             * Returns the document library folder remote service.
592             *
593             * @return the document library folder remote service
594             */
595            public DLFolderService getDLFolderService() {
596                    return dlFolderService;
597            }
598    
599            /**
600             * Sets the document library folder remote service.
601             *
602             * @param dlFolderService the document library folder remote service
603             */
604            public void setDLFolderService(DLFolderService dlFolderService) {
605                    this.dlFolderService = dlFolderService;
606            }
607    
608            /**
609             * Returns the document library folder persistence.
610             *
611             * @return the document library folder persistence
612             */
613            public DLFolderPersistence getDLFolderPersistence() {
614                    return dlFolderPersistence;
615            }
616    
617            /**
618             * Sets the document library folder persistence.
619             *
620             * @param dlFolderPersistence the document library folder persistence
621             */
622            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
623                    this.dlFolderPersistence = dlFolderPersistence;
624            }
625    
626            /**
627             * Returns the document library folder finder.
628             *
629             * @return the document library folder finder
630             */
631            public DLFolderFinder getDLFolderFinder() {
632                    return dlFolderFinder;
633            }
634    
635            /**
636             * Sets the document library folder finder.
637             *
638             * @param dlFolderFinder the document library folder finder
639             */
640            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
641                    this.dlFolderFinder = dlFolderFinder;
642            }
643    
644            /**
645             * Returns the d l sync local service.
646             *
647             * @return the d l sync local service
648             */
649            public DLSyncLocalService getDLSyncLocalService() {
650                    return dlSyncLocalService;
651            }
652    
653            /**
654             * Sets the d l sync local service.
655             *
656             * @param dlSyncLocalService the d l sync local service
657             */
658            public void setDLSyncLocalService(DLSyncLocalService dlSyncLocalService) {
659                    this.dlSyncLocalService = dlSyncLocalService;
660            }
661    
662            /**
663             * Returns the d l sync remote service.
664             *
665             * @return the d l sync remote service
666             */
667            public DLSyncService getDLSyncService() {
668                    return dlSyncService;
669            }
670    
671            /**
672             * Sets the d l sync remote service.
673             *
674             * @param dlSyncService the d l sync remote service
675             */
676            public void setDLSyncService(DLSyncService dlSyncService) {
677                    this.dlSyncService = dlSyncService;
678            }
679    
680            /**
681             * Returns the d l sync persistence.
682             *
683             * @return the d l sync persistence
684             */
685            public DLSyncPersistence getDLSyncPersistence() {
686                    return dlSyncPersistence;
687            }
688    
689            /**
690             * Sets the d l sync persistence.
691             *
692             * @param dlSyncPersistence the d l sync persistence
693             */
694            public void setDLSyncPersistence(DLSyncPersistence dlSyncPersistence) {
695                    this.dlSyncPersistence = dlSyncPersistence;
696            }
697    
698            /**
699             * Returns the counter local service.
700             *
701             * @return the counter local service
702             */
703            public CounterLocalService getCounterLocalService() {
704                    return counterLocalService;
705            }
706    
707            /**
708             * Sets the counter local service.
709             *
710             * @param counterLocalService the counter local service
711             */
712            public void setCounterLocalService(CounterLocalService counterLocalService) {
713                    this.counterLocalService = counterLocalService;
714            }
715    
716            /**
717             * Returns the image local service.
718             *
719             * @return the image local service
720             */
721            public ImageLocalService getImageLocalService() {
722                    return imageLocalService;
723            }
724    
725            /**
726             * Sets the image local service.
727             *
728             * @param imageLocalService the image local service
729             */
730            public void setImageLocalService(ImageLocalService imageLocalService) {
731                    this.imageLocalService = imageLocalService;
732            }
733    
734            /**
735             * Returns the image remote service.
736             *
737             * @return the image remote service
738             */
739            public ImageService getImageService() {
740                    return imageService;
741            }
742    
743            /**
744             * Sets the image remote service.
745             *
746             * @param imageService the image remote service
747             */
748            public void setImageService(ImageService imageService) {
749                    this.imageService = imageService;
750            }
751    
752            /**
753             * Returns the image persistence.
754             *
755             * @return the image persistence
756             */
757            public ImagePersistence getImagePersistence() {
758                    return imagePersistence;
759            }
760    
761            /**
762             * Sets the image persistence.
763             *
764             * @param imagePersistence the image persistence
765             */
766            public void setImagePersistence(ImagePersistence imagePersistence) {
767                    this.imagePersistence = imagePersistence;
768            }
769    
770            /**
771             * Returns the lock local service.
772             *
773             * @return the lock local service
774             */
775            public LockLocalService getLockLocalService() {
776                    return lockLocalService;
777            }
778    
779            /**
780             * Sets the lock local service.
781             *
782             * @param lockLocalService the lock local service
783             */
784            public void setLockLocalService(LockLocalService lockLocalService) {
785                    this.lockLocalService = lockLocalService;
786            }
787    
788            /**
789             * Returns the lock persistence.
790             *
791             * @return the lock persistence
792             */
793            public LockPersistence getLockPersistence() {
794                    return lockPersistence;
795            }
796    
797            /**
798             * Sets the lock persistence.
799             *
800             * @param lockPersistence the lock persistence
801             */
802            public void setLockPersistence(LockPersistence lockPersistence) {
803                    this.lockPersistence = lockPersistence;
804            }
805    
806            /**
807             * Returns the lock finder.
808             *
809             * @return the lock finder
810             */
811            public LockFinder getLockFinder() {
812                    return lockFinder;
813            }
814    
815            /**
816             * Sets the lock finder.
817             *
818             * @param lockFinder the lock finder
819             */
820            public void setLockFinder(LockFinder lockFinder) {
821                    this.lockFinder = lockFinder;
822            }
823    
824            /**
825             * Returns the resource local service.
826             *
827             * @return the resource local service
828             */
829            public ResourceLocalService getResourceLocalService() {
830                    return resourceLocalService;
831            }
832    
833            /**
834             * Sets the resource local service.
835             *
836             * @param resourceLocalService the resource local service
837             */
838            public void setResourceLocalService(
839                    ResourceLocalService resourceLocalService) {
840                    this.resourceLocalService = resourceLocalService;
841            }
842    
843            /**
844             * Returns the resource remote service.
845             *
846             * @return the resource remote service
847             */
848            public ResourceService getResourceService() {
849                    return resourceService;
850            }
851    
852            /**
853             * Sets the resource remote service.
854             *
855             * @param resourceService the resource remote service
856             */
857            public void setResourceService(ResourceService resourceService) {
858                    this.resourceService = resourceService;
859            }
860    
861            /**
862             * Returns the resource persistence.
863             *
864             * @return the resource persistence
865             */
866            public ResourcePersistence getResourcePersistence() {
867                    return resourcePersistence;
868            }
869    
870            /**
871             * Sets the resource persistence.
872             *
873             * @param resourcePersistence the resource persistence
874             */
875            public void setResourcePersistence(ResourcePersistence resourcePersistence) {
876                    this.resourcePersistence = resourcePersistence;
877            }
878    
879            /**
880             * Returns the resource finder.
881             *
882             * @return the resource finder
883             */
884            public ResourceFinder getResourceFinder() {
885                    return resourceFinder;
886            }
887    
888            /**
889             * Sets the resource finder.
890             *
891             * @param resourceFinder the resource finder
892             */
893            public void setResourceFinder(ResourceFinder resourceFinder) {
894                    this.resourceFinder = resourceFinder;
895            }
896    
897            /**
898             * Returns the user local service.
899             *
900             * @return the user local service
901             */
902            public UserLocalService getUserLocalService() {
903                    return userLocalService;
904            }
905    
906            /**
907             * Sets the user local service.
908             *
909             * @param userLocalService the user local service
910             */
911            public void setUserLocalService(UserLocalService userLocalService) {
912                    this.userLocalService = userLocalService;
913            }
914    
915            /**
916             * Returns the user remote service.
917             *
918             * @return the user remote service
919             */
920            public UserService getUserService() {
921                    return userService;
922            }
923    
924            /**
925             * Sets the user remote service.
926             *
927             * @param userService the user remote service
928             */
929            public void setUserService(UserService userService) {
930                    this.userService = userService;
931            }
932    
933            /**
934             * Returns the user persistence.
935             *
936             * @return the user persistence
937             */
938            public UserPersistence getUserPersistence() {
939                    return userPersistence;
940            }
941    
942            /**
943             * Sets the user persistence.
944             *
945             * @param userPersistence the user persistence
946             */
947            public void setUserPersistence(UserPersistence userPersistence) {
948                    this.userPersistence = userPersistence;
949            }
950    
951            /**
952             * Returns the user finder.
953             *
954             * @return the user finder
955             */
956            public UserFinder getUserFinder() {
957                    return userFinder;
958            }
959    
960            /**
961             * Sets the user finder.
962             *
963             * @param userFinder the user finder
964             */
965            public void setUserFinder(UserFinder userFinder) {
966                    this.userFinder = userFinder;
967            }
968    
969            /**
970             * Returns the web d a v props local service.
971             *
972             * @return the web d a v props local service
973             */
974            public WebDAVPropsLocalService getWebDAVPropsLocalService() {
975                    return webDAVPropsLocalService;
976            }
977    
978            /**
979             * Sets the web d a v props local service.
980             *
981             * @param webDAVPropsLocalService the web d a v props local service
982             */
983            public void setWebDAVPropsLocalService(
984                    WebDAVPropsLocalService webDAVPropsLocalService) {
985                    this.webDAVPropsLocalService = webDAVPropsLocalService;
986            }
987    
988            /**
989             * Returns the web d a v props persistence.
990             *
991             * @return the web d a v props persistence
992             */
993            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
994                    return webDAVPropsPersistence;
995            }
996    
997            /**
998             * Sets the web d a v props persistence.
999             *
1000             * @param webDAVPropsPersistence the web d a v props persistence
1001             */
1002            public void setWebDAVPropsPersistence(
1003                    WebDAVPropsPersistence webDAVPropsPersistence) {
1004                    this.webDAVPropsPersistence = webDAVPropsPersistence;
1005            }
1006    
1007            /**
1008             * Returns the workflow instance link local service.
1009             *
1010             * @return the workflow instance link local service
1011             */
1012            public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1013                    return workflowInstanceLinkLocalService;
1014            }
1015    
1016            /**
1017             * Sets the workflow instance link local service.
1018             *
1019             * @param workflowInstanceLinkLocalService the workflow instance link local service
1020             */
1021            public void setWorkflowInstanceLinkLocalService(
1022                    WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1023                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1024            }
1025    
1026            /**
1027             * Returns the workflow instance link persistence.
1028             *
1029             * @return the workflow instance link persistence
1030             */
1031            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1032                    return workflowInstanceLinkPersistence;
1033            }
1034    
1035            /**
1036             * Sets the workflow instance link persistence.
1037             *
1038             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1039             */
1040            public void setWorkflowInstanceLinkPersistence(
1041                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1042                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1043            }
1044    
1045            /**
1046             * Returns the asset category local service.
1047             *
1048             * @return the asset category local service
1049             */
1050            public AssetCategoryLocalService getAssetCategoryLocalService() {
1051                    return assetCategoryLocalService;
1052            }
1053    
1054            /**
1055             * Sets the asset category local service.
1056             *
1057             * @param assetCategoryLocalService the asset category local service
1058             */
1059            public void setAssetCategoryLocalService(
1060                    AssetCategoryLocalService assetCategoryLocalService) {
1061                    this.assetCategoryLocalService = assetCategoryLocalService;
1062            }
1063    
1064            /**
1065             * Returns the asset category remote service.
1066             *
1067             * @return the asset category remote service
1068             */
1069            public AssetCategoryService getAssetCategoryService() {
1070                    return assetCategoryService;
1071            }
1072    
1073            /**
1074             * Sets the asset category remote service.
1075             *
1076             * @param assetCategoryService the asset category remote service
1077             */
1078            public void setAssetCategoryService(
1079                    AssetCategoryService assetCategoryService) {
1080                    this.assetCategoryService = assetCategoryService;
1081            }
1082    
1083            /**
1084             * Returns the asset category persistence.
1085             *
1086             * @return the asset category persistence
1087             */
1088            public AssetCategoryPersistence getAssetCategoryPersistence() {
1089                    return assetCategoryPersistence;
1090            }
1091    
1092            /**
1093             * Sets the asset category persistence.
1094             *
1095             * @param assetCategoryPersistence the asset category persistence
1096             */
1097            public void setAssetCategoryPersistence(
1098                    AssetCategoryPersistence assetCategoryPersistence) {
1099                    this.assetCategoryPersistence = assetCategoryPersistence;
1100            }
1101    
1102            /**
1103             * Returns the asset category finder.
1104             *
1105             * @return the asset category finder
1106             */
1107            public AssetCategoryFinder getAssetCategoryFinder() {
1108                    return assetCategoryFinder;
1109            }
1110    
1111            /**
1112             * Sets the asset category finder.
1113             *
1114             * @param assetCategoryFinder the asset category finder
1115             */
1116            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1117                    this.assetCategoryFinder = assetCategoryFinder;
1118            }
1119    
1120            /**
1121             * Returns the asset entry local service.
1122             *
1123             * @return the asset entry local service
1124             */
1125            public AssetEntryLocalService getAssetEntryLocalService() {
1126                    return assetEntryLocalService;
1127            }
1128    
1129            /**
1130             * Sets the asset entry local service.
1131             *
1132             * @param assetEntryLocalService the asset entry local service
1133             */
1134            public void setAssetEntryLocalService(
1135                    AssetEntryLocalService assetEntryLocalService) {
1136                    this.assetEntryLocalService = assetEntryLocalService;
1137            }
1138    
1139            /**
1140             * Returns the asset entry remote service.
1141             *
1142             * @return the asset entry remote service
1143             */
1144            public AssetEntryService getAssetEntryService() {
1145                    return assetEntryService;
1146            }
1147    
1148            /**
1149             * Sets the asset entry remote service.
1150             *
1151             * @param assetEntryService the asset entry remote service
1152             */
1153            public void setAssetEntryService(AssetEntryService assetEntryService) {
1154                    this.assetEntryService = assetEntryService;
1155            }
1156    
1157            /**
1158             * Returns the asset entry persistence.
1159             *
1160             * @return the asset entry persistence
1161             */
1162            public AssetEntryPersistence getAssetEntryPersistence() {
1163                    return assetEntryPersistence;
1164            }
1165    
1166            /**
1167             * Sets the asset entry persistence.
1168             *
1169             * @param assetEntryPersistence the asset entry persistence
1170             */
1171            public void setAssetEntryPersistence(
1172                    AssetEntryPersistence assetEntryPersistence) {
1173                    this.assetEntryPersistence = assetEntryPersistence;
1174            }
1175    
1176            /**
1177             * Returns the asset entry finder.
1178             *
1179             * @return the asset entry finder
1180             */
1181            public AssetEntryFinder getAssetEntryFinder() {
1182                    return assetEntryFinder;
1183            }
1184    
1185            /**
1186             * Sets the asset entry finder.
1187             *
1188             * @param assetEntryFinder the asset entry finder
1189             */
1190            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1191                    this.assetEntryFinder = assetEntryFinder;
1192            }
1193    
1194            /**
1195             * Returns the asset link local service.
1196             *
1197             * @return the asset link local service
1198             */
1199            public AssetLinkLocalService getAssetLinkLocalService() {
1200                    return assetLinkLocalService;
1201            }
1202    
1203            /**
1204             * Sets the asset link local service.
1205             *
1206             * @param assetLinkLocalService the asset link local service
1207             */
1208            public void setAssetLinkLocalService(
1209                    AssetLinkLocalService assetLinkLocalService) {
1210                    this.assetLinkLocalService = assetLinkLocalService;
1211            }
1212    
1213            /**
1214             * Returns the asset link persistence.
1215             *
1216             * @return the asset link persistence
1217             */
1218            public AssetLinkPersistence getAssetLinkPersistence() {
1219                    return assetLinkPersistence;
1220            }
1221    
1222            /**
1223             * Sets the asset link persistence.
1224             *
1225             * @param assetLinkPersistence the asset link persistence
1226             */
1227            public void setAssetLinkPersistence(
1228                    AssetLinkPersistence assetLinkPersistence) {
1229                    this.assetLinkPersistence = assetLinkPersistence;
1230            }
1231    
1232            /**
1233             * Returns the asset tag local service.
1234             *
1235             * @return the asset tag local service
1236             */
1237            public AssetTagLocalService getAssetTagLocalService() {
1238                    return assetTagLocalService;
1239            }
1240    
1241            /**
1242             * Sets the asset tag local service.
1243             *
1244             * @param assetTagLocalService the asset tag local service
1245             */
1246            public void setAssetTagLocalService(
1247                    AssetTagLocalService assetTagLocalService) {
1248                    this.assetTagLocalService = assetTagLocalService;
1249            }
1250    
1251            /**
1252             * Returns the asset tag remote service.
1253             *
1254             * @return the asset tag remote service
1255             */
1256            public AssetTagService getAssetTagService() {
1257                    return assetTagService;
1258            }
1259    
1260            /**
1261             * Sets the asset tag remote service.
1262             *
1263             * @param assetTagService the asset tag remote service
1264             */
1265            public void setAssetTagService(AssetTagService assetTagService) {
1266                    this.assetTagService = assetTagService;
1267            }
1268    
1269            /**
1270             * Returns the asset tag persistence.
1271             *
1272             * @return the asset tag persistence
1273             */
1274            public AssetTagPersistence getAssetTagPersistence() {
1275                    return assetTagPersistence;
1276            }
1277    
1278            /**
1279             * Sets the asset tag persistence.
1280             *
1281             * @param assetTagPersistence the asset tag persistence
1282             */
1283            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1284                    this.assetTagPersistence = assetTagPersistence;
1285            }
1286    
1287            /**
1288             * Returns the asset tag finder.
1289             *
1290             * @return the asset tag finder
1291             */
1292            public AssetTagFinder getAssetTagFinder() {
1293                    return assetTagFinder;
1294            }
1295    
1296            /**
1297             * Sets the asset tag finder.
1298             *
1299             * @param assetTagFinder the asset tag finder
1300             */
1301            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1302                    this.assetTagFinder = assetTagFinder;
1303            }
1304    
1305            /**
1306             * Returns the d d m structure local service.
1307             *
1308             * @return the d d m structure local service
1309             */
1310            public DDMStructureLocalService getDDMStructureLocalService() {
1311                    return ddmStructureLocalService;
1312            }
1313    
1314            /**
1315             * Sets the d d m structure local service.
1316             *
1317             * @param ddmStructureLocalService the d d m structure local service
1318             */
1319            public void setDDMStructureLocalService(
1320                    DDMStructureLocalService ddmStructureLocalService) {
1321                    this.ddmStructureLocalService = ddmStructureLocalService;
1322            }
1323    
1324            /**
1325             * Returns the d d m structure remote service.
1326             *
1327             * @return the d d m structure remote service
1328             */
1329            public DDMStructureService getDDMStructureService() {
1330                    return ddmStructureService;
1331            }
1332    
1333            /**
1334             * Sets the d d m structure remote service.
1335             *
1336             * @param ddmStructureService the d d m structure remote service
1337             */
1338            public void setDDMStructureService(DDMStructureService ddmStructureService) {
1339                    this.ddmStructureService = ddmStructureService;
1340            }
1341    
1342            /**
1343             * Returns the d d m structure persistence.
1344             *
1345             * @return the d d m structure persistence
1346             */
1347            public DDMStructurePersistence getDDMStructurePersistence() {
1348                    return ddmStructurePersistence;
1349            }
1350    
1351            /**
1352             * Sets the d d m structure persistence.
1353             *
1354             * @param ddmStructurePersistence the d d m structure persistence
1355             */
1356            public void setDDMStructurePersistence(
1357                    DDMStructurePersistence ddmStructurePersistence) {
1358                    this.ddmStructurePersistence = ddmStructurePersistence;
1359            }
1360    
1361            /**
1362             * Returns the d d m structure finder.
1363             *
1364             * @return the d d m structure finder
1365             */
1366            public DDMStructureFinder getDDMStructureFinder() {
1367                    return ddmStructureFinder;
1368            }
1369    
1370            /**
1371             * Sets the d d m structure finder.
1372             *
1373             * @param ddmStructureFinder the d d m structure finder
1374             */
1375            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1376                    this.ddmStructureFinder = ddmStructureFinder;
1377            }
1378    
1379            /**
1380             * Returns the expando value local service.
1381             *
1382             * @return the expando value local service
1383             */
1384            public ExpandoValueLocalService getExpandoValueLocalService() {
1385                    return expandoValueLocalService;
1386            }
1387    
1388            /**
1389             * Sets the expando value local service.
1390             *
1391             * @param expandoValueLocalService the expando value local service
1392             */
1393            public void setExpandoValueLocalService(
1394                    ExpandoValueLocalService expandoValueLocalService) {
1395                    this.expandoValueLocalService = expandoValueLocalService;
1396            }
1397    
1398            /**
1399             * Returns the expando value remote service.
1400             *
1401             * @return the expando value remote service
1402             */
1403            public ExpandoValueService getExpandoValueService() {
1404                    return expandoValueService;
1405            }
1406    
1407            /**
1408             * Sets the expando value remote service.
1409             *
1410             * @param expandoValueService the expando value remote service
1411             */
1412            public void setExpandoValueService(ExpandoValueService expandoValueService) {
1413                    this.expandoValueService = expandoValueService;
1414            }
1415    
1416            /**
1417             * Returns the expando value persistence.
1418             *
1419             * @return the expando value persistence
1420             */
1421            public ExpandoValuePersistence getExpandoValuePersistence() {
1422                    return expandoValuePersistence;
1423            }
1424    
1425            /**
1426             * Sets the expando value persistence.
1427             *
1428             * @param expandoValuePersistence the expando value persistence
1429             */
1430            public void setExpandoValuePersistence(
1431                    ExpandoValuePersistence expandoValuePersistence) {
1432                    this.expandoValuePersistence = expandoValuePersistence;
1433            }
1434    
1435            public void afterPropertiesSet() {
1436            }
1437    
1438            public void destroy() {
1439            }
1440    
1441            /**
1442             * Returns the Spring bean ID for this bean.
1443             *
1444             * @return the Spring bean ID for this bean
1445             */
1446            public String getBeanIdentifier() {
1447                    return _beanIdentifier;
1448            }
1449    
1450            /**
1451             * Sets the Spring bean ID for this bean.
1452             *
1453             * @param beanIdentifier the Spring bean ID for this bean
1454             */
1455            public void setBeanIdentifier(String beanIdentifier) {
1456                    _beanIdentifier = beanIdentifier;
1457            }
1458    
1459            protected ClassLoader getClassLoader() {
1460                    Class<?> clazz = getClass();
1461    
1462                    return clazz.getClassLoader();
1463            }
1464    
1465            protected Class<?> getModelClass() {
1466                    return DLFileEntry.class;
1467            }
1468    
1469            protected String getModelClassName() {
1470                    return DLFileEntry.class.getName();
1471            }
1472    
1473            /**
1474             * Performs an SQL query.
1475             *
1476             * @param sql the sql query
1477             */
1478            protected void runSQL(String sql) throws SystemException {
1479                    try {
1480                            DataSource dataSource = dlFileEntryPersistence.getDataSource();
1481    
1482                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1483                                            sql, new int[0]);
1484    
1485                            sqlUpdate.update();
1486                    }
1487                    catch (Exception e) {
1488                            throw new SystemException(e);
1489                    }
1490            }
1491    
1492            @BeanReference(type = DLAppLocalService.class)
1493            protected DLAppLocalService dlAppLocalService;
1494            @BeanReference(type = DLAppService.class)
1495            protected DLAppService dlAppService;
1496            @BeanReference(type = DLAppHelperLocalService.class)
1497            protected DLAppHelperLocalService dlAppHelperLocalService;
1498            @BeanReference(type = DLContentLocalService.class)
1499            protected DLContentLocalService dlContentLocalService;
1500            @BeanReference(type = DLContentPersistence.class)
1501            protected DLContentPersistence dlContentPersistence;
1502            @BeanReference(type = DLFileEntryLocalService.class)
1503            protected DLFileEntryLocalService dlFileEntryLocalService;
1504            @BeanReference(type = DLFileEntryService.class)
1505            protected DLFileEntryService dlFileEntryService;
1506            @BeanReference(type = DLFileEntryPersistence.class)
1507            protected DLFileEntryPersistence dlFileEntryPersistence;
1508            @BeanReference(type = DLFileEntryFinder.class)
1509            protected DLFileEntryFinder dlFileEntryFinder;
1510            @BeanReference(type = DLFileEntryMetadataLocalService.class)
1511            protected DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1512            @BeanReference(type = DLFileEntryMetadataPersistence.class)
1513            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1514            @BeanReference(type = DLFileEntryTypeLocalService.class)
1515            protected DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1516            @BeanReference(type = DLFileEntryTypeService.class)
1517            protected DLFileEntryTypeService dlFileEntryTypeService;
1518            @BeanReference(type = DLFileEntryTypePersistence.class)
1519            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
1520            @BeanReference(type = DLFileEntryTypeFinder.class)
1521            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
1522            @BeanReference(type = DLFileRankLocalService.class)
1523            protected DLFileRankLocalService dlFileRankLocalService;
1524            @BeanReference(type = DLFileRankPersistence.class)
1525            protected DLFileRankPersistence dlFileRankPersistence;
1526            @BeanReference(type = DLFileRankFinder.class)
1527            protected DLFileRankFinder dlFileRankFinder;
1528            @BeanReference(type = DLFileShortcutLocalService.class)
1529            protected DLFileShortcutLocalService dlFileShortcutLocalService;
1530            @BeanReference(type = DLFileShortcutService.class)
1531            protected DLFileShortcutService dlFileShortcutService;
1532            @BeanReference(type = DLFileShortcutPersistence.class)
1533            protected DLFileShortcutPersistence dlFileShortcutPersistence;
1534            @BeanReference(type = DLFileVersionLocalService.class)
1535            protected DLFileVersionLocalService dlFileVersionLocalService;
1536            @BeanReference(type = DLFileVersionService.class)
1537            protected DLFileVersionService dlFileVersionService;
1538            @BeanReference(type = DLFileVersionPersistence.class)
1539            protected DLFileVersionPersistence dlFileVersionPersistence;
1540            @BeanReference(type = DLFolderLocalService.class)
1541            protected DLFolderLocalService dlFolderLocalService;
1542            @BeanReference(type = DLFolderService.class)
1543            protected DLFolderService dlFolderService;
1544            @BeanReference(type = DLFolderPersistence.class)
1545            protected DLFolderPersistence dlFolderPersistence;
1546            @BeanReference(type = DLFolderFinder.class)
1547            protected DLFolderFinder dlFolderFinder;
1548            @BeanReference(type = DLSyncLocalService.class)
1549            protected DLSyncLocalService dlSyncLocalService;
1550            @BeanReference(type = DLSyncService.class)
1551            protected DLSyncService dlSyncService;
1552            @BeanReference(type = DLSyncPersistence.class)
1553            protected DLSyncPersistence dlSyncPersistence;
1554            @BeanReference(type = CounterLocalService.class)
1555            protected CounterLocalService counterLocalService;
1556            @BeanReference(type = ImageLocalService.class)
1557            protected ImageLocalService imageLocalService;
1558            @BeanReference(type = ImageService.class)
1559            protected ImageService imageService;
1560            @BeanReference(type = ImagePersistence.class)
1561            protected ImagePersistence imagePersistence;
1562            @BeanReference(type = LockLocalService.class)
1563            protected LockLocalService lockLocalService;
1564            @BeanReference(type = LockPersistence.class)
1565            protected LockPersistence lockPersistence;
1566            @BeanReference(type = LockFinder.class)
1567            protected LockFinder lockFinder;
1568            @BeanReference(type = ResourceLocalService.class)
1569            protected ResourceLocalService resourceLocalService;
1570            @BeanReference(type = ResourceService.class)
1571            protected ResourceService resourceService;
1572            @BeanReference(type = ResourcePersistence.class)
1573            protected ResourcePersistence resourcePersistence;
1574            @BeanReference(type = ResourceFinder.class)
1575            protected ResourceFinder resourceFinder;
1576            @BeanReference(type = UserLocalService.class)
1577            protected UserLocalService userLocalService;
1578            @BeanReference(type = UserService.class)
1579            protected UserService userService;
1580            @BeanReference(type = UserPersistence.class)
1581            protected UserPersistence userPersistence;
1582            @BeanReference(type = UserFinder.class)
1583            protected UserFinder userFinder;
1584            @BeanReference(type = WebDAVPropsLocalService.class)
1585            protected WebDAVPropsLocalService webDAVPropsLocalService;
1586            @BeanReference(type = WebDAVPropsPersistence.class)
1587            protected WebDAVPropsPersistence webDAVPropsPersistence;
1588            @BeanReference(type = WorkflowInstanceLinkLocalService.class)
1589            protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1590            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1591            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1592            @BeanReference(type = AssetCategoryLocalService.class)
1593            protected AssetCategoryLocalService assetCategoryLocalService;
1594            @BeanReference(type = AssetCategoryService.class)
1595            protected AssetCategoryService assetCategoryService;
1596            @BeanReference(type = AssetCategoryPersistence.class)
1597            protected AssetCategoryPersistence assetCategoryPersistence;
1598            @BeanReference(type = AssetCategoryFinder.class)
1599            protected AssetCategoryFinder assetCategoryFinder;
1600            @BeanReference(type = AssetEntryLocalService.class)
1601            protected AssetEntryLocalService assetEntryLocalService;
1602            @BeanReference(type = AssetEntryService.class)
1603            protected AssetEntryService assetEntryService;
1604            @BeanReference(type = AssetEntryPersistence.class)
1605            protected AssetEntryPersistence assetEntryPersistence;
1606            @BeanReference(type = AssetEntryFinder.class)
1607            protected AssetEntryFinder assetEntryFinder;
1608            @BeanReference(type = AssetLinkLocalService.class)
1609            protected AssetLinkLocalService assetLinkLocalService;
1610            @BeanReference(type = AssetLinkPersistence.class)
1611            protected AssetLinkPersistence assetLinkPersistence;
1612            @BeanReference(type = AssetTagLocalService.class)
1613            protected AssetTagLocalService assetTagLocalService;
1614            @BeanReference(type = AssetTagService.class)
1615            protected AssetTagService assetTagService;
1616            @BeanReference(type = AssetTagPersistence.class)
1617            protected AssetTagPersistence assetTagPersistence;
1618            @BeanReference(type = AssetTagFinder.class)
1619            protected AssetTagFinder assetTagFinder;
1620            @BeanReference(type = DDMStructureLocalService.class)
1621            protected DDMStructureLocalService ddmStructureLocalService;
1622            @BeanReference(type = DDMStructureService.class)
1623            protected DDMStructureService ddmStructureService;
1624            @BeanReference(type = DDMStructurePersistence.class)
1625            protected DDMStructurePersistence ddmStructurePersistence;
1626            @BeanReference(type = DDMStructureFinder.class)
1627            protected DDMStructureFinder ddmStructureFinder;
1628            @BeanReference(type = ExpandoValueLocalService.class)
1629            protected ExpandoValueLocalService expandoValueLocalService;
1630            @BeanReference(type = ExpandoValueService.class)
1631            protected ExpandoValueService expandoValueService;
1632            @BeanReference(type = ExpandoValuePersistence.class)
1633            protected ExpandoValuePersistence expandoValuePersistence;
1634            private String _beanIdentifier;
1635    }