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