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