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.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.db.DB;
022    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025    import com.liferay.portal.kernel.exception.SystemException;
026    import com.liferay.portal.kernel.util.InfrastructureUtil;
027    import com.liferay.portal.service.BaseLocalServiceImpl;
028    import com.liferay.portal.service.persistence.GroupFinder;
029    import com.liferay.portal.service.persistence.GroupPersistence;
030    import com.liferay.portal.service.persistence.ImagePersistence;
031    import com.liferay.portal.service.persistence.LayoutFinder;
032    import com.liferay.portal.service.persistence.LayoutPersistence;
033    import com.liferay.portal.service.persistence.LockFinder;
034    import com.liferay.portal.service.persistence.LockPersistence;
035    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
036    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
037    import com.liferay.portal.service.persistence.RepositoryPersistence;
038    import com.liferay.portal.service.persistence.SubscriptionPersistence;
039    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
040    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
041    import com.liferay.portal.util.PortalUtil;
042    
043    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
044    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
045    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
046    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
047    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
048    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
049    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
050    import com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService;
051    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
052    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
053    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
054    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
055    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
056    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
057    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
058    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
059    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
060    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
061    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
062    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
063    import com.liferay.portlet.messageboards.service.persistence.MBDiscussionPersistence;
064    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
065    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
066    import com.liferay.portlet.ratings.service.persistence.RatingsEntryFinder;
067    import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence;
068    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
069    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
070    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
071    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
072    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
073    import com.liferay.portlet.trash.service.persistence.TrashVersionPersistence;
074    
075    import javax.sql.DataSource;
076    
077    /**
078     * Provides the base implementation for the d l app helper local service.
079     *
080     * <p>
081     * 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}.
082     * </p>
083     *
084     * @author Brian Wing Shun Chan
085     * @see com.liferay.portlet.documentlibrary.service.impl.DLAppHelperLocalServiceImpl
086     * @see com.liferay.portlet.documentlibrary.service.DLAppHelperLocalServiceUtil
087     * @generated
088     */
089    @ProviderType
090    public abstract class DLAppHelperLocalServiceBaseImpl
091            extends BaseLocalServiceImpl implements DLAppHelperLocalService,
092                    IdentifiableBean {
093            /*
094             * NOTE FOR DEVELOPERS:
095             *
096             * 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.
097             */
098    
099            /**
100             * Returns the d l app helper local service.
101             *
102             * @return the d l app helper local service
103             */
104            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
105                    return dlAppHelperLocalService;
106            }
107    
108            /**
109             * Sets the d l app helper local service.
110             *
111             * @param dlAppHelperLocalService the d l app helper local service
112             */
113            public void setDLAppHelperLocalService(
114                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
115                    this.dlAppHelperLocalService = dlAppHelperLocalService;
116            }
117    
118            /**
119             * Returns the counter local service.
120             *
121             * @return the counter local service
122             */
123            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
124                    return counterLocalService;
125            }
126    
127            /**
128             * Sets the counter local service.
129             *
130             * @param counterLocalService the counter local service
131             */
132            public void setCounterLocalService(
133                    com.liferay.counter.service.CounterLocalService counterLocalService) {
134                    this.counterLocalService = counterLocalService;
135            }
136    
137            /**
138             * Returns the group local service.
139             *
140             * @return the group local service
141             */
142            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
143                    return groupLocalService;
144            }
145    
146            /**
147             * Sets the group local service.
148             *
149             * @param groupLocalService the group local service
150             */
151            public void setGroupLocalService(
152                    com.liferay.portal.service.GroupLocalService groupLocalService) {
153                    this.groupLocalService = groupLocalService;
154            }
155    
156            /**
157             * Returns the group remote service.
158             *
159             * @return the group remote service
160             */
161            public com.liferay.portal.service.GroupService getGroupService() {
162                    return groupService;
163            }
164    
165            /**
166             * Sets the group remote service.
167             *
168             * @param groupService the group remote service
169             */
170            public void setGroupService(
171                    com.liferay.portal.service.GroupService groupService) {
172                    this.groupService = groupService;
173            }
174    
175            /**
176             * Returns the group persistence.
177             *
178             * @return the group persistence
179             */
180            public GroupPersistence getGroupPersistence() {
181                    return groupPersistence;
182            }
183    
184            /**
185             * Sets the group persistence.
186             *
187             * @param groupPersistence the group persistence
188             */
189            public void setGroupPersistence(GroupPersistence groupPersistence) {
190                    this.groupPersistence = groupPersistence;
191            }
192    
193            /**
194             * Returns the group finder.
195             *
196             * @return the group finder
197             */
198            public GroupFinder getGroupFinder() {
199                    return groupFinder;
200            }
201    
202            /**
203             * Sets the group finder.
204             *
205             * @param groupFinder the group finder
206             */
207            public void setGroupFinder(GroupFinder groupFinder) {
208                    this.groupFinder = groupFinder;
209            }
210    
211            /**
212             * Returns the image local service.
213             *
214             * @return the image local service
215             */
216            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
217                    return imageLocalService;
218            }
219    
220            /**
221             * Sets the image local service.
222             *
223             * @param imageLocalService the image local service
224             */
225            public void setImageLocalService(
226                    com.liferay.portal.service.ImageLocalService imageLocalService) {
227                    this.imageLocalService = imageLocalService;
228            }
229    
230            /**
231             * Returns the image remote service.
232             *
233             * @return the image remote service
234             */
235            public com.liferay.portal.service.ImageService getImageService() {
236                    return imageService;
237            }
238    
239            /**
240             * Sets the image remote service.
241             *
242             * @param imageService the image remote service
243             */
244            public void setImageService(
245                    com.liferay.portal.service.ImageService imageService) {
246                    this.imageService = imageService;
247            }
248    
249            /**
250             * Returns the image persistence.
251             *
252             * @return the image persistence
253             */
254            public ImagePersistence getImagePersistence() {
255                    return imagePersistence;
256            }
257    
258            /**
259             * Sets the image persistence.
260             *
261             * @param imagePersistence the image persistence
262             */
263            public void setImagePersistence(ImagePersistence imagePersistence) {
264                    this.imagePersistence = imagePersistence;
265            }
266    
267            /**
268             * Returns the layout local service.
269             *
270             * @return the layout local service
271             */
272            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
273                    return layoutLocalService;
274            }
275    
276            /**
277             * Sets the layout local service.
278             *
279             * @param layoutLocalService the layout local service
280             */
281            public void setLayoutLocalService(
282                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
283                    this.layoutLocalService = layoutLocalService;
284            }
285    
286            /**
287             * Returns the layout remote service.
288             *
289             * @return the layout remote service
290             */
291            public com.liferay.portal.service.LayoutService getLayoutService() {
292                    return layoutService;
293            }
294    
295            /**
296             * Sets the layout remote service.
297             *
298             * @param layoutService the layout remote service
299             */
300            public void setLayoutService(
301                    com.liferay.portal.service.LayoutService layoutService) {
302                    this.layoutService = layoutService;
303            }
304    
305            /**
306             * Returns the layout persistence.
307             *
308             * @return the layout persistence
309             */
310            public LayoutPersistence getLayoutPersistence() {
311                    return layoutPersistence;
312            }
313    
314            /**
315             * Sets the layout persistence.
316             *
317             * @param layoutPersistence the layout persistence
318             */
319            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
320                    this.layoutPersistence = layoutPersistence;
321            }
322    
323            /**
324             * Returns the layout finder.
325             *
326             * @return the layout finder
327             */
328            public LayoutFinder getLayoutFinder() {
329                    return layoutFinder;
330            }
331    
332            /**
333             * Sets the layout finder.
334             *
335             * @param layoutFinder the layout finder
336             */
337            public void setLayoutFinder(LayoutFinder layoutFinder) {
338                    this.layoutFinder = layoutFinder;
339            }
340    
341            /**
342             * Returns the lock local service.
343             *
344             * @return the lock local service
345             */
346            public com.liferay.portal.service.LockLocalService getLockLocalService() {
347                    return lockLocalService;
348            }
349    
350            /**
351             * Sets the lock local service.
352             *
353             * @param lockLocalService the lock local service
354             */
355            public void setLockLocalService(
356                    com.liferay.portal.service.LockLocalService lockLocalService) {
357                    this.lockLocalService = lockLocalService;
358            }
359    
360            /**
361             * Returns the lock persistence.
362             *
363             * @return the lock persistence
364             */
365            public LockPersistence getLockPersistence() {
366                    return lockPersistence;
367            }
368    
369            /**
370             * Sets the lock persistence.
371             *
372             * @param lockPersistence the lock persistence
373             */
374            public void setLockPersistence(LockPersistence lockPersistence) {
375                    this.lockPersistence = lockPersistence;
376            }
377    
378            /**
379             * Returns the lock finder.
380             *
381             * @return the lock finder
382             */
383            public LockFinder getLockFinder() {
384                    return lockFinder;
385            }
386    
387            /**
388             * Sets the lock finder.
389             *
390             * @param lockFinder the lock finder
391             */
392            public void setLockFinder(LockFinder lockFinder) {
393                    this.lockFinder = lockFinder;
394            }
395    
396            /**
397             * Returns the portlet preferences local service.
398             *
399             * @return the portlet preferences local service
400             */
401            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
402                    return portletPreferencesLocalService;
403            }
404    
405            /**
406             * Sets the portlet preferences local service.
407             *
408             * @param portletPreferencesLocalService the portlet preferences local service
409             */
410            public void setPortletPreferencesLocalService(
411                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
412                    this.portletPreferencesLocalService = portletPreferencesLocalService;
413            }
414    
415            /**
416             * Returns the portlet preferences remote service.
417             *
418             * @return the portlet preferences remote service
419             */
420            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
421                    return portletPreferencesService;
422            }
423    
424            /**
425             * Sets the portlet preferences remote service.
426             *
427             * @param portletPreferencesService the portlet preferences remote service
428             */
429            public void setPortletPreferencesService(
430                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
431                    this.portletPreferencesService = portletPreferencesService;
432            }
433    
434            /**
435             * Returns the portlet preferences persistence.
436             *
437             * @return the portlet preferences persistence
438             */
439            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
440                    return portletPreferencesPersistence;
441            }
442    
443            /**
444             * Sets the portlet preferences persistence.
445             *
446             * @param portletPreferencesPersistence the portlet preferences persistence
447             */
448            public void setPortletPreferencesPersistence(
449                    PortletPreferencesPersistence portletPreferencesPersistence) {
450                    this.portletPreferencesPersistence = portletPreferencesPersistence;
451            }
452    
453            /**
454             * Returns the portlet preferences finder.
455             *
456             * @return the portlet preferences finder
457             */
458            public PortletPreferencesFinder getPortletPreferencesFinder() {
459                    return portletPreferencesFinder;
460            }
461    
462            /**
463             * Sets the portlet preferences finder.
464             *
465             * @param portletPreferencesFinder the portlet preferences finder
466             */
467            public void setPortletPreferencesFinder(
468                    PortletPreferencesFinder portletPreferencesFinder) {
469                    this.portletPreferencesFinder = portletPreferencesFinder;
470            }
471    
472            /**
473             * Returns the repository local service.
474             *
475             * @return the repository local service
476             */
477            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
478                    return repositoryLocalService;
479            }
480    
481            /**
482             * Sets the repository local service.
483             *
484             * @param repositoryLocalService the repository local service
485             */
486            public void setRepositoryLocalService(
487                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
488                    this.repositoryLocalService = repositoryLocalService;
489            }
490    
491            /**
492             * Returns the repository remote service.
493             *
494             * @return the repository remote service
495             */
496            public com.liferay.portal.service.RepositoryService getRepositoryService() {
497                    return repositoryService;
498            }
499    
500            /**
501             * Sets the repository remote service.
502             *
503             * @param repositoryService the repository remote service
504             */
505            public void setRepositoryService(
506                    com.liferay.portal.service.RepositoryService repositoryService) {
507                    this.repositoryService = repositoryService;
508            }
509    
510            /**
511             * Returns the repository persistence.
512             *
513             * @return the repository persistence
514             */
515            public RepositoryPersistence getRepositoryPersistence() {
516                    return repositoryPersistence;
517            }
518    
519            /**
520             * Sets the repository persistence.
521             *
522             * @param repositoryPersistence the repository persistence
523             */
524            public void setRepositoryPersistence(
525                    RepositoryPersistence repositoryPersistence) {
526                    this.repositoryPersistence = repositoryPersistence;
527            }
528    
529            /**
530             * Returns the subscription local service.
531             *
532             * @return the subscription local service
533             */
534            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
535                    return subscriptionLocalService;
536            }
537    
538            /**
539             * Sets the subscription local service.
540             *
541             * @param subscriptionLocalService the subscription local service
542             */
543            public void setSubscriptionLocalService(
544                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
545                    this.subscriptionLocalService = subscriptionLocalService;
546            }
547    
548            /**
549             * Returns the subscription persistence.
550             *
551             * @return the subscription persistence
552             */
553            public SubscriptionPersistence getSubscriptionPersistence() {
554                    return subscriptionPersistence;
555            }
556    
557            /**
558             * Sets the subscription persistence.
559             *
560             * @param subscriptionPersistence the subscription persistence
561             */
562            public void setSubscriptionPersistence(
563                    SubscriptionPersistence subscriptionPersistence) {
564                    this.subscriptionPersistence = subscriptionPersistence;
565            }
566    
567            /**
568             * Returns the web d a v props local service.
569             *
570             * @return the web d a v props local service
571             */
572            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
573                    return webDAVPropsLocalService;
574            }
575    
576            /**
577             * Sets the web d a v props local service.
578             *
579             * @param webDAVPropsLocalService the web d a v props local service
580             */
581            public void setWebDAVPropsLocalService(
582                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
583                    this.webDAVPropsLocalService = webDAVPropsLocalService;
584            }
585    
586            /**
587             * Returns the web d a v props persistence.
588             *
589             * @return the web d a v props persistence
590             */
591            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
592                    return webDAVPropsPersistence;
593            }
594    
595            /**
596             * Sets the web d a v props persistence.
597             *
598             * @param webDAVPropsPersistence the web d a v props persistence
599             */
600            public void setWebDAVPropsPersistence(
601                    WebDAVPropsPersistence webDAVPropsPersistence) {
602                    this.webDAVPropsPersistence = webDAVPropsPersistence;
603            }
604    
605            /**
606             * Returns the workflow instance link local service.
607             *
608             * @return the workflow instance link local service
609             */
610            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
611                    return workflowInstanceLinkLocalService;
612            }
613    
614            /**
615             * Sets the workflow instance link local service.
616             *
617             * @param workflowInstanceLinkLocalService the workflow instance link local service
618             */
619            public void setWorkflowInstanceLinkLocalService(
620                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
621                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
622            }
623    
624            /**
625             * Returns the workflow instance link persistence.
626             *
627             * @return the workflow instance link persistence
628             */
629            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
630                    return workflowInstanceLinkPersistence;
631            }
632    
633            /**
634             * Sets the workflow instance link persistence.
635             *
636             * @param workflowInstanceLinkPersistence the workflow instance link persistence
637             */
638            public void setWorkflowInstanceLinkPersistence(
639                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
640                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
641            }
642    
643            /**
644             * Returns the asset category local service.
645             *
646             * @return the asset category local service
647             */
648            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
649                    return assetCategoryLocalService;
650            }
651    
652            /**
653             * Sets the asset category local service.
654             *
655             * @param assetCategoryLocalService the asset category local service
656             */
657            public void setAssetCategoryLocalService(
658                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
659                    this.assetCategoryLocalService = assetCategoryLocalService;
660            }
661    
662            /**
663             * Returns the asset category remote service.
664             *
665             * @return the asset category remote service
666             */
667            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
668                    return assetCategoryService;
669            }
670    
671            /**
672             * Sets the asset category remote service.
673             *
674             * @param assetCategoryService the asset category remote service
675             */
676            public void setAssetCategoryService(
677                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
678                    this.assetCategoryService = assetCategoryService;
679            }
680    
681            /**
682             * Returns the asset category persistence.
683             *
684             * @return the asset category persistence
685             */
686            public AssetCategoryPersistence getAssetCategoryPersistence() {
687                    return assetCategoryPersistence;
688            }
689    
690            /**
691             * Sets the asset category persistence.
692             *
693             * @param assetCategoryPersistence the asset category persistence
694             */
695            public void setAssetCategoryPersistence(
696                    AssetCategoryPersistence assetCategoryPersistence) {
697                    this.assetCategoryPersistence = assetCategoryPersistence;
698            }
699    
700            /**
701             * Returns the asset category finder.
702             *
703             * @return the asset category finder
704             */
705            public AssetCategoryFinder getAssetCategoryFinder() {
706                    return assetCategoryFinder;
707            }
708    
709            /**
710             * Sets the asset category finder.
711             *
712             * @param assetCategoryFinder the asset category finder
713             */
714            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
715                    this.assetCategoryFinder = assetCategoryFinder;
716            }
717    
718            /**
719             * Returns the asset entry local service.
720             *
721             * @return the asset entry local service
722             */
723            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
724                    return assetEntryLocalService;
725            }
726    
727            /**
728             * Sets the asset entry local service.
729             *
730             * @param assetEntryLocalService the asset entry local service
731             */
732            public void setAssetEntryLocalService(
733                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
734                    this.assetEntryLocalService = assetEntryLocalService;
735            }
736    
737            /**
738             * Returns the asset entry remote service.
739             *
740             * @return the asset entry remote service
741             */
742            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
743                    return assetEntryService;
744            }
745    
746            /**
747             * Sets the asset entry remote service.
748             *
749             * @param assetEntryService the asset entry remote service
750             */
751            public void setAssetEntryService(
752                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
753                    this.assetEntryService = assetEntryService;
754            }
755    
756            /**
757             * Returns the asset entry persistence.
758             *
759             * @return the asset entry persistence
760             */
761            public AssetEntryPersistence getAssetEntryPersistence() {
762                    return assetEntryPersistence;
763            }
764    
765            /**
766             * Sets the asset entry persistence.
767             *
768             * @param assetEntryPersistence the asset entry persistence
769             */
770            public void setAssetEntryPersistence(
771                    AssetEntryPersistence assetEntryPersistence) {
772                    this.assetEntryPersistence = assetEntryPersistence;
773            }
774    
775            /**
776             * Returns the asset entry finder.
777             *
778             * @return the asset entry finder
779             */
780            public AssetEntryFinder getAssetEntryFinder() {
781                    return assetEntryFinder;
782            }
783    
784            /**
785             * Sets the asset entry finder.
786             *
787             * @param assetEntryFinder the asset entry finder
788             */
789            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
790                    this.assetEntryFinder = assetEntryFinder;
791            }
792    
793            /**
794             * Returns the asset link local service.
795             *
796             * @return the asset link local service
797             */
798            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
799                    return assetLinkLocalService;
800            }
801    
802            /**
803             * Sets the asset link local service.
804             *
805             * @param assetLinkLocalService the asset link local service
806             */
807            public void setAssetLinkLocalService(
808                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
809                    this.assetLinkLocalService = assetLinkLocalService;
810            }
811    
812            /**
813             * Returns the asset link persistence.
814             *
815             * @return the asset link persistence
816             */
817            public AssetLinkPersistence getAssetLinkPersistence() {
818                    return assetLinkPersistence;
819            }
820    
821            /**
822             * Sets the asset link persistence.
823             *
824             * @param assetLinkPersistence the asset link persistence
825             */
826            public void setAssetLinkPersistence(
827                    AssetLinkPersistence assetLinkPersistence) {
828                    this.assetLinkPersistence = assetLinkPersistence;
829            }
830    
831            /**
832             * Returns the asset tag local service.
833             *
834             * @return the asset tag local service
835             */
836            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
837                    return assetTagLocalService;
838            }
839    
840            /**
841             * Sets the asset tag local service.
842             *
843             * @param assetTagLocalService the asset tag local service
844             */
845            public void setAssetTagLocalService(
846                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
847                    this.assetTagLocalService = assetTagLocalService;
848            }
849    
850            /**
851             * Returns the asset tag remote service.
852             *
853             * @return the asset tag remote service
854             */
855            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
856                    return assetTagService;
857            }
858    
859            /**
860             * Sets the asset tag remote service.
861             *
862             * @param assetTagService the asset tag remote service
863             */
864            public void setAssetTagService(
865                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
866                    this.assetTagService = assetTagService;
867            }
868    
869            /**
870             * Returns the asset tag persistence.
871             *
872             * @return the asset tag persistence
873             */
874            public AssetTagPersistence getAssetTagPersistence() {
875                    return assetTagPersistence;
876            }
877    
878            /**
879             * Sets the asset tag persistence.
880             *
881             * @param assetTagPersistence the asset tag persistence
882             */
883            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
884                    this.assetTagPersistence = assetTagPersistence;
885            }
886    
887            /**
888             * Returns the asset tag finder.
889             *
890             * @return the asset tag finder
891             */
892            public AssetTagFinder getAssetTagFinder() {
893                    return assetTagFinder;
894            }
895    
896            /**
897             * Sets the asset tag finder.
898             *
899             * @param assetTagFinder the asset tag finder
900             */
901            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
902                    this.assetTagFinder = assetTagFinder;
903            }
904    
905            /**
906             * Returns the d l app local service.
907             *
908             * @return the d l app local service
909             */
910            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
911                    return dlAppLocalService;
912            }
913    
914            /**
915             * Sets the d l app local service.
916             *
917             * @param dlAppLocalService the d l app local service
918             */
919            public void setDLAppLocalService(
920                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
921                    this.dlAppLocalService = dlAppLocalService;
922            }
923    
924            /**
925             * Returns the d l app remote service.
926             *
927             * @return the d l app remote service
928             */
929            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
930                    return dlAppService;
931            }
932    
933            /**
934             * Sets the d l app remote service.
935             *
936             * @param dlAppService the d l app remote service
937             */
938            public void setDLAppService(
939                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
940                    this.dlAppService = dlAppService;
941            }
942    
943            /**
944             * Returns the expando value local service.
945             *
946             * @return the expando value local service
947             */
948            public com.liferay.portlet.expando.service.ExpandoValueLocalService getExpandoValueLocalService() {
949                    return expandoValueLocalService;
950            }
951    
952            /**
953             * Sets the expando value local service.
954             *
955             * @param expandoValueLocalService the expando value local service
956             */
957            public void setExpandoValueLocalService(
958                    com.liferay.portlet.expando.service.ExpandoValueLocalService expandoValueLocalService) {
959                    this.expandoValueLocalService = expandoValueLocalService;
960            }
961    
962            /**
963             * Returns the expando value remote service.
964             *
965             * @return the expando value remote service
966             */
967            public com.liferay.portlet.expando.service.ExpandoValueService getExpandoValueService() {
968                    return expandoValueService;
969            }
970    
971            /**
972             * Sets the expando value remote service.
973             *
974             * @param expandoValueService the expando value remote service
975             */
976            public void setExpandoValueService(
977                    com.liferay.portlet.expando.service.ExpandoValueService expandoValueService) {
978                    this.expandoValueService = expandoValueService;
979            }
980    
981            /**
982             * Returns the expando value persistence.
983             *
984             * @return the expando value persistence
985             */
986            public ExpandoValuePersistence getExpandoValuePersistence() {
987                    return expandoValuePersistence;
988            }
989    
990            /**
991             * Sets the expando value persistence.
992             *
993             * @param expandoValuePersistence the expando value persistence
994             */
995            public void setExpandoValuePersistence(
996                    ExpandoValuePersistence expandoValuePersistence) {
997                    this.expandoValuePersistence = expandoValuePersistence;
998            }
999    
1000            /**
1001             * Returns the message boards discussion local service.
1002             *
1003             * @return the message boards discussion local service
1004             */
1005            public com.liferay.portlet.messageboards.service.MBDiscussionLocalService getMBDiscussionLocalService() {
1006                    return mbDiscussionLocalService;
1007            }
1008    
1009            /**
1010             * Sets the message boards discussion local service.
1011             *
1012             * @param mbDiscussionLocalService the message boards discussion local service
1013             */
1014            public void setMBDiscussionLocalService(
1015                    com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService) {
1016                    this.mbDiscussionLocalService = mbDiscussionLocalService;
1017            }
1018    
1019            /**
1020             * Returns the message boards discussion persistence.
1021             *
1022             * @return the message boards discussion persistence
1023             */
1024            public MBDiscussionPersistence getMBDiscussionPersistence() {
1025                    return mbDiscussionPersistence;
1026            }
1027    
1028            /**
1029             * Sets the message boards discussion persistence.
1030             *
1031             * @param mbDiscussionPersistence the message boards discussion persistence
1032             */
1033            public void setMBDiscussionPersistence(
1034                    MBDiscussionPersistence mbDiscussionPersistence) {
1035                    this.mbDiscussionPersistence = mbDiscussionPersistence;
1036            }
1037    
1038            /**
1039             * Returns the message-boards message local service.
1040             *
1041             * @return the message-boards message local service
1042             */
1043            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1044                    return mbMessageLocalService;
1045            }
1046    
1047            /**
1048             * Sets the message-boards message local service.
1049             *
1050             * @param mbMessageLocalService the message-boards message local service
1051             */
1052            public void setMBMessageLocalService(
1053                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1054                    this.mbMessageLocalService = mbMessageLocalService;
1055            }
1056    
1057            /**
1058             * Returns the message-boards message remote service.
1059             *
1060             * @return the message-boards message remote service
1061             */
1062            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1063                    return mbMessageService;
1064            }
1065    
1066            /**
1067             * Sets the message-boards message remote service.
1068             *
1069             * @param mbMessageService the message-boards message remote service
1070             */
1071            public void setMBMessageService(
1072                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1073                    this.mbMessageService = mbMessageService;
1074            }
1075    
1076            /**
1077             * Returns the message-boards message persistence.
1078             *
1079             * @return the message-boards message persistence
1080             */
1081            public MBMessagePersistence getMBMessagePersistence() {
1082                    return mbMessagePersistence;
1083            }
1084    
1085            /**
1086             * Sets the message-boards message persistence.
1087             *
1088             * @param mbMessagePersistence the message-boards message persistence
1089             */
1090            public void setMBMessagePersistence(
1091                    MBMessagePersistence mbMessagePersistence) {
1092                    this.mbMessagePersistence = mbMessagePersistence;
1093            }
1094    
1095            /**
1096             * Returns the message-boards message finder.
1097             *
1098             * @return the message-boards message finder
1099             */
1100            public MBMessageFinder getMBMessageFinder() {
1101                    return mbMessageFinder;
1102            }
1103    
1104            /**
1105             * Sets the message-boards message finder.
1106             *
1107             * @param mbMessageFinder the message-boards message finder
1108             */
1109            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1110                    this.mbMessageFinder = mbMessageFinder;
1111            }
1112    
1113            /**
1114             * Returns the ratings entry local service.
1115             *
1116             * @return the ratings entry local service
1117             */
1118            public com.liferay.portlet.ratings.service.RatingsEntryLocalService getRatingsEntryLocalService() {
1119                    return ratingsEntryLocalService;
1120            }
1121    
1122            /**
1123             * Sets the ratings entry local service.
1124             *
1125             * @param ratingsEntryLocalService the ratings entry local service
1126             */
1127            public void setRatingsEntryLocalService(
1128                    com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService) {
1129                    this.ratingsEntryLocalService = ratingsEntryLocalService;
1130            }
1131    
1132            /**
1133             * Returns the ratings entry remote service.
1134             *
1135             * @return the ratings entry remote service
1136             */
1137            public com.liferay.portlet.ratings.service.RatingsEntryService getRatingsEntryService() {
1138                    return ratingsEntryService;
1139            }
1140    
1141            /**
1142             * Sets the ratings entry remote service.
1143             *
1144             * @param ratingsEntryService the ratings entry remote service
1145             */
1146            public void setRatingsEntryService(
1147                    com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService) {
1148                    this.ratingsEntryService = ratingsEntryService;
1149            }
1150    
1151            /**
1152             * Returns the ratings entry persistence.
1153             *
1154             * @return the ratings entry persistence
1155             */
1156            public RatingsEntryPersistence getRatingsEntryPersistence() {
1157                    return ratingsEntryPersistence;
1158            }
1159    
1160            /**
1161             * Sets the ratings entry persistence.
1162             *
1163             * @param ratingsEntryPersistence the ratings entry persistence
1164             */
1165            public void setRatingsEntryPersistence(
1166                    RatingsEntryPersistence ratingsEntryPersistence) {
1167                    this.ratingsEntryPersistence = ratingsEntryPersistence;
1168            }
1169    
1170            /**
1171             * Returns the ratings entry finder.
1172             *
1173             * @return the ratings entry finder
1174             */
1175            public RatingsEntryFinder getRatingsEntryFinder() {
1176                    return ratingsEntryFinder;
1177            }
1178    
1179            /**
1180             * Sets the ratings entry finder.
1181             *
1182             * @param ratingsEntryFinder the ratings entry finder
1183             */
1184            public void setRatingsEntryFinder(RatingsEntryFinder ratingsEntryFinder) {
1185                    this.ratingsEntryFinder = ratingsEntryFinder;
1186            }
1187    
1188            /**
1189             * Returns the ratings stats local service.
1190             *
1191             * @return the ratings stats local service
1192             */
1193            public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1194                    return ratingsStatsLocalService;
1195            }
1196    
1197            /**
1198             * Sets the ratings stats local service.
1199             *
1200             * @param ratingsStatsLocalService the ratings stats local service
1201             */
1202            public void setRatingsStatsLocalService(
1203                    com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1204                    this.ratingsStatsLocalService = ratingsStatsLocalService;
1205            }
1206    
1207            /**
1208             * Returns the ratings stats persistence.
1209             *
1210             * @return the ratings stats persistence
1211             */
1212            public RatingsStatsPersistence getRatingsStatsPersistence() {
1213                    return ratingsStatsPersistence;
1214            }
1215    
1216            /**
1217             * Sets the ratings stats persistence.
1218             *
1219             * @param ratingsStatsPersistence the ratings stats persistence
1220             */
1221            public void setRatingsStatsPersistence(
1222                    RatingsStatsPersistence ratingsStatsPersistence) {
1223                    this.ratingsStatsPersistence = ratingsStatsPersistence;
1224            }
1225    
1226            /**
1227             * Returns the ratings stats finder.
1228             *
1229             * @return the ratings stats finder
1230             */
1231            public RatingsStatsFinder getRatingsStatsFinder() {
1232                    return ratingsStatsFinder;
1233            }
1234    
1235            /**
1236             * Sets the ratings stats finder.
1237             *
1238             * @param ratingsStatsFinder the ratings stats finder
1239             */
1240            public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1241                    this.ratingsStatsFinder = ratingsStatsFinder;
1242            }
1243    
1244            /**
1245             * Returns the social activity local service.
1246             *
1247             * @return the social activity local service
1248             */
1249            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1250                    return socialActivityLocalService;
1251            }
1252    
1253            /**
1254             * Sets the social activity local service.
1255             *
1256             * @param socialActivityLocalService the social activity local service
1257             */
1258            public void setSocialActivityLocalService(
1259                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1260                    this.socialActivityLocalService = socialActivityLocalService;
1261            }
1262    
1263            /**
1264             * Returns the social activity remote service.
1265             *
1266             * @return the social activity remote service
1267             */
1268            public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1269                    return socialActivityService;
1270            }
1271    
1272            /**
1273             * Sets the social activity remote service.
1274             *
1275             * @param socialActivityService the social activity remote service
1276             */
1277            public void setSocialActivityService(
1278                    com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1279                    this.socialActivityService = socialActivityService;
1280            }
1281    
1282            /**
1283             * Returns the social activity persistence.
1284             *
1285             * @return the social activity persistence
1286             */
1287            public SocialActivityPersistence getSocialActivityPersistence() {
1288                    return socialActivityPersistence;
1289            }
1290    
1291            /**
1292             * Sets the social activity persistence.
1293             *
1294             * @param socialActivityPersistence the social activity persistence
1295             */
1296            public void setSocialActivityPersistence(
1297                    SocialActivityPersistence socialActivityPersistence) {
1298                    this.socialActivityPersistence = socialActivityPersistence;
1299            }
1300    
1301            /**
1302             * Returns the social activity finder.
1303             *
1304             * @return the social activity finder
1305             */
1306            public SocialActivityFinder getSocialActivityFinder() {
1307                    return socialActivityFinder;
1308            }
1309    
1310            /**
1311             * Sets the social activity finder.
1312             *
1313             * @param socialActivityFinder the social activity finder
1314             */
1315            public void setSocialActivityFinder(
1316                    SocialActivityFinder socialActivityFinder) {
1317                    this.socialActivityFinder = socialActivityFinder;
1318            }
1319    
1320            /**
1321             * Returns the trash entry local service.
1322             *
1323             * @return the trash entry local service
1324             */
1325            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1326                    return trashEntryLocalService;
1327            }
1328    
1329            /**
1330             * Sets the trash entry local service.
1331             *
1332             * @param trashEntryLocalService the trash entry local service
1333             */
1334            public void setTrashEntryLocalService(
1335                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1336                    this.trashEntryLocalService = trashEntryLocalService;
1337            }
1338    
1339            /**
1340             * Returns the trash entry remote service.
1341             *
1342             * @return the trash entry remote service
1343             */
1344            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1345                    return trashEntryService;
1346            }
1347    
1348            /**
1349             * Sets the trash entry remote service.
1350             *
1351             * @param trashEntryService the trash entry remote service
1352             */
1353            public void setTrashEntryService(
1354                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1355                    this.trashEntryService = trashEntryService;
1356            }
1357    
1358            /**
1359             * Returns the trash entry persistence.
1360             *
1361             * @return the trash entry persistence
1362             */
1363            public TrashEntryPersistence getTrashEntryPersistence() {
1364                    return trashEntryPersistence;
1365            }
1366    
1367            /**
1368             * Sets the trash entry persistence.
1369             *
1370             * @param trashEntryPersistence the trash entry persistence
1371             */
1372            public void setTrashEntryPersistence(
1373                    TrashEntryPersistence trashEntryPersistence) {
1374                    this.trashEntryPersistence = trashEntryPersistence;
1375            }
1376    
1377            /**
1378             * Returns the trash version local service.
1379             *
1380             * @return the trash version local service
1381             */
1382            public com.liferay.portlet.trash.service.TrashVersionLocalService getTrashVersionLocalService() {
1383                    return trashVersionLocalService;
1384            }
1385    
1386            /**
1387             * Sets the trash version local service.
1388             *
1389             * @param trashVersionLocalService the trash version local service
1390             */
1391            public void setTrashVersionLocalService(
1392                    com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService) {
1393                    this.trashVersionLocalService = trashVersionLocalService;
1394            }
1395    
1396            /**
1397             * Returns the trash version persistence.
1398             *
1399             * @return the trash version persistence
1400             */
1401            public TrashVersionPersistence getTrashVersionPersistence() {
1402                    return trashVersionPersistence;
1403            }
1404    
1405            /**
1406             * Sets the trash version persistence.
1407             *
1408             * @param trashVersionPersistence the trash version persistence
1409             */
1410            public void setTrashVersionPersistence(
1411                    TrashVersionPersistence trashVersionPersistence) {
1412                    this.trashVersionPersistence = trashVersionPersistence;
1413            }
1414    
1415            /**
1416             * Returns the document library file entry local service.
1417             *
1418             * @return the document library file entry local service
1419             */
1420            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
1421                    return dlFileEntryLocalService;
1422            }
1423    
1424            /**
1425             * Sets the document library file entry local service.
1426             *
1427             * @param dlFileEntryLocalService the document library file entry local service
1428             */
1429            public void setDLFileEntryLocalService(
1430                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
1431                    this.dlFileEntryLocalService = dlFileEntryLocalService;
1432            }
1433    
1434            /**
1435             * Returns the document library file entry remote service.
1436             *
1437             * @return the document library file entry remote service
1438             */
1439            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
1440                    return dlFileEntryService;
1441            }
1442    
1443            /**
1444             * Sets the document library file entry remote service.
1445             *
1446             * @param dlFileEntryService the document library file entry remote service
1447             */
1448            public void setDLFileEntryService(
1449                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
1450                    this.dlFileEntryService = dlFileEntryService;
1451            }
1452    
1453            /**
1454             * Returns the document library file entry persistence.
1455             *
1456             * @return the document library file entry persistence
1457             */
1458            public DLFileEntryPersistence getDLFileEntryPersistence() {
1459                    return dlFileEntryPersistence;
1460            }
1461    
1462            /**
1463             * Sets the document library file entry persistence.
1464             *
1465             * @param dlFileEntryPersistence the document library file entry persistence
1466             */
1467            public void setDLFileEntryPersistence(
1468                    DLFileEntryPersistence dlFileEntryPersistence) {
1469                    this.dlFileEntryPersistence = dlFileEntryPersistence;
1470            }
1471    
1472            /**
1473             * Returns the document library file entry finder.
1474             *
1475             * @return the document library file entry finder
1476             */
1477            public DLFileEntryFinder getDLFileEntryFinder() {
1478                    return dlFileEntryFinder;
1479            }
1480    
1481            /**
1482             * Sets the document library file entry finder.
1483             *
1484             * @param dlFileEntryFinder the document library file entry finder
1485             */
1486            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
1487                    this.dlFileEntryFinder = dlFileEntryFinder;
1488            }
1489    
1490            /**
1491             * Returns the document library file entry type local service.
1492             *
1493             * @return the document library file entry type local service
1494             */
1495            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
1496                    return dlFileEntryTypeLocalService;
1497            }
1498    
1499            /**
1500             * Sets the document library file entry type local service.
1501             *
1502             * @param dlFileEntryTypeLocalService the document library file entry type local service
1503             */
1504            public void setDLFileEntryTypeLocalService(
1505                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
1506                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
1507            }
1508    
1509            /**
1510             * Returns the document library file entry type remote service.
1511             *
1512             * @return the document library file entry type remote service
1513             */
1514            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
1515                    return dlFileEntryTypeService;
1516            }
1517    
1518            /**
1519             * Sets the document library file entry type remote service.
1520             *
1521             * @param dlFileEntryTypeService the document library file entry type remote service
1522             */
1523            public void setDLFileEntryTypeService(
1524                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
1525                    this.dlFileEntryTypeService = dlFileEntryTypeService;
1526            }
1527    
1528            /**
1529             * Returns the document library file entry type persistence.
1530             *
1531             * @return the document library file entry type persistence
1532             */
1533            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
1534                    return dlFileEntryTypePersistence;
1535            }
1536    
1537            /**
1538             * Sets the document library file entry type persistence.
1539             *
1540             * @param dlFileEntryTypePersistence the document library file entry type persistence
1541             */
1542            public void setDLFileEntryTypePersistence(
1543                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
1544                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
1545            }
1546    
1547            /**
1548             * Returns the document library file entry type finder.
1549             *
1550             * @return the document library file entry type finder
1551             */
1552            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
1553                    return dlFileEntryTypeFinder;
1554            }
1555    
1556            /**
1557             * Sets the document library file entry type finder.
1558             *
1559             * @param dlFileEntryTypeFinder the document library file entry type finder
1560             */
1561            public void setDLFileEntryTypeFinder(
1562                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
1563                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
1564            }
1565    
1566            /**
1567             * Returns the document library file rank local service.
1568             *
1569             * @return the document library file rank local service
1570             */
1571            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
1572                    return dlFileRankLocalService;
1573            }
1574    
1575            /**
1576             * Sets the document library file rank local service.
1577             *
1578             * @param dlFileRankLocalService the document library file rank local service
1579             */
1580            public void setDLFileRankLocalService(
1581                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
1582                    this.dlFileRankLocalService = dlFileRankLocalService;
1583            }
1584    
1585            /**
1586             * Returns the document library file rank persistence.
1587             *
1588             * @return the document library file rank persistence
1589             */
1590            public DLFileRankPersistence getDLFileRankPersistence() {
1591                    return dlFileRankPersistence;
1592            }
1593    
1594            /**
1595             * Sets the document library file rank persistence.
1596             *
1597             * @param dlFileRankPersistence the document library file rank persistence
1598             */
1599            public void setDLFileRankPersistence(
1600                    DLFileRankPersistence dlFileRankPersistence) {
1601                    this.dlFileRankPersistence = dlFileRankPersistence;
1602            }
1603    
1604            /**
1605             * Returns the document library file rank finder.
1606             *
1607             * @return the document library file rank finder
1608             */
1609            public DLFileRankFinder getDLFileRankFinder() {
1610                    return dlFileRankFinder;
1611            }
1612    
1613            /**
1614             * Sets the document library file rank finder.
1615             *
1616             * @param dlFileRankFinder the document library file rank finder
1617             */
1618            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
1619                    this.dlFileRankFinder = dlFileRankFinder;
1620            }
1621    
1622            /**
1623             * Returns the document library file shortcut local service.
1624             *
1625             * @return the document library file shortcut local service
1626             */
1627            public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
1628                    return dlFileShortcutLocalService;
1629            }
1630    
1631            /**
1632             * Sets the document library file shortcut local service.
1633             *
1634             * @param dlFileShortcutLocalService the document library file shortcut local service
1635             */
1636            public void setDLFileShortcutLocalService(
1637                    com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
1638                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
1639            }
1640    
1641            /**
1642             * Returns the document library file shortcut remote service.
1643             *
1644             * @return the document library file shortcut remote service
1645             */
1646            public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
1647                    return dlFileShortcutService;
1648            }
1649    
1650            /**
1651             * Sets the document library file shortcut remote service.
1652             *
1653             * @param dlFileShortcutService the document library file shortcut remote service
1654             */
1655            public void setDLFileShortcutService(
1656                    com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
1657                    this.dlFileShortcutService = dlFileShortcutService;
1658            }
1659    
1660            /**
1661             * Returns the document library file shortcut persistence.
1662             *
1663             * @return the document library file shortcut persistence
1664             */
1665            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
1666                    return dlFileShortcutPersistence;
1667            }
1668    
1669            /**
1670             * Sets the document library file shortcut persistence.
1671             *
1672             * @param dlFileShortcutPersistence the document library file shortcut persistence
1673             */
1674            public void setDLFileShortcutPersistence(
1675                    DLFileShortcutPersistence dlFileShortcutPersistence) {
1676                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
1677            }
1678    
1679            /**
1680             * Returns the document library file version local service.
1681             *
1682             * @return the document library file version local service
1683             */
1684            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
1685                    return dlFileVersionLocalService;
1686            }
1687    
1688            /**
1689             * Sets the document library file version local service.
1690             *
1691             * @param dlFileVersionLocalService the document library file version local service
1692             */
1693            public void setDLFileVersionLocalService(
1694                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
1695                    this.dlFileVersionLocalService = dlFileVersionLocalService;
1696            }
1697    
1698            /**
1699             * Returns the document library file version remote service.
1700             *
1701             * @return the document library file version remote service
1702             */
1703            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
1704                    return dlFileVersionService;
1705            }
1706    
1707            /**
1708             * Sets the document library file version remote service.
1709             *
1710             * @param dlFileVersionService the document library file version remote service
1711             */
1712            public void setDLFileVersionService(
1713                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
1714                    this.dlFileVersionService = dlFileVersionService;
1715            }
1716    
1717            /**
1718             * Returns the document library file version persistence.
1719             *
1720             * @return the document library file version persistence
1721             */
1722            public DLFileVersionPersistence getDLFileVersionPersistence() {
1723                    return dlFileVersionPersistence;
1724            }
1725    
1726            /**
1727             * Sets the document library file version persistence.
1728             *
1729             * @param dlFileVersionPersistence the document library file version persistence
1730             */
1731            public void setDLFileVersionPersistence(
1732                    DLFileVersionPersistence dlFileVersionPersistence) {
1733                    this.dlFileVersionPersistence = dlFileVersionPersistence;
1734            }
1735    
1736            /**
1737             * Returns the document library folder local service.
1738             *
1739             * @return the document library folder local service
1740             */
1741            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
1742                    return dlFolderLocalService;
1743            }
1744    
1745            /**
1746             * Sets the document library folder local service.
1747             *
1748             * @param dlFolderLocalService the document library folder local service
1749             */
1750            public void setDLFolderLocalService(
1751                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
1752                    this.dlFolderLocalService = dlFolderLocalService;
1753            }
1754    
1755            /**
1756             * Returns the document library folder remote service.
1757             *
1758             * @return the document library folder remote service
1759             */
1760            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
1761                    return dlFolderService;
1762            }
1763    
1764            /**
1765             * Sets the document library folder remote service.
1766             *
1767             * @param dlFolderService the document library folder remote service
1768             */
1769            public void setDLFolderService(
1770                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
1771                    this.dlFolderService = dlFolderService;
1772            }
1773    
1774            /**
1775             * Returns the document library folder persistence.
1776             *
1777             * @return the document library folder persistence
1778             */
1779            public DLFolderPersistence getDLFolderPersistence() {
1780                    return dlFolderPersistence;
1781            }
1782    
1783            /**
1784             * Sets the document library folder persistence.
1785             *
1786             * @param dlFolderPersistence the document library folder persistence
1787             */
1788            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
1789                    this.dlFolderPersistence = dlFolderPersistence;
1790            }
1791    
1792            /**
1793             * Returns the document library folder finder.
1794             *
1795             * @return the document library folder finder
1796             */
1797            public DLFolderFinder getDLFolderFinder() {
1798                    return dlFolderFinder;
1799            }
1800    
1801            /**
1802             * Sets the document library folder finder.
1803             *
1804             * @param dlFolderFinder the document library folder finder
1805             */
1806            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
1807                    this.dlFolderFinder = dlFolderFinder;
1808            }
1809    
1810            /**
1811             * Returns the d l sync event local service.
1812             *
1813             * @return the d l sync event local service
1814             */
1815            public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
1816                    return dlSyncEventLocalService;
1817            }
1818    
1819            /**
1820             * Sets the d l sync event local service.
1821             *
1822             * @param dlSyncEventLocalService the d l sync event local service
1823             */
1824            public void setDLSyncEventLocalService(
1825                    com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
1826                    this.dlSyncEventLocalService = dlSyncEventLocalService;
1827            }
1828    
1829            /**
1830             * Returns the d l sync event persistence.
1831             *
1832             * @return the d l sync event persistence
1833             */
1834            public DLSyncEventPersistence getDLSyncEventPersistence() {
1835                    return dlSyncEventPersistence;
1836            }
1837    
1838            /**
1839             * Sets the d l sync event persistence.
1840             *
1841             * @param dlSyncEventPersistence the d l sync event persistence
1842             */
1843            public void setDLSyncEventPersistence(
1844                    DLSyncEventPersistence dlSyncEventPersistence) {
1845                    this.dlSyncEventPersistence = dlSyncEventPersistence;
1846            }
1847    
1848            public void afterPropertiesSet() {
1849            }
1850    
1851            public void destroy() {
1852            }
1853    
1854            /**
1855             * Returns the Spring bean ID for this bean.
1856             *
1857             * @return the Spring bean ID for this bean
1858             */
1859            @Override
1860            public String getBeanIdentifier() {
1861                    return _beanIdentifier;
1862            }
1863    
1864            /**
1865             * Sets the Spring bean ID for this bean.
1866             *
1867             * @param beanIdentifier the Spring bean ID for this bean
1868             */
1869            @Override
1870            public void setBeanIdentifier(String beanIdentifier) {
1871                    _beanIdentifier = beanIdentifier;
1872            }
1873    
1874            /**
1875             * Performs a SQL query.
1876             *
1877             * @param sql the sql query
1878             */
1879            protected void runSQL(String sql) {
1880                    try {
1881                            DataSource dataSource = InfrastructureUtil.getDataSource();
1882    
1883                            DB db = DBFactoryUtil.getDB();
1884    
1885                            sql = db.buildSQL(sql);
1886                            sql = PortalUtil.transformSQL(sql);
1887    
1888                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1889                                            sql, new int[0]);
1890    
1891                            sqlUpdate.update();
1892                    }
1893                    catch (Exception e) {
1894                            throw new SystemException(e);
1895                    }
1896            }
1897    
1898            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1899            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1900            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1901            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1902            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1903            protected com.liferay.portal.service.GroupLocalService groupLocalService;
1904            @BeanReference(type = com.liferay.portal.service.GroupService.class)
1905            protected com.liferay.portal.service.GroupService groupService;
1906            @BeanReference(type = GroupPersistence.class)
1907            protected GroupPersistence groupPersistence;
1908            @BeanReference(type = GroupFinder.class)
1909            protected GroupFinder groupFinder;
1910            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1911            protected com.liferay.portal.service.ImageLocalService imageLocalService;
1912            @BeanReference(type = com.liferay.portal.service.ImageService.class)
1913            protected com.liferay.portal.service.ImageService imageService;
1914            @BeanReference(type = ImagePersistence.class)
1915            protected ImagePersistence imagePersistence;
1916            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
1917            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
1918            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
1919            protected com.liferay.portal.service.LayoutService layoutService;
1920            @BeanReference(type = LayoutPersistence.class)
1921            protected LayoutPersistence layoutPersistence;
1922            @BeanReference(type = LayoutFinder.class)
1923            protected LayoutFinder layoutFinder;
1924            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
1925            protected com.liferay.portal.service.LockLocalService lockLocalService;
1926            @BeanReference(type = LockPersistence.class)
1927            protected LockPersistence lockPersistence;
1928            @BeanReference(type = LockFinder.class)
1929            protected LockFinder lockFinder;
1930            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1931            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1932            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1933            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1934            @BeanReference(type = PortletPreferencesPersistence.class)
1935            protected PortletPreferencesPersistence portletPreferencesPersistence;
1936            @BeanReference(type = PortletPreferencesFinder.class)
1937            protected PortletPreferencesFinder portletPreferencesFinder;
1938            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
1939            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
1940            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
1941            protected com.liferay.portal.service.RepositoryService repositoryService;
1942            @BeanReference(type = RepositoryPersistence.class)
1943            protected RepositoryPersistence repositoryPersistence;
1944            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1945            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1946            @BeanReference(type = SubscriptionPersistence.class)
1947            protected SubscriptionPersistence subscriptionPersistence;
1948            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
1949            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
1950            @BeanReference(type = WebDAVPropsPersistence.class)
1951            protected WebDAVPropsPersistence webDAVPropsPersistence;
1952            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1953            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1954            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1955            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1956            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
1957            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
1958            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
1959            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
1960            @BeanReference(type = AssetCategoryPersistence.class)
1961            protected AssetCategoryPersistence assetCategoryPersistence;
1962            @BeanReference(type = AssetCategoryFinder.class)
1963            protected AssetCategoryFinder assetCategoryFinder;
1964            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1965            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1966            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1967            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1968            @BeanReference(type = AssetEntryPersistence.class)
1969            protected AssetEntryPersistence assetEntryPersistence;
1970            @BeanReference(type = AssetEntryFinder.class)
1971            protected AssetEntryFinder assetEntryFinder;
1972            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1973            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1974            @BeanReference(type = AssetLinkPersistence.class)
1975            protected AssetLinkPersistence assetLinkPersistence;
1976            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1977            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1978            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1979            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1980            @BeanReference(type = AssetTagPersistence.class)
1981            protected AssetTagPersistence assetTagPersistence;
1982            @BeanReference(type = AssetTagFinder.class)
1983            protected AssetTagFinder assetTagFinder;
1984            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1985            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1986            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1987            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1988            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueLocalService.class)
1989            protected com.liferay.portlet.expando.service.ExpandoValueLocalService expandoValueLocalService;
1990            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoValueService.class)
1991            protected com.liferay.portlet.expando.service.ExpandoValueService expandoValueService;
1992            @BeanReference(type = ExpandoValuePersistence.class)
1993            protected ExpandoValuePersistence expandoValuePersistence;
1994            @BeanReference(type = com.liferay.portlet.messageboards.service.MBDiscussionLocalService.class)
1995            protected com.liferay.portlet.messageboards.service.MBDiscussionLocalService mbDiscussionLocalService;
1996            @BeanReference(type = MBDiscussionPersistence.class)
1997            protected MBDiscussionPersistence mbDiscussionPersistence;
1998            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1999            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
2000            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
2001            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
2002            @BeanReference(type = MBMessagePersistence.class)
2003            protected MBMessagePersistence mbMessagePersistence;
2004            @BeanReference(type = MBMessageFinder.class)
2005            protected MBMessageFinder mbMessageFinder;
2006            @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryLocalService.class)
2007            protected com.liferay.portlet.ratings.service.RatingsEntryLocalService ratingsEntryLocalService;
2008            @BeanReference(type = com.liferay.portlet.ratings.service.RatingsEntryService.class)
2009            protected com.liferay.portlet.ratings.service.RatingsEntryService ratingsEntryService;
2010            @BeanReference(type = RatingsEntryPersistence.class)
2011            protected RatingsEntryPersistence ratingsEntryPersistence;
2012            @BeanReference(type = RatingsEntryFinder.class)
2013            protected RatingsEntryFinder ratingsEntryFinder;
2014            @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
2015            protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
2016            @BeanReference(type = RatingsStatsPersistence.class)
2017            protected RatingsStatsPersistence ratingsStatsPersistence;
2018            @BeanReference(type = RatingsStatsFinder.class)
2019            protected RatingsStatsFinder ratingsStatsFinder;
2020            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
2021            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
2022            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
2023            protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
2024            @BeanReference(type = SocialActivityPersistence.class)
2025            protected SocialActivityPersistence socialActivityPersistence;
2026            @BeanReference(type = SocialActivityFinder.class)
2027            protected SocialActivityFinder socialActivityFinder;
2028            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
2029            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
2030            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
2031            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
2032            @BeanReference(type = TrashEntryPersistence.class)
2033            protected TrashEntryPersistence trashEntryPersistence;
2034            @BeanReference(type = com.liferay.portlet.trash.service.TrashVersionLocalService.class)
2035            protected com.liferay.portlet.trash.service.TrashVersionLocalService trashVersionLocalService;
2036            @BeanReference(type = TrashVersionPersistence.class)
2037            protected TrashVersionPersistence trashVersionPersistence;
2038            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
2039            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
2040            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
2041            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
2042            @BeanReference(type = DLFileEntryPersistence.class)
2043            protected DLFileEntryPersistence dlFileEntryPersistence;
2044            @BeanReference(type = DLFileEntryFinder.class)
2045            protected DLFileEntryFinder dlFileEntryFinder;
2046            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
2047            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
2048            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
2049            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
2050            @BeanReference(type = DLFileEntryTypePersistence.class)
2051            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
2052            @BeanReference(type = DLFileEntryTypeFinder.class)
2053            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
2054            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
2055            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
2056            @BeanReference(type = DLFileRankPersistence.class)
2057            protected DLFileRankPersistence dlFileRankPersistence;
2058            @BeanReference(type = DLFileRankFinder.class)
2059            protected DLFileRankFinder dlFileRankFinder;
2060            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
2061            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
2062            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
2063            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
2064            @BeanReference(type = DLFileShortcutPersistence.class)
2065            protected DLFileShortcutPersistence dlFileShortcutPersistence;
2066            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
2067            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
2068            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
2069            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
2070            @BeanReference(type = DLFileVersionPersistence.class)
2071            protected DLFileVersionPersistence dlFileVersionPersistence;
2072            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
2073            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
2074            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
2075            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
2076            @BeanReference(type = DLFolderPersistence.class)
2077            protected DLFolderPersistence dlFolderPersistence;
2078            @BeanReference(type = DLFolderFinder.class)
2079            protected DLFolderFinder dlFolderFinder;
2080            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
2081            protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
2082            @BeanReference(type = DLSyncEventPersistence.class)
2083            protected DLSyncEventPersistence dlSyncEventPersistence;
2084            private String _beanIdentifier;
2085    }