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