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