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