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