001    /**
002     * Copyright (c) 2000-present 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.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.dao.db.DB;
019    import com.liferay.portal.kernel.dao.db.DBManagerUtil;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
022    import com.liferay.portal.kernel.exception.SystemException;
023    import com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService;
024    import com.liferay.portal.service.BaseServiceImpl;
025    import com.liferay.portal.service.persistence.ClassNamePersistence;
026    import com.liferay.portal.service.persistence.UserFinder;
027    import com.liferay.portal.service.persistence.UserPersistence;
028    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
029    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
030    import com.liferay.portal.util.PortalUtil;
031    
032    import com.liferay.portlet.documentlibrary.model.DLFileEntryType;
033    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
034    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
035    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
036    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
037    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
038    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
039    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
040    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
041    
042    import javax.sql.DataSource;
043    
044    /**
045     * Provides the base implementation for the document library file entry type remote service.
046     *
047     * <p>
048     * 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.DLFileEntryTypeServiceImpl}.
049     * </p>
050     *
051     * @author Brian Wing Shun Chan
052     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryTypeServiceImpl
053     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil
054     * @generated
055     */
056    public abstract class DLFileEntryTypeServiceBaseImpl extends BaseServiceImpl
057            implements DLFileEntryTypeService, IdentifiableOSGiService {
058            /*
059             * NOTE FOR DEVELOPERS:
060             *
061             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil} to access the document library file entry type remote service.
062             */
063    
064            /**
065             * Returns the document library file entry type local service.
066             *
067             * @return the document library file entry type local service
068             */
069            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
070                    return dlFileEntryTypeLocalService;
071            }
072    
073            /**
074             * Sets the document library file entry type local service.
075             *
076             * @param dlFileEntryTypeLocalService the document library file entry type local service
077             */
078            public void setDLFileEntryTypeLocalService(
079                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
080                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
081            }
082    
083            /**
084             * Returns the document library file entry type remote service.
085             *
086             * @return the document library file entry type remote service
087             */
088            public DLFileEntryTypeService getDLFileEntryTypeService() {
089                    return dlFileEntryTypeService;
090            }
091    
092            /**
093             * Sets the document library file entry type remote service.
094             *
095             * @param dlFileEntryTypeService the document library file entry type remote service
096             */
097            public void setDLFileEntryTypeService(
098                    DLFileEntryTypeService dlFileEntryTypeService) {
099                    this.dlFileEntryTypeService = dlFileEntryTypeService;
100            }
101    
102            /**
103             * Returns the document library file entry type persistence.
104             *
105             * @return the document library file entry type persistence
106             */
107            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
108                    return dlFileEntryTypePersistence;
109            }
110    
111            /**
112             * Sets the document library file entry type persistence.
113             *
114             * @param dlFileEntryTypePersistence the document library file entry type persistence
115             */
116            public void setDLFileEntryTypePersistence(
117                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
118                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
119            }
120    
121            /**
122             * Returns the document library file entry type finder.
123             *
124             * @return the document library file entry type finder
125             */
126            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
127                    return dlFileEntryTypeFinder;
128            }
129    
130            /**
131             * Sets the document library file entry type finder.
132             *
133             * @param dlFileEntryTypeFinder the document library file entry type finder
134             */
135            public void setDLFileEntryTypeFinder(
136                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
137                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
138            }
139    
140            /**
141             * Returns the counter local service.
142             *
143             * @return the counter local service
144             */
145            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
146                    return counterLocalService;
147            }
148    
149            /**
150             * Sets the counter local service.
151             *
152             * @param counterLocalService the counter local service
153             */
154            public void setCounterLocalService(
155                    com.liferay.counter.service.CounterLocalService counterLocalService) {
156                    this.counterLocalService = counterLocalService;
157            }
158    
159            /**
160             * Returns the class name local service.
161             *
162             * @return the class name local service
163             */
164            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
165                    return classNameLocalService;
166            }
167    
168            /**
169             * Sets the class name local service.
170             *
171             * @param classNameLocalService the class name local service
172             */
173            public void setClassNameLocalService(
174                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
175                    this.classNameLocalService = classNameLocalService;
176            }
177    
178            /**
179             * Returns the class name remote service.
180             *
181             * @return the class name remote service
182             */
183            public com.liferay.portal.service.ClassNameService getClassNameService() {
184                    return classNameService;
185            }
186    
187            /**
188             * Sets the class name remote service.
189             *
190             * @param classNameService the class name remote service
191             */
192            public void setClassNameService(
193                    com.liferay.portal.service.ClassNameService classNameService) {
194                    this.classNameService = classNameService;
195            }
196    
197            /**
198             * Returns the class name persistence.
199             *
200             * @return the class name persistence
201             */
202            public ClassNamePersistence getClassNamePersistence() {
203                    return classNamePersistence;
204            }
205    
206            /**
207             * Sets the class name persistence.
208             *
209             * @param classNamePersistence the class name persistence
210             */
211            public void setClassNamePersistence(
212                    ClassNamePersistence classNamePersistence) {
213                    this.classNamePersistence = classNamePersistence;
214            }
215    
216            /**
217             * Returns the resource local service.
218             *
219             * @return the resource local service
220             */
221            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
222                    return resourceLocalService;
223            }
224    
225            /**
226             * Sets the resource local service.
227             *
228             * @param resourceLocalService the resource local service
229             */
230            public void setResourceLocalService(
231                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
232                    this.resourceLocalService = resourceLocalService;
233            }
234    
235            /**
236             * Returns the user local service.
237             *
238             * @return the user local service
239             */
240            public com.liferay.portal.service.UserLocalService getUserLocalService() {
241                    return userLocalService;
242            }
243    
244            /**
245             * Sets the user local service.
246             *
247             * @param userLocalService the user local service
248             */
249            public void setUserLocalService(
250                    com.liferay.portal.service.UserLocalService userLocalService) {
251                    this.userLocalService = userLocalService;
252            }
253    
254            /**
255             * Returns the user remote service.
256             *
257             * @return the user remote service
258             */
259            public com.liferay.portal.service.UserService getUserService() {
260                    return userService;
261            }
262    
263            /**
264             * Sets the user remote service.
265             *
266             * @param userService the user remote service
267             */
268            public void setUserService(
269                    com.liferay.portal.service.UserService userService) {
270                    this.userService = userService;
271            }
272    
273            /**
274             * Returns the user persistence.
275             *
276             * @return the user persistence
277             */
278            public UserPersistence getUserPersistence() {
279                    return userPersistence;
280            }
281    
282            /**
283             * Sets the user persistence.
284             *
285             * @param userPersistence the user persistence
286             */
287            public void setUserPersistence(UserPersistence userPersistence) {
288                    this.userPersistence = userPersistence;
289            }
290    
291            /**
292             * Returns the user finder.
293             *
294             * @return the user finder
295             */
296            public UserFinder getUserFinder() {
297                    return userFinder;
298            }
299    
300            /**
301             * Sets the user finder.
302             *
303             * @param userFinder the user finder
304             */
305            public void setUserFinder(UserFinder userFinder) {
306                    this.userFinder = userFinder;
307            }
308    
309            /**
310             * Returns the workflow definition link local service.
311             *
312             * @return the workflow definition link local service
313             */
314            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
315                    return workflowDefinitionLinkLocalService;
316            }
317    
318            /**
319             * Sets the workflow definition link local service.
320             *
321             * @param workflowDefinitionLinkLocalService the workflow definition link local service
322             */
323            public void setWorkflowDefinitionLinkLocalService(
324                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
325                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
326            }
327    
328            /**
329             * Returns the workflow definition link persistence.
330             *
331             * @return the workflow definition link persistence
332             */
333            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
334                    return workflowDefinitionLinkPersistence;
335            }
336    
337            /**
338             * Sets the workflow definition link persistence.
339             *
340             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
341             */
342            public void setWorkflowDefinitionLinkPersistence(
343                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
344                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
345            }
346    
347            /**
348             * Returns the workflow instance link local service.
349             *
350             * @return the workflow instance link local service
351             */
352            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
353                    return workflowInstanceLinkLocalService;
354            }
355    
356            /**
357             * Sets the workflow instance link local service.
358             *
359             * @param workflowInstanceLinkLocalService the workflow instance link local service
360             */
361            public void setWorkflowInstanceLinkLocalService(
362                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
363                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
364            }
365    
366            /**
367             * Returns the workflow instance link persistence.
368             *
369             * @return the workflow instance link persistence
370             */
371            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
372                    return workflowInstanceLinkPersistence;
373            }
374    
375            /**
376             * Sets the workflow instance link persistence.
377             *
378             * @param workflowInstanceLinkPersistence the workflow instance link persistence
379             */
380            public void setWorkflowInstanceLinkPersistence(
381                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
382                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
383            }
384    
385            /**
386             * Returns the d l app helper local service.
387             *
388             * @return the d l app helper local service
389             */
390            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
391                    return dlAppHelperLocalService;
392            }
393    
394            /**
395             * Sets the d l app helper local service.
396             *
397             * @param dlAppHelperLocalService the d l app helper local service
398             */
399            public void setDLAppHelperLocalService(
400                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
401                    this.dlAppHelperLocalService = dlAppHelperLocalService;
402            }
403    
404            /**
405             * Returns the document library file entry local service.
406             *
407             * @return the document library file entry local service
408             */
409            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
410                    return dlFileEntryLocalService;
411            }
412    
413            /**
414             * Sets the document library file entry local service.
415             *
416             * @param dlFileEntryLocalService the document library file entry local service
417             */
418            public void setDLFileEntryLocalService(
419                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
420                    this.dlFileEntryLocalService = dlFileEntryLocalService;
421            }
422    
423            /**
424             * Returns the document library file entry remote service.
425             *
426             * @return the document library file entry remote service
427             */
428            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
429                    return dlFileEntryService;
430            }
431    
432            /**
433             * Sets the document library file entry remote service.
434             *
435             * @param dlFileEntryService the document library file entry remote service
436             */
437            public void setDLFileEntryService(
438                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
439                    this.dlFileEntryService = dlFileEntryService;
440            }
441    
442            /**
443             * Returns the document library file entry persistence.
444             *
445             * @return the document library file entry persistence
446             */
447            public DLFileEntryPersistence getDLFileEntryPersistence() {
448                    return dlFileEntryPersistence;
449            }
450    
451            /**
452             * Sets the document library file entry persistence.
453             *
454             * @param dlFileEntryPersistence the document library file entry persistence
455             */
456            public void setDLFileEntryPersistence(
457                    DLFileEntryPersistence dlFileEntryPersistence) {
458                    this.dlFileEntryPersistence = dlFileEntryPersistence;
459            }
460    
461            /**
462             * Returns the document library file entry finder.
463             *
464             * @return the document library file entry finder
465             */
466            public DLFileEntryFinder getDLFileEntryFinder() {
467                    return dlFileEntryFinder;
468            }
469    
470            /**
471             * Sets the document library file entry finder.
472             *
473             * @param dlFileEntryFinder the document library file entry finder
474             */
475            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
476                    this.dlFileEntryFinder = dlFileEntryFinder;
477            }
478    
479            /**
480             * Returns the document library file version local service.
481             *
482             * @return the document library file version local service
483             */
484            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
485                    return dlFileVersionLocalService;
486            }
487    
488            /**
489             * Sets the document library file version local service.
490             *
491             * @param dlFileVersionLocalService the document library file version local service
492             */
493            public void setDLFileVersionLocalService(
494                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
495                    this.dlFileVersionLocalService = dlFileVersionLocalService;
496            }
497    
498            /**
499             * Returns the document library file version remote service.
500             *
501             * @return the document library file version remote service
502             */
503            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
504                    return dlFileVersionService;
505            }
506    
507            /**
508             * Sets the document library file version remote service.
509             *
510             * @param dlFileVersionService the document library file version remote service
511             */
512            public void setDLFileVersionService(
513                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
514                    this.dlFileVersionService = dlFileVersionService;
515            }
516    
517            /**
518             * Returns the document library file version persistence.
519             *
520             * @return the document library file version persistence
521             */
522            public DLFileVersionPersistence getDLFileVersionPersistence() {
523                    return dlFileVersionPersistence;
524            }
525    
526            /**
527             * Sets the document library file version persistence.
528             *
529             * @param dlFileVersionPersistence the document library file version persistence
530             */
531            public void setDLFileVersionPersistence(
532                    DLFileVersionPersistence dlFileVersionPersistence) {
533                    this.dlFileVersionPersistence = dlFileVersionPersistence;
534            }
535    
536            /**
537             * Returns the document library folder local service.
538             *
539             * @return the document library folder local service
540             */
541            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
542                    return dlFolderLocalService;
543            }
544    
545            /**
546             * Sets the document library folder local service.
547             *
548             * @param dlFolderLocalService the document library folder local service
549             */
550            public void setDLFolderLocalService(
551                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
552                    this.dlFolderLocalService = dlFolderLocalService;
553            }
554    
555            /**
556             * Returns the document library folder remote service.
557             *
558             * @return the document library folder remote service
559             */
560            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
561                    return dlFolderService;
562            }
563    
564            /**
565             * Sets the document library folder remote service.
566             *
567             * @param dlFolderService the document library folder remote service
568             */
569            public void setDLFolderService(
570                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
571                    this.dlFolderService = dlFolderService;
572            }
573    
574            /**
575             * Returns the document library folder persistence.
576             *
577             * @return the document library folder persistence
578             */
579            public DLFolderPersistence getDLFolderPersistence() {
580                    return dlFolderPersistence;
581            }
582    
583            /**
584             * Sets the document library folder persistence.
585             *
586             * @param dlFolderPersistence the document library folder persistence
587             */
588            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
589                    this.dlFolderPersistence = dlFolderPersistence;
590            }
591    
592            /**
593             * Returns the document library folder finder.
594             *
595             * @return the document library folder finder
596             */
597            public DLFolderFinder getDLFolderFinder() {
598                    return dlFolderFinder;
599            }
600    
601            /**
602             * Sets the document library folder finder.
603             *
604             * @param dlFolderFinder the document library folder finder
605             */
606            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
607                    this.dlFolderFinder = dlFolderFinder;
608            }
609    
610            public void afterPropertiesSet() {
611            }
612    
613            public void destroy() {
614            }
615    
616            /**
617             * Returns the OSGi service identifier.
618             *
619             * @return the OSGi service identifier
620             */
621            @Override
622            public String getOSGiServiceIdentifier() {
623                    return DLFileEntryTypeService.class.getName();
624            }
625    
626            protected Class<?> getModelClass() {
627                    return DLFileEntryType.class;
628            }
629    
630            protected String getModelClassName() {
631                    return DLFileEntryType.class.getName();
632            }
633    
634            /**
635             * Performs a SQL query.
636             *
637             * @param sql the sql query
638             */
639            protected void runSQL(String sql) {
640                    try {
641                            DataSource dataSource = dlFileEntryTypePersistence.getDataSource();
642    
643                            DB db = DBManagerUtil.getDB();
644    
645                            sql = db.buildSQL(sql);
646                            sql = PortalUtil.transformSQL(sql);
647    
648                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
649                                            sql, new int[0]);
650    
651                            sqlUpdate.update();
652                    }
653                    catch (Exception e) {
654                            throw new SystemException(e);
655                    }
656            }
657    
658            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
659            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
660            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
661            protected DLFileEntryTypeService dlFileEntryTypeService;
662            @BeanReference(type = DLFileEntryTypePersistence.class)
663            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
664            @BeanReference(type = DLFileEntryTypeFinder.class)
665            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
666            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
667            protected com.liferay.counter.service.CounterLocalService counterLocalService;
668            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
669            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
670            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
671            protected com.liferay.portal.service.ClassNameService classNameService;
672            @BeanReference(type = ClassNamePersistence.class)
673            protected ClassNamePersistence classNamePersistence;
674            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
675            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
676            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
677            protected com.liferay.portal.service.UserLocalService userLocalService;
678            @BeanReference(type = com.liferay.portal.service.UserService.class)
679            protected com.liferay.portal.service.UserService userService;
680            @BeanReference(type = UserPersistence.class)
681            protected UserPersistence userPersistence;
682            @BeanReference(type = UserFinder.class)
683            protected UserFinder userFinder;
684            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
685            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
686            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
687            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
688            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
689            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
690            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
691            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
692            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
693            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
694            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
695            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
696            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
697            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
698            @BeanReference(type = DLFileEntryPersistence.class)
699            protected DLFileEntryPersistence dlFileEntryPersistence;
700            @BeanReference(type = DLFileEntryFinder.class)
701            protected DLFileEntryFinder dlFileEntryFinder;
702            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
703            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
704            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
705            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
706            @BeanReference(type = DLFileVersionPersistence.class)
707            protected DLFileVersionPersistence dlFileVersionPersistence;
708            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
709            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
710            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
711            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
712            @BeanReference(type = DLFolderPersistence.class)
713            protected DLFolderPersistence dlFolderPersistence;
714            @BeanReference(type = DLFolderFinder.class)
715            protected DLFolderFinder dlFolderFinder;
716    }