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