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