001    /**
002     * Copyright (c) 2000-2013 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.asset.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.exception.SystemException;
024    import com.liferay.portal.service.BaseServiceImpl;
025    import com.liferay.portal.service.CompanyLocalService;
026    import com.liferay.portal.service.CompanyService;
027    import com.liferay.portal.service.GroupLocalService;
028    import com.liferay.portal.service.GroupService;
029    import com.liferay.portal.service.ResourceLocalService;
030    import com.liferay.portal.service.ResourceService;
031    import com.liferay.portal.service.UserLocalService;
032    import com.liferay.portal.service.UserService;
033    import com.liferay.portal.service.persistence.CompanyPersistence;
034    import com.liferay.portal.service.persistence.GroupFinder;
035    import com.liferay.portal.service.persistence.GroupPersistence;
036    import com.liferay.portal.service.persistence.ResourceFinder;
037    import com.liferay.portal.service.persistence.ResourcePersistence;
038    import com.liferay.portal.service.persistence.UserFinder;
039    import com.liferay.portal.service.persistence.UserPersistence;
040    
041    import com.liferay.portlet.asset.model.AssetEntry;
042    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
043    import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
044    import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
045    import com.liferay.portlet.asset.service.AssetCategoryService;
046    import com.liferay.portlet.asset.service.AssetEntryLocalService;
047    import com.liferay.portlet.asset.service.AssetEntryService;
048    import com.liferay.portlet.asset.service.AssetLinkLocalService;
049    import com.liferay.portlet.asset.service.AssetTagLocalService;
050    import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
051    import com.liferay.portlet.asset.service.AssetTagPropertyService;
052    import com.liferay.portlet.asset.service.AssetTagService;
053    import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
054    import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
055    import com.liferay.portlet.asset.service.AssetVocabularyService;
056    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
057    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
058    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
059    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
060    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
061    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
062    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
063    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
064    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
065    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
066    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
067    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
068    import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
069    import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
070    import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
071    import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
072    import com.liferay.portlet.blogs.service.BlogsEntryService;
073    import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
074    import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
075    import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
076    import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
077    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
078    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
079    import com.liferay.portlet.documentlibrary.service.DLAppLocalService;
080    import com.liferay.portlet.documentlibrary.service.DLAppService;
081    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
082    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
083    import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
084    import com.liferay.portlet.documentlibrary.service.DLFolderService;
085    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
086    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
087    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
088    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
089    import com.liferay.portlet.journal.service.JournalArticleLocalService;
090    import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
091    import com.liferay.portlet.journal.service.JournalArticleService;
092    import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
093    import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
094    import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
095    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
096    import com.liferay.portlet.messageboards.service.MBMessageService;
097    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
098    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
099    import com.liferay.portlet.social.service.SocialActivityLocalService;
100    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
101    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
102    import com.liferay.portlet.wiki.service.WikiPageLocalService;
103    import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
104    import com.liferay.portlet.wiki.service.WikiPageService;
105    import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
106    import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
107    import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
108    
109    import javax.sql.DataSource;
110    
111    /**
112     * The base implementation of the asset entry remote service.
113     *
114     * <p>
115     * 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.asset.service.impl.AssetEntryServiceImpl}.
116     * </p>
117     *
118     * @author Brian Wing Shun Chan
119     * @see com.liferay.portlet.asset.service.impl.AssetEntryServiceImpl
120     * @see com.liferay.portlet.asset.service.AssetEntryServiceUtil
121     * @generated
122     */
123    public abstract class AssetEntryServiceBaseImpl extends BaseServiceImpl
124            implements AssetEntryService, IdentifiableBean {
125            /*
126             * NOTE FOR DEVELOPERS:
127             *
128             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.asset.service.AssetEntryServiceUtil} to access the asset entry remote service.
129             */
130    
131            /**
132             * Returns the asset category local service.
133             *
134             * @return the asset category local service
135             */
136            public AssetCategoryLocalService getAssetCategoryLocalService() {
137                    return assetCategoryLocalService;
138            }
139    
140            /**
141             * Sets the asset category local service.
142             *
143             * @param assetCategoryLocalService the asset category local service
144             */
145            public void setAssetCategoryLocalService(
146                    AssetCategoryLocalService assetCategoryLocalService) {
147                    this.assetCategoryLocalService = assetCategoryLocalService;
148            }
149    
150            /**
151             * Returns the asset category remote service.
152             *
153             * @return the asset category remote service
154             */
155            public AssetCategoryService getAssetCategoryService() {
156                    return assetCategoryService;
157            }
158    
159            /**
160             * Sets the asset category remote service.
161             *
162             * @param assetCategoryService the asset category remote service
163             */
164            public void setAssetCategoryService(
165                    AssetCategoryService assetCategoryService) {
166                    this.assetCategoryService = assetCategoryService;
167            }
168    
169            /**
170             * Returns the asset category persistence.
171             *
172             * @return the asset category persistence
173             */
174            public AssetCategoryPersistence getAssetCategoryPersistence() {
175                    return assetCategoryPersistence;
176            }
177    
178            /**
179             * Sets the asset category persistence.
180             *
181             * @param assetCategoryPersistence the asset category persistence
182             */
183            public void setAssetCategoryPersistence(
184                    AssetCategoryPersistence assetCategoryPersistence) {
185                    this.assetCategoryPersistence = assetCategoryPersistence;
186            }
187    
188            /**
189             * Returns the asset category finder.
190             *
191             * @return the asset category finder
192             */
193            public AssetCategoryFinder getAssetCategoryFinder() {
194                    return assetCategoryFinder;
195            }
196    
197            /**
198             * Sets the asset category finder.
199             *
200             * @param assetCategoryFinder the asset category finder
201             */
202            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
203                    this.assetCategoryFinder = assetCategoryFinder;
204            }
205    
206            /**
207             * Returns the asset category property local service.
208             *
209             * @return the asset category property local service
210             */
211            public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
212                    return assetCategoryPropertyLocalService;
213            }
214    
215            /**
216             * Sets the asset category property local service.
217             *
218             * @param assetCategoryPropertyLocalService the asset category property local service
219             */
220            public void setAssetCategoryPropertyLocalService(
221                    AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
222                    this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
223            }
224    
225            /**
226             * Returns the asset category property remote service.
227             *
228             * @return the asset category property remote service
229             */
230            public AssetCategoryPropertyService getAssetCategoryPropertyService() {
231                    return assetCategoryPropertyService;
232            }
233    
234            /**
235             * Sets the asset category property remote service.
236             *
237             * @param assetCategoryPropertyService the asset category property remote service
238             */
239            public void setAssetCategoryPropertyService(
240                    AssetCategoryPropertyService assetCategoryPropertyService) {
241                    this.assetCategoryPropertyService = assetCategoryPropertyService;
242            }
243    
244            /**
245             * Returns the asset category property persistence.
246             *
247             * @return the asset category property persistence
248             */
249            public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
250                    return assetCategoryPropertyPersistence;
251            }
252    
253            /**
254             * Sets the asset category property persistence.
255             *
256             * @param assetCategoryPropertyPersistence the asset category property persistence
257             */
258            public void setAssetCategoryPropertyPersistence(
259                    AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
260                    this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
261            }
262    
263            /**
264             * Returns the asset category property finder.
265             *
266             * @return the asset category property finder
267             */
268            public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
269                    return assetCategoryPropertyFinder;
270            }
271    
272            /**
273             * Sets the asset category property finder.
274             *
275             * @param assetCategoryPropertyFinder the asset category property finder
276             */
277            public void setAssetCategoryPropertyFinder(
278                    AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
279                    this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
280            }
281    
282            /**
283             * Returns the asset entry local service.
284             *
285             * @return the asset entry local service
286             */
287            public AssetEntryLocalService getAssetEntryLocalService() {
288                    return assetEntryLocalService;
289            }
290    
291            /**
292             * Sets the asset entry local service.
293             *
294             * @param assetEntryLocalService the asset entry local service
295             */
296            public void setAssetEntryLocalService(
297                    AssetEntryLocalService assetEntryLocalService) {
298                    this.assetEntryLocalService = assetEntryLocalService;
299            }
300    
301            /**
302             * Returns the asset entry remote service.
303             *
304             * @return the asset entry remote service
305             */
306            public AssetEntryService getAssetEntryService() {
307                    return assetEntryService;
308            }
309    
310            /**
311             * Sets the asset entry remote service.
312             *
313             * @param assetEntryService the asset entry remote service
314             */
315            public void setAssetEntryService(AssetEntryService assetEntryService) {
316                    this.assetEntryService = assetEntryService;
317            }
318    
319            /**
320             * Returns the asset entry persistence.
321             *
322             * @return the asset entry persistence
323             */
324            public AssetEntryPersistence getAssetEntryPersistence() {
325                    return assetEntryPersistence;
326            }
327    
328            /**
329             * Sets the asset entry persistence.
330             *
331             * @param assetEntryPersistence the asset entry persistence
332             */
333            public void setAssetEntryPersistence(
334                    AssetEntryPersistence assetEntryPersistence) {
335                    this.assetEntryPersistence = assetEntryPersistence;
336            }
337    
338            /**
339             * Returns the asset entry finder.
340             *
341             * @return the asset entry finder
342             */
343            public AssetEntryFinder getAssetEntryFinder() {
344                    return assetEntryFinder;
345            }
346    
347            /**
348             * Sets the asset entry finder.
349             *
350             * @param assetEntryFinder the asset entry finder
351             */
352            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
353                    this.assetEntryFinder = assetEntryFinder;
354            }
355    
356            /**
357             * Returns the asset link local service.
358             *
359             * @return the asset link local service
360             */
361            public AssetLinkLocalService getAssetLinkLocalService() {
362                    return assetLinkLocalService;
363            }
364    
365            /**
366             * Sets the asset link local service.
367             *
368             * @param assetLinkLocalService the asset link local service
369             */
370            public void setAssetLinkLocalService(
371                    AssetLinkLocalService assetLinkLocalService) {
372                    this.assetLinkLocalService = assetLinkLocalService;
373            }
374    
375            /**
376             * Returns the asset link persistence.
377             *
378             * @return the asset link persistence
379             */
380            public AssetLinkPersistence getAssetLinkPersistence() {
381                    return assetLinkPersistence;
382            }
383    
384            /**
385             * Sets the asset link persistence.
386             *
387             * @param assetLinkPersistence the asset link persistence
388             */
389            public void setAssetLinkPersistence(
390                    AssetLinkPersistence assetLinkPersistence) {
391                    this.assetLinkPersistence = assetLinkPersistence;
392            }
393    
394            /**
395             * Returns the asset tag local service.
396             *
397             * @return the asset tag local service
398             */
399            public AssetTagLocalService getAssetTagLocalService() {
400                    return assetTagLocalService;
401            }
402    
403            /**
404             * Sets the asset tag local service.
405             *
406             * @param assetTagLocalService the asset tag local service
407             */
408            public void setAssetTagLocalService(
409                    AssetTagLocalService assetTagLocalService) {
410                    this.assetTagLocalService = assetTagLocalService;
411            }
412    
413            /**
414             * Returns the asset tag remote service.
415             *
416             * @return the asset tag remote service
417             */
418            public AssetTagService getAssetTagService() {
419                    return assetTagService;
420            }
421    
422            /**
423             * Sets the asset tag remote service.
424             *
425             * @param assetTagService the asset tag remote service
426             */
427            public void setAssetTagService(AssetTagService assetTagService) {
428                    this.assetTagService = assetTagService;
429            }
430    
431            /**
432             * Returns the asset tag persistence.
433             *
434             * @return the asset tag persistence
435             */
436            public AssetTagPersistence getAssetTagPersistence() {
437                    return assetTagPersistence;
438            }
439    
440            /**
441             * Sets the asset tag persistence.
442             *
443             * @param assetTagPersistence the asset tag persistence
444             */
445            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
446                    this.assetTagPersistence = assetTagPersistence;
447            }
448    
449            /**
450             * Returns the asset tag finder.
451             *
452             * @return the asset tag finder
453             */
454            public AssetTagFinder getAssetTagFinder() {
455                    return assetTagFinder;
456            }
457    
458            /**
459             * Sets the asset tag finder.
460             *
461             * @param assetTagFinder the asset tag finder
462             */
463            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
464                    this.assetTagFinder = assetTagFinder;
465            }
466    
467            /**
468             * Returns the asset tag property local service.
469             *
470             * @return the asset tag property local service
471             */
472            public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
473                    return assetTagPropertyLocalService;
474            }
475    
476            /**
477             * Sets the asset tag property local service.
478             *
479             * @param assetTagPropertyLocalService the asset tag property local service
480             */
481            public void setAssetTagPropertyLocalService(
482                    AssetTagPropertyLocalService assetTagPropertyLocalService) {
483                    this.assetTagPropertyLocalService = assetTagPropertyLocalService;
484            }
485    
486            /**
487             * Returns the asset tag property remote service.
488             *
489             * @return the asset tag property remote service
490             */
491            public AssetTagPropertyService getAssetTagPropertyService() {
492                    return assetTagPropertyService;
493            }
494    
495            /**
496             * Sets the asset tag property remote service.
497             *
498             * @param assetTagPropertyService the asset tag property remote service
499             */
500            public void setAssetTagPropertyService(
501                    AssetTagPropertyService assetTagPropertyService) {
502                    this.assetTagPropertyService = assetTagPropertyService;
503            }
504    
505            /**
506             * Returns the asset tag property persistence.
507             *
508             * @return the asset tag property persistence
509             */
510            public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
511                    return assetTagPropertyPersistence;
512            }
513    
514            /**
515             * Sets the asset tag property persistence.
516             *
517             * @param assetTagPropertyPersistence the asset tag property persistence
518             */
519            public void setAssetTagPropertyPersistence(
520                    AssetTagPropertyPersistence assetTagPropertyPersistence) {
521                    this.assetTagPropertyPersistence = assetTagPropertyPersistence;
522            }
523    
524            /**
525             * Returns the asset tag property finder.
526             *
527             * @return the asset tag property finder
528             */
529            public AssetTagPropertyFinder getAssetTagPropertyFinder() {
530                    return assetTagPropertyFinder;
531            }
532    
533            /**
534             * Sets the asset tag property finder.
535             *
536             * @param assetTagPropertyFinder the asset tag property finder
537             */
538            public void setAssetTagPropertyFinder(
539                    AssetTagPropertyFinder assetTagPropertyFinder) {
540                    this.assetTagPropertyFinder = assetTagPropertyFinder;
541            }
542    
543            /**
544             * Returns the asset tag property key finder.
545             *
546             * @return the asset tag property key finder
547             */
548            public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
549                    return assetTagPropertyKeyFinder;
550            }
551    
552            /**
553             * Sets the asset tag property key finder.
554             *
555             * @param assetTagPropertyKeyFinder the asset tag property key finder
556             */
557            public void setAssetTagPropertyKeyFinder(
558                    AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
559                    this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
560            }
561    
562            /**
563             * Returns the asset tag stats local service.
564             *
565             * @return the asset tag stats local service
566             */
567            public AssetTagStatsLocalService getAssetTagStatsLocalService() {
568                    return assetTagStatsLocalService;
569            }
570    
571            /**
572             * Sets the asset tag stats local service.
573             *
574             * @param assetTagStatsLocalService the asset tag stats local service
575             */
576            public void setAssetTagStatsLocalService(
577                    AssetTagStatsLocalService assetTagStatsLocalService) {
578                    this.assetTagStatsLocalService = assetTagStatsLocalService;
579            }
580    
581            /**
582             * Returns the asset tag stats persistence.
583             *
584             * @return the asset tag stats persistence
585             */
586            public AssetTagStatsPersistence getAssetTagStatsPersistence() {
587                    return assetTagStatsPersistence;
588            }
589    
590            /**
591             * Sets the asset tag stats persistence.
592             *
593             * @param assetTagStatsPersistence the asset tag stats persistence
594             */
595            public void setAssetTagStatsPersistence(
596                    AssetTagStatsPersistence assetTagStatsPersistence) {
597                    this.assetTagStatsPersistence = assetTagStatsPersistence;
598            }
599    
600            /**
601             * Returns the asset vocabulary local service.
602             *
603             * @return the asset vocabulary local service
604             */
605            public AssetVocabularyLocalService getAssetVocabularyLocalService() {
606                    return assetVocabularyLocalService;
607            }
608    
609            /**
610             * Sets the asset vocabulary local service.
611             *
612             * @param assetVocabularyLocalService the asset vocabulary local service
613             */
614            public void setAssetVocabularyLocalService(
615                    AssetVocabularyLocalService assetVocabularyLocalService) {
616                    this.assetVocabularyLocalService = assetVocabularyLocalService;
617            }
618    
619            /**
620             * Returns the asset vocabulary remote service.
621             *
622             * @return the asset vocabulary remote service
623             */
624            public AssetVocabularyService getAssetVocabularyService() {
625                    return assetVocabularyService;
626            }
627    
628            /**
629             * Sets the asset vocabulary remote service.
630             *
631             * @param assetVocabularyService the asset vocabulary remote service
632             */
633            public void setAssetVocabularyService(
634                    AssetVocabularyService assetVocabularyService) {
635                    this.assetVocabularyService = assetVocabularyService;
636            }
637    
638            /**
639             * Returns the asset vocabulary persistence.
640             *
641             * @return the asset vocabulary persistence
642             */
643            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
644                    return assetVocabularyPersistence;
645            }
646    
647            /**
648             * Sets the asset vocabulary persistence.
649             *
650             * @param assetVocabularyPersistence the asset vocabulary persistence
651             */
652            public void setAssetVocabularyPersistence(
653                    AssetVocabularyPersistence assetVocabularyPersistence) {
654                    this.assetVocabularyPersistence = assetVocabularyPersistence;
655            }
656    
657            /**
658             * Returns the asset vocabulary finder.
659             *
660             * @return the asset vocabulary finder
661             */
662            public AssetVocabularyFinder getAssetVocabularyFinder() {
663                    return assetVocabularyFinder;
664            }
665    
666            /**
667             * Sets the asset vocabulary finder.
668             *
669             * @param assetVocabularyFinder the asset vocabulary finder
670             */
671            public void setAssetVocabularyFinder(
672                    AssetVocabularyFinder assetVocabularyFinder) {
673                    this.assetVocabularyFinder = assetVocabularyFinder;
674            }
675    
676            /**
677             * Returns the counter local service.
678             *
679             * @return the counter local service
680             */
681            public CounterLocalService getCounterLocalService() {
682                    return counterLocalService;
683            }
684    
685            /**
686             * Sets the counter local service.
687             *
688             * @param counterLocalService the counter local service
689             */
690            public void setCounterLocalService(CounterLocalService counterLocalService) {
691                    this.counterLocalService = counterLocalService;
692            }
693    
694            /**
695             * Returns the company local service.
696             *
697             * @return the company local service
698             */
699            public CompanyLocalService getCompanyLocalService() {
700                    return companyLocalService;
701            }
702    
703            /**
704             * Sets the company local service.
705             *
706             * @param companyLocalService the company local service
707             */
708            public void setCompanyLocalService(CompanyLocalService companyLocalService) {
709                    this.companyLocalService = companyLocalService;
710            }
711    
712            /**
713             * Returns the company remote service.
714             *
715             * @return the company remote service
716             */
717            public CompanyService getCompanyService() {
718                    return companyService;
719            }
720    
721            /**
722             * Sets the company remote service.
723             *
724             * @param companyService the company remote service
725             */
726            public void setCompanyService(CompanyService companyService) {
727                    this.companyService = companyService;
728            }
729    
730            /**
731             * Returns the company persistence.
732             *
733             * @return the company persistence
734             */
735            public CompanyPersistence getCompanyPersistence() {
736                    return companyPersistence;
737            }
738    
739            /**
740             * Sets the company persistence.
741             *
742             * @param companyPersistence the company persistence
743             */
744            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
745                    this.companyPersistence = companyPersistence;
746            }
747    
748            /**
749             * Returns the group local service.
750             *
751             * @return the group local service
752             */
753            public GroupLocalService getGroupLocalService() {
754                    return groupLocalService;
755            }
756    
757            /**
758             * Sets the group local service.
759             *
760             * @param groupLocalService the group local service
761             */
762            public void setGroupLocalService(GroupLocalService groupLocalService) {
763                    this.groupLocalService = groupLocalService;
764            }
765    
766            /**
767             * Returns the group remote service.
768             *
769             * @return the group remote service
770             */
771            public GroupService getGroupService() {
772                    return groupService;
773            }
774    
775            /**
776             * Sets the group remote service.
777             *
778             * @param groupService the group remote service
779             */
780            public void setGroupService(GroupService groupService) {
781                    this.groupService = groupService;
782            }
783    
784            /**
785             * Returns the group persistence.
786             *
787             * @return the group persistence
788             */
789            public GroupPersistence getGroupPersistence() {
790                    return groupPersistence;
791            }
792    
793            /**
794             * Sets the group persistence.
795             *
796             * @param groupPersistence the group persistence
797             */
798            public void setGroupPersistence(GroupPersistence groupPersistence) {
799                    this.groupPersistence = groupPersistence;
800            }
801    
802            /**
803             * Returns the group finder.
804             *
805             * @return the group finder
806             */
807            public GroupFinder getGroupFinder() {
808                    return groupFinder;
809            }
810    
811            /**
812             * Sets the group finder.
813             *
814             * @param groupFinder the group finder
815             */
816            public void setGroupFinder(GroupFinder groupFinder) {
817                    this.groupFinder = groupFinder;
818            }
819    
820            /**
821             * Returns the resource local service.
822             *
823             * @return the resource local service
824             */
825            public ResourceLocalService getResourceLocalService() {
826                    return resourceLocalService;
827            }
828    
829            /**
830             * Sets the resource local service.
831             *
832             * @param resourceLocalService the resource local service
833             */
834            public void setResourceLocalService(
835                    ResourceLocalService resourceLocalService) {
836                    this.resourceLocalService = resourceLocalService;
837            }
838    
839            /**
840             * Returns the resource remote service.
841             *
842             * @return the resource remote service
843             */
844            public ResourceService getResourceService() {
845                    return resourceService;
846            }
847    
848            /**
849             * Sets the resource remote service.
850             *
851             * @param resourceService the resource remote service
852             */
853            public void setResourceService(ResourceService resourceService) {
854                    this.resourceService = resourceService;
855            }
856    
857            /**
858             * Returns the resource persistence.
859             *
860             * @return the resource persistence
861             */
862            public ResourcePersistence getResourcePersistence() {
863                    return resourcePersistence;
864            }
865    
866            /**
867             * Sets the resource persistence.
868             *
869             * @param resourcePersistence the resource persistence
870             */
871            public void setResourcePersistence(ResourcePersistence resourcePersistence) {
872                    this.resourcePersistence = resourcePersistence;
873            }
874    
875            /**
876             * Returns the resource finder.
877             *
878             * @return the resource finder
879             */
880            public ResourceFinder getResourceFinder() {
881                    return resourceFinder;
882            }
883    
884            /**
885             * Sets the resource finder.
886             *
887             * @param resourceFinder the resource finder
888             */
889            public void setResourceFinder(ResourceFinder resourceFinder) {
890                    this.resourceFinder = resourceFinder;
891            }
892    
893            /**
894             * Returns the user local service.
895             *
896             * @return the user local service
897             */
898            public UserLocalService getUserLocalService() {
899                    return userLocalService;
900            }
901    
902            /**
903             * Sets the user local service.
904             *
905             * @param userLocalService the user local service
906             */
907            public void setUserLocalService(UserLocalService userLocalService) {
908                    this.userLocalService = userLocalService;
909            }
910    
911            /**
912             * Returns the user remote service.
913             *
914             * @return the user remote service
915             */
916            public UserService getUserService() {
917                    return userService;
918            }
919    
920            /**
921             * Sets the user remote service.
922             *
923             * @param userService the user remote service
924             */
925            public void setUserService(UserService userService) {
926                    this.userService = userService;
927            }
928    
929            /**
930             * Returns the user persistence.
931             *
932             * @return the user persistence
933             */
934            public UserPersistence getUserPersistence() {
935                    return userPersistence;
936            }
937    
938            /**
939             * Sets the user persistence.
940             *
941             * @param userPersistence the user persistence
942             */
943            public void setUserPersistence(UserPersistence userPersistence) {
944                    this.userPersistence = userPersistence;
945            }
946    
947            /**
948             * Returns the user finder.
949             *
950             * @return the user finder
951             */
952            public UserFinder getUserFinder() {
953                    return userFinder;
954            }
955    
956            /**
957             * Sets the user finder.
958             *
959             * @param userFinder the user finder
960             */
961            public void setUserFinder(UserFinder userFinder) {
962                    this.userFinder = userFinder;
963            }
964    
965            /**
966             * Returns the blogs entry local service.
967             *
968             * @return the blogs entry local service
969             */
970            public BlogsEntryLocalService getBlogsEntryLocalService() {
971                    return blogsEntryLocalService;
972            }
973    
974            /**
975             * Sets the blogs entry local service.
976             *
977             * @param blogsEntryLocalService the blogs entry local service
978             */
979            public void setBlogsEntryLocalService(
980                    BlogsEntryLocalService blogsEntryLocalService) {
981                    this.blogsEntryLocalService = blogsEntryLocalService;
982            }
983    
984            /**
985             * Returns the blogs entry remote service.
986             *
987             * @return the blogs entry remote service
988             */
989            public BlogsEntryService getBlogsEntryService() {
990                    return blogsEntryService;
991            }
992    
993            /**
994             * Sets the blogs entry remote service.
995             *
996             * @param blogsEntryService the blogs entry remote service
997             */
998            public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
999                    this.blogsEntryService = blogsEntryService;
1000            }
1001    
1002            /**
1003             * Returns the blogs entry persistence.
1004             *
1005             * @return the blogs entry persistence
1006             */
1007            public BlogsEntryPersistence getBlogsEntryPersistence() {
1008                    return blogsEntryPersistence;
1009            }
1010    
1011            /**
1012             * Sets the blogs entry persistence.
1013             *
1014             * @param blogsEntryPersistence the blogs entry persistence
1015             */
1016            public void setBlogsEntryPersistence(
1017                    BlogsEntryPersistence blogsEntryPersistence) {
1018                    this.blogsEntryPersistence = blogsEntryPersistence;
1019            }
1020    
1021            /**
1022             * Returns the blogs entry finder.
1023             *
1024             * @return the blogs entry finder
1025             */
1026            public BlogsEntryFinder getBlogsEntryFinder() {
1027                    return blogsEntryFinder;
1028            }
1029    
1030            /**
1031             * Sets the blogs entry finder.
1032             *
1033             * @param blogsEntryFinder the blogs entry finder
1034             */
1035            public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
1036                    this.blogsEntryFinder = blogsEntryFinder;
1037            }
1038    
1039            /**
1040             * Returns the bookmarks entry local service.
1041             *
1042             * @return the bookmarks entry local service
1043             */
1044            public BookmarksEntryLocalService getBookmarksEntryLocalService() {
1045                    return bookmarksEntryLocalService;
1046            }
1047    
1048            /**
1049             * Sets the bookmarks entry local service.
1050             *
1051             * @param bookmarksEntryLocalService the bookmarks entry local service
1052             */
1053            public void setBookmarksEntryLocalService(
1054                    BookmarksEntryLocalService bookmarksEntryLocalService) {
1055                    this.bookmarksEntryLocalService = bookmarksEntryLocalService;
1056            }
1057    
1058            /**
1059             * Returns the bookmarks entry remote service.
1060             *
1061             * @return the bookmarks entry remote service
1062             */
1063            public BookmarksEntryService getBookmarksEntryService() {
1064                    return bookmarksEntryService;
1065            }
1066    
1067            /**
1068             * Sets the bookmarks entry remote service.
1069             *
1070             * @param bookmarksEntryService the bookmarks entry remote service
1071             */
1072            public void setBookmarksEntryService(
1073                    BookmarksEntryService bookmarksEntryService) {
1074                    this.bookmarksEntryService = bookmarksEntryService;
1075            }
1076    
1077            /**
1078             * Returns the bookmarks entry persistence.
1079             *
1080             * @return the bookmarks entry persistence
1081             */
1082            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
1083                    return bookmarksEntryPersistence;
1084            }
1085    
1086            /**
1087             * Sets the bookmarks entry persistence.
1088             *
1089             * @param bookmarksEntryPersistence the bookmarks entry persistence
1090             */
1091            public void setBookmarksEntryPersistence(
1092                    BookmarksEntryPersistence bookmarksEntryPersistence) {
1093                    this.bookmarksEntryPersistence = bookmarksEntryPersistence;
1094            }
1095    
1096            /**
1097             * Returns the bookmarks entry finder.
1098             *
1099             * @return the bookmarks entry finder
1100             */
1101            public BookmarksEntryFinder getBookmarksEntryFinder() {
1102                    return bookmarksEntryFinder;
1103            }
1104    
1105            /**
1106             * Sets the bookmarks entry finder.
1107             *
1108             * @param bookmarksEntryFinder the bookmarks entry finder
1109             */
1110            public void setBookmarksEntryFinder(
1111                    BookmarksEntryFinder bookmarksEntryFinder) {
1112                    this.bookmarksEntryFinder = bookmarksEntryFinder;
1113            }
1114    
1115            /**
1116             * Returns the d l app local service.
1117             *
1118             * @return the d l app local service
1119             */
1120            public DLAppLocalService getDLAppLocalService() {
1121                    return dlAppLocalService;
1122            }
1123    
1124            /**
1125             * Sets the d l app local service.
1126             *
1127             * @param dlAppLocalService the d l app local service
1128             */
1129            public void setDLAppLocalService(DLAppLocalService dlAppLocalService) {
1130                    this.dlAppLocalService = dlAppLocalService;
1131            }
1132    
1133            /**
1134             * Returns the d l app remote service.
1135             *
1136             * @return the d l app remote service
1137             */
1138            public DLAppService getDLAppService() {
1139                    return dlAppService;
1140            }
1141    
1142            /**
1143             * Sets the d l app remote service.
1144             *
1145             * @param dlAppService the d l app remote service
1146             */
1147            public void setDLAppService(DLAppService dlAppService) {
1148                    this.dlAppService = dlAppService;
1149            }
1150    
1151            /**
1152             * Returns the document library file entry local service.
1153             *
1154             * @return the document library file entry local service
1155             */
1156            public DLFileEntryLocalService getDLFileEntryLocalService() {
1157                    return dlFileEntryLocalService;
1158            }
1159    
1160            /**
1161             * Sets the document library file entry local service.
1162             *
1163             * @param dlFileEntryLocalService the document library file entry local service
1164             */
1165            public void setDLFileEntryLocalService(
1166                    DLFileEntryLocalService dlFileEntryLocalService) {
1167                    this.dlFileEntryLocalService = dlFileEntryLocalService;
1168            }
1169    
1170            /**
1171             * Returns the document library file entry remote service.
1172             *
1173             * @return the document library file entry remote service
1174             */
1175            public DLFileEntryService getDLFileEntryService() {
1176                    return dlFileEntryService;
1177            }
1178    
1179            /**
1180             * Sets the document library file entry remote service.
1181             *
1182             * @param dlFileEntryService the document library file entry remote service
1183             */
1184            public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
1185                    this.dlFileEntryService = dlFileEntryService;
1186            }
1187    
1188            /**
1189             * Returns the document library file entry persistence.
1190             *
1191             * @return the document library file entry persistence
1192             */
1193            public DLFileEntryPersistence getDLFileEntryPersistence() {
1194                    return dlFileEntryPersistence;
1195            }
1196    
1197            /**
1198             * Sets the document library file entry persistence.
1199             *
1200             * @param dlFileEntryPersistence the document library file entry persistence
1201             */
1202            public void setDLFileEntryPersistence(
1203                    DLFileEntryPersistence dlFileEntryPersistence) {
1204                    this.dlFileEntryPersistence = dlFileEntryPersistence;
1205            }
1206    
1207            /**
1208             * Returns the document library file entry finder.
1209             *
1210             * @return the document library file entry finder
1211             */
1212            public DLFileEntryFinder getDLFileEntryFinder() {
1213                    return dlFileEntryFinder;
1214            }
1215    
1216            /**
1217             * Sets the document library file entry finder.
1218             *
1219             * @param dlFileEntryFinder the document library file entry finder
1220             */
1221            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
1222                    this.dlFileEntryFinder = dlFileEntryFinder;
1223            }
1224    
1225            /**
1226             * Returns the document library folder local service.
1227             *
1228             * @return the document library folder local service
1229             */
1230            public DLFolderLocalService getDLFolderLocalService() {
1231                    return dlFolderLocalService;
1232            }
1233    
1234            /**
1235             * Sets the document library folder local service.
1236             *
1237             * @param dlFolderLocalService the document library folder local service
1238             */
1239            public void setDLFolderLocalService(
1240                    DLFolderLocalService dlFolderLocalService) {
1241                    this.dlFolderLocalService = dlFolderLocalService;
1242            }
1243    
1244            /**
1245             * Returns the document library folder remote service.
1246             *
1247             * @return the document library folder remote service
1248             */
1249            public DLFolderService getDLFolderService() {
1250                    return dlFolderService;
1251            }
1252    
1253            /**
1254             * Sets the document library folder remote service.
1255             *
1256             * @param dlFolderService the document library folder remote service
1257             */
1258            public void setDLFolderService(DLFolderService dlFolderService) {
1259                    this.dlFolderService = dlFolderService;
1260            }
1261    
1262            /**
1263             * Returns the document library folder persistence.
1264             *
1265             * @return the document library folder persistence
1266             */
1267            public DLFolderPersistence getDLFolderPersistence() {
1268                    return dlFolderPersistence;
1269            }
1270    
1271            /**
1272             * Sets the document library folder persistence.
1273             *
1274             * @param dlFolderPersistence the document library folder persistence
1275             */
1276            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
1277                    this.dlFolderPersistence = dlFolderPersistence;
1278            }
1279    
1280            /**
1281             * Returns the document library folder finder.
1282             *
1283             * @return the document library folder finder
1284             */
1285            public DLFolderFinder getDLFolderFinder() {
1286                    return dlFolderFinder;
1287            }
1288    
1289            /**
1290             * Sets the document library folder finder.
1291             *
1292             * @param dlFolderFinder the document library folder finder
1293             */
1294            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
1295                    this.dlFolderFinder = dlFolderFinder;
1296            }
1297    
1298            /**
1299             * Returns the journal article local service.
1300             *
1301             * @return the journal article local service
1302             */
1303            public JournalArticleLocalService getJournalArticleLocalService() {
1304                    return journalArticleLocalService;
1305            }
1306    
1307            /**
1308             * Sets the journal article local service.
1309             *
1310             * @param journalArticleLocalService the journal article local service
1311             */
1312            public void setJournalArticleLocalService(
1313                    JournalArticleLocalService journalArticleLocalService) {
1314                    this.journalArticleLocalService = journalArticleLocalService;
1315            }
1316    
1317            /**
1318             * Returns the journal article remote service.
1319             *
1320             * @return the journal article remote service
1321             */
1322            public JournalArticleService getJournalArticleService() {
1323                    return journalArticleService;
1324            }
1325    
1326            /**
1327             * Sets the journal article remote service.
1328             *
1329             * @param journalArticleService the journal article remote service
1330             */
1331            public void setJournalArticleService(
1332                    JournalArticleService journalArticleService) {
1333                    this.journalArticleService = journalArticleService;
1334            }
1335    
1336            /**
1337             * Returns the journal article persistence.
1338             *
1339             * @return the journal article persistence
1340             */
1341            public JournalArticlePersistence getJournalArticlePersistence() {
1342                    return journalArticlePersistence;
1343            }
1344    
1345            /**
1346             * Sets the journal article persistence.
1347             *
1348             * @param journalArticlePersistence the journal article persistence
1349             */
1350            public void setJournalArticlePersistence(
1351                    JournalArticlePersistence journalArticlePersistence) {
1352                    this.journalArticlePersistence = journalArticlePersistence;
1353            }
1354    
1355            /**
1356             * Returns the journal article finder.
1357             *
1358             * @return the journal article finder
1359             */
1360            public JournalArticleFinder getJournalArticleFinder() {
1361                    return journalArticleFinder;
1362            }
1363    
1364            /**
1365             * Sets the journal article finder.
1366             *
1367             * @param journalArticleFinder the journal article finder
1368             */
1369            public void setJournalArticleFinder(
1370                    JournalArticleFinder journalArticleFinder) {
1371                    this.journalArticleFinder = journalArticleFinder;
1372            }
1373    
1374            /**
1375             * Returns the journal article resource local service.
1376             *
1377             * @return the journal article resource local service
1378             */
1379            public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
1380                    return journalArticleResourceLocalService;
1381            }
1382    
1383            /**
1384             * Sets the journal article resource local service.
1385             *
1386             * @param journalArticleResourceLocalService the journal article resource local service
1387             */
1388            public void setJournalArticleResourceLocalService(
1389                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
1390                    this.journalArticleResourceLocalService = journalArticleResourceLocalService;
1391            }
1392    
1393            /**
1394             * Returns the journal article resource persistence.
1395             *
1396             * @return the journal article resource persistence
1397             */
1398            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
1399                    return journalArticleResourcePersistence;
1400            }
1401    
1402            /**
1403             * Sets the journal article resource persistence.
1404             *
1405             * @param journalArticleResourcePersistence the journal article resource persistence
1406             */
1407            public void setJournalArticleResourcePersistence(
1408                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
1409                    this.journalArticleResourcePersistence = journalArticleResourcePersistence;
1410            }
1411    
1412            /**
1413             * Returns the message-boards message local service.
1414             *
1415             * @return the message-boards message local service
1416             */
1417            public MBMessageLocalService getMBMessageLocalService() {
1418                    return mbMessageLocalService;
1419            }
1420    
1421            /**
1422             * Sets the message-boards message local service.
1423             *
1424             * @param mbMessageLocalService the message-boards message local service
1425             */
1426            public void setMBMessageLocalService(
1427                    MBMessageLocalService mbMessageLocalService) {
1428                    this.mbMessageLocalService = mbMessageLocalService;
1429            }
1430    
1431            /**
1432             * Returns the message-boards message remote service.
1433             *
1434             * @return the message-boards message remote service
1435             */
1436            public MBMessageService getMBMessageService() {
1437                    return mbMessageService;
1438            }
1439    
1440            /**
1441             * Sets the message-boards message remote service.
1442             *
1443             * @param mbMessageService the message-boards message remote service
1444             */
1445            public void setMBMessageService(MBMessageService mbMessageService) {
1446                    this.mbMessageService = mbMessageService;
1447            }
1448    
1449            /**
1450             * Returns the message-boards message persistence.
1451             *
1452             * @return the message-boards message persistence
1453             */
1454            public MBMessagePersistence getMBMessagePersistence() {
1455                    return mbMessagePersistence;
1456            }
1457    
1458            /**
1459             * Sets the message-boards message persistence.
1460             *
1461             * @param mbMessagePersistence the message-boards message persistence
1462             */
1463            public void setMBMessagePersistence(
1464                    MBMessagePersistence mbMessagePersistence) {
1465                    this.mbMessagePersistence = mbMessagePersistence;
1466            }
1467    
1468            /**
1469             * Returns the message-boards message finder.
1470             *
1471             * @return the message-boards message finder
1472             */
1473            public MBMessageFinder getMBMessageFinder() {
1474                    return mbMessageFinder;
1475            }
1476    
1477            /**
1478             * Sets the message-boards message finder.
1479             *
1480             * @param mbMessageFinder the message-boards message finder
1481             */
1482            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1483                    this.mbMessageFinder = mbMessageFinder;
1484            }
1485    
1486            /**
1487             * Returns the social activity local service.
1488             *
1489             * @return the social activity local service
1490             */
1491            public SocialActivityLocalService getSocialActivityLocalService() {
1492                    return socialActivityLocalService;
1493            }
1494    
1495            /**
1496             * Sets the social activity local service.
1497             *
1498             * @param socialActivityLocalService the social activity local service
1499             */
1500            public void setSocialActivityLocalService(
1501                    SocialActivityLocalService socialActivityLocalService) {
1502                    this.socialActivityLocalService = socialActivityLocalService;
1503            }
1504    
1505            /**
1506             * Returns the social activity persistence.
1507             *
1508             * @return the social activity persistence
1509             */
1510            public SocialActivityPersistence getSocialActivityPersistence() {
1511                    return socialActivityPersistence;
1512            }
1513    
1514            /**
1515             * Sets the social activity persistence.
1516             *
1517             * @param socialActivityPersistence the social activity persistence
1518             */
1519            public void setSocialActivityPersistence(
1520                    SocialActivityPersistence socialActivityPersistence) {
1521                    this.socialActivityPersistence = socialActivityPersistence;
1522            }
1523    
1524            /**
1525             * Returns the social activity finder.
1526             *
1527             * @return the social activity finder
1528             */
1529            public SocialActivityFinder getSocialActivityFinder() {
1530                    return socialActivityFinder;
1531            }
1532    
1533            /**
1534             * Sets the social activity finder.
1535             *
1536             * @param socialActivityFinder the social activity finder
1537             */
1538            public void setSocialActivityFinder(
1539                    SocialActivityFinder socialActivityFinder) {
1540                    this.socialActivityFinder = socialActivityFinder;
1541            }
1542    
1543            /**
1544             * Returns the wiki page local service.
1545             *
1546             * @return the wiki page local service
1547             */
1548            public WikiPageLocalService getWikiPageLocalService() {
1549                    return wikiPageLocalService;
1550            }
1551    
1552            /**
1553             * Sets the wiki page local service.
1554             *
1555             * @param wikiPageLocalService the wiki page local service
1556             */
1557            public void setWikiPageLocalService(
1558                    WikiPageLocalService wikiPageLocalService) {
1559                    this.wikiPageLocalService = wikiPageLocalService;
1560            }
1561    
1562            /**
1563             * Returns the wiki page remote service.
1564             *
1565             * @return the wiki page remote service
1566             */
1567            public WikiPageService getWikiPageService() {
1568                    return wikiPageService;
1569            }
1570    
1571            /**
1572             * Sets the wiki page remote service.
1573             *
1574             * @param wikiPageService the wiki page remote service
1575             */
1576            public void setWikiPageService(WikiPageService wikiPageService) {
1577                    this.wikiPageService = wikiPageService;
1578            }
1579    
1580            /**
1581             * Returns the wiki page persistence.
1582             *
1583             * @return the wiki page persistence
1584             */
1585            public WikiPagePersistence getWikiPagePersistence() {
1586                    return wikiPagePersistence;
1587            }
1588    
1589            /**
1590             * Sets the wiki page persistence.
1591             *
1592             * @param wikiPagePersistence the wiki page persistence
1593             */
1594            public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
1595                    this.wikiPagePersistence = wikiPagePersistence;
1596            }
1597    
1598            /**
1599             * Returns the wiki page finder.
1600             *
1601             * @return the wiki page finder
1602             */
1603            public WikiPageFinder getWikiPageFinder() {
1604                    return wikiPageFinder;
1605            }
1606    
1607            /**
1608             * Sets the wiki page finder.
1609             *
1610             * @param wikiPageFinder the wiki page finder
1611             */
1612            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
1613                    this.wikiPageFinder = wikiPageFinder;
1614            }
1615    
1616            /**
1617             * Returns the wiki page resource local service.
1618             *
1619             * @return the wiki page resource local service
1620             */
1621            public WikiPageResourceLocalService getWikiPageResourceLocalService() {
1622                    return wikiPageResourceLocalService;
1623            }
1624    
1625            /**
1626             * Sets the wiki page resource local service.
1627             *
1628             * @param wikiPageResourceLocalService the wiki page resource local service
1629             */
1630            public void setWikiPageResourceLocalService(
1631                    WikiPageResourceLocalService wikiPageResourceLocalService) {
1632                    this.wikiPageResourceLocalService = wikiPageResourceLocalService;
1633            }
1634    
1635            /**
1636             * Returns the wiki page resource persistence.
1637             *
1638             * @return the wiki page resource persistence
1639             */
1640            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
1641                    return wikiPageResourcePersistence;
1642            }
1643    
1644            /**
1645             * Sets the wiki page resource persistence.
1646             *
1647             * @param wikiPageResourcePersistence the wiki page resource persistence
1648             */
1649            public void setWikiPageResourcePersistence(
1650                    WikiPageResourcePersistence wikiPageResourcePersistence) {
1651                    this.wikiPageResourcePersistence = wikiPageResourcePersistence;
1652            }
1653    
1654            public void afterPropertiesSet() {
1655            }
1656    
1657            public void destroy() {
1658            }
1659    
1660            /**
1661             * Returns the Spring bean ID for this bean.
1662             *
1663             * @return the Spring bean ID for this bean
1664             */
1665            public String getBeanIdentifier() {
1666                    return _beanIdentifier;
1667            }
1668    
1669            /**
1670             * Sets the Spring bean ID for this bean.
1671             *
1672             * @param beanIdentifier the Spring bean ID for this bean
1673             */
1674            public void setBeanIdentifier(String beanIdentifier) {
1675                    _beanIdentifier = beanIdentifier;
1676            }
1677    
1678            protected Class<?> getModelClass() {
1679                    return AssetEntry.class;
1680            }
1681    
1682            protected String getModelClassName() {
1683                    return AssetEntry.class.getName();
1684            }
1685    
1686            /**
1687             * Performs an SQL query.
1688             *
1689             * @param sql the sql query
1690             */
1691            protected void runSQL(String sql) throws SystemException {
1692                    try {
1693                            DataSource dataSource = assetEntryPersistence.getDataSource();
1694    
1695                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1696                                            sql, new int[0]);
1697    
1698                            sqlUpdate.update();
1699                    }
1700                    catch (Exception e) {
1701                            throw new SystemException(e);
1702                    }
1703            }
1704    
1705            @BeanReference(type = AssetCategoryLocalService.class)
1706            protected AssetCategoryLocalService assetCategoryLocalService;
1707            @BeanReference(type = AssetCategoryService.class)
1708            protected AssetCategoryService assetCategoryService;
1709            @BeanReference(type = AssetCategoryPersistence.class)
1710            protected AssetCategoryPersistence assetCategoryPersistence;
1711            @BeanReference(type = AssetCategoryFinder.class)
1712            protected AssetCategoryFinder assetCategoryFinder;
1713            @BeanReference(type = AssetCategoryPropertyLocalService.class)
1714            protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
1715            @BeanReference(type = AssetCategoryPropertyService.class)
1716            protected AssetCategoryPropertyService assetCategoryPropertyService;
1717            @BeanReference(type = AssetCategoryPropertyPersistence.class)
1718            protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
1719            @BeanReference(type = AssetCategoryPropertyFinder.class)
1720            protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
1721            @BeanReference(type = AssetEntryLocalService.class)
1722            protected AssetEntryLocalService assetEntryLocalService;
1723            @BeanReference(type = AssetEntryService.class)
1724            protected AssetEntryService assetEntryService;
1725            @BeanReference(type = AssetEntryPersistence.class)
1726            protected AssetEntryPersistence assetEntryPersistence;
1727            @BeanReference(type = AssetEntryFinder.class)
1728            protected AssetEntryFinder assetEntryFinder;
1729            @BeanReference(type = AssetLinkLocalService.class)
1730            protected AssetLinkLocalService assetLinkLocalService;
1731            @BeanReference(type = AssetLinkPersistence.class)
1732            protected AssetLinkPersistence assetLinkPersistence;
1733            @BeanReference(type = AssetTagLocalService.class)
1734            protected AssetTagLocalService assetTagLocalService;
1735            @BeanReference(type = AssetTagService.class)
1736            protected AssetTagService assetTagService;
1737            @BeanReference(type = AssetTagPersistence.class)
1738            protected AssetTagPersistence assetTagPersistence;
1739            @BeanReference(type = AssetTagFinder.class)
1740            protected AssetTagFinder assetTagFinder;
1741            @BeanReference(type = AssetTagPropertyLocalService.class)
1742            protected AssetTagPropertyLocalService assetTagPropertyLocalService;
1743            @BeanReference(type = AssetTagPropertyService.class)
1744            protected AssetTagPropertyService assetTagPropertyService;
1745            @BeanReference(type = AssetTagPropertyPersistence.class)
1746            protected AssetTagPropertyPersistence assetTagPropertyPersistence;
1747            @BeanReference(type = AssetTagPropertyFinder.class)
1748            protected AssetTagPropertyFinder assetTagPropertyFinder;
1749            @BeanReference(type = AssetTagPropertyKeyFinder.class)
1750            protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
1751            @BeanReference(type = AssetTagStatsLocalService.class)
1752            protected AssetTagStatsLocalService assetTagStatsLocalService;
1753            @BeanReference(type = AssetTagStatsPersistence.class)
1754            protected AssetTagStatsPersistence assetTagStatsPersistence;
1755            @BeanReference(type = AssetVocabularyLocalService.class)
1756            protected AssetVocabularyLocalService assetVocabularyLocalService;
1757            @BeanReference(type = AssetVocabularyService.class)
1758            protected AssetVocabularyService assetVocabularyService;
1759            @BeanReference(type = AssetVocabularyPersistence.class)
1760            protected AssetVocabularyPersistence assetVocabularyPersistence;
1761            @BeanReference(type = AssetVocabularyFinder.class)
1762            protected AssetVocabularyFinder assetVocabularyFinder;
1763            @BeanReference(type = CounterLocalService.class)
1764            protected CounterLocalService counterLocalService;
1765            @BeanReference(type = CompanyLocalService.class)
1766            protected CompanyLocalService companyLocalService;
1767            @BeanReference(type = CompanyService.class)
1768            protected CompanyService companyService;
1769            @BeanReference(type = CompanyPersistence.class)
1770            protected CompanyPersistence companyPersistence;
1771            @BeanReference(type = GroupLocalService.class)
1772            protected GroupLocalService groupLocalService;
1773            @BeanReference(type = GroupService.class)
1774            protected GroupService groupService;
1775            @BeanReference(type = GroupPersistence.class)
1776            protected GroupPersistence groupPersistence;
1777            @BeanReference(type = GroupFinder.class)
1778            protected GroupFinder groupFinder;
1779            @BeanReference(type = ResourceLocalService.class)
1780            protected ResourceLocalService resourceLocalService;
1781            @BeanReference(type = ResourceService.class)
1782            protected ResourceService resourceService;
1783            @BeanReference(type = ResourcePersistence.class)
1784            protected ResourcePersistence resourcePersistence;
1785            @BeanReference(type = ResourceFinder.class)
1786            protected ResourceFinder resourceFinder;
1787            @BeanReference(type = UserLocalService.class)
1788            protected UserLocalService userLocalService;
1789            @BeanReference(type = UserService.class)
1790            protected UserService userService;
1791            @BeanReference(type = UserPersistence.class)
1792            protected UserPersistence userPersistence;
1793            @BeanReference(type = UserFinder.class)
1794            protected UserFinder userFinder;
1795            @BeanReference(type = BlogsEntryLocalService.class)
1796            protected BlogsEntryLocalService blogsEntryLocalService;
1797            @BeanReference(type = BlogsEntryService.class)
1798            protected BlogsEntryService blogsEntryService;
1799            @BeanReference(type = BlogsEntryPersistence.class)
1800            protected BlogsEntryPersistence blogsEntryPersistence;
1801            @BeanReference(type = BlogsEntryFinder.class)
1802            protected BlogsEntryFinder blogsEntryFinder;
1803            @BeanReference(type = BookmarksEntryLocalService.class)
1804            protected BookmarksEntryLocalService bookmarksEntryLocalService;
1805            @BeanReference(type = BookmarksEntryService.class)
1806            protected BookmarksEntryService bookmarksEntryService;
1807            @BeanReference(type = BookmarksEntryPersistence.class)
1808            protected BookmarksEntryPersistence bookmarksEntryPersistence;
1809            @BeanReference(type = BookmarksEntryFinder.class)
1810            protected BookmarksEntryFinder bookmarksEntryFinder;
1811            @BeanReference(type = DLAppLocalService.class)
1812            protected DLAppLocalService dlAppLocalService;
1813            @BeanReference(type = DLAppService.class)
1814            protected DLAppService dlAppService;
1815            @BeanReference(type = DLFileEntryLocalService.class)
1816            protected DLFileEntryLocalService dlFileEntryLocalService;
1817            @BeanReference(type = DLFileEntryService.class)
1818            protected DLFileEntryService dlFileEntryService;
1819            @BeanReference(type = DLFileEntryPersistence.class)
1820            protected DLFileEntryPersistence dlFileEntryPersistence;
1821            @BeanReference(type = DLFileEntryFinder.class)
1822            protected DLFileEntryFinder dlFileEntryFinder;
1823            @BeanReference(type = DLFolderLocalService.class)
1824            protected DLFolderLocalService dlFolderLocalService;
1825            @BeanReference(type = DLFolderService.class)
1826            protected DLFolderService dlFolderService;
1827            @BeanReference(type = DLFolderPersistence.class)
1828            protected DLFolderPersistence dlFolderPersistence;
1829            @BeanReference(type = DLFolderFinder.class)
1830            protected DLFolderFinder dlFolderFinder;
1831            @BeanReference(type = JournalArticleLocalService.class)
1832            protected JournalArticleLocalService journalArticleLocalService;
1833            @BeanReference(type = JournalArticleService.class)
1834            protected JournalArticleService journalArticleService;
1835            @BeanReference(type = JournalArticlePersistence.class)
1836            protected JournalArticlePersistence journalArticlePersistence;
1837            @BeanReference(type = JournalArticleFinder.class)
1838            protected JournalArticleFinder journalArticleFinder;
1839            @BeanReference(type = JournalArticleResourceLocalService.class)
1840            protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1841            @BeanReference(type = JournalArticleResourcePersistence.class)
1842            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1843            @BeanReference(type = MBMessageLocalService.class)
1844            protected MBMessageLocalService mbMessageLocalService;
1845            @BeanReference(type = MBMessageService.class)
1846            protected MBMessageService mbMessageService;
1847            @BeanReference(type = MBMessagePersistence.class)
1848            protected MBMessagePersistence mbMessagePersistence;
1849            @BeanReference(type = MBMessageFinder.class)
1850            protected MBMessageFinder mbMessageFinder;
1851            @BeanReference(type = SocialActivityLocalService.class)
1852            protected SocialActivityLocalService socialActivityLocalService;
1853            @BeanReference(type = SocialActivityPersistence.class)
1854            protected SocialActivityPersistence socialActivityPersistence;
1855            @BeanReference(type = SocialActivityFinder.class)
1856            protected SocialActivityFinder socialActivityFinder;
1857            @BeanReference(type = WikiPageLocalService.class)
1858            protected WikiPageLocalService wikiPageLocalService;
1859            @BeanReference(type = WikiPageService.class)
1860            protected WikiPageService wikiPageService;
1861            @BeanReference(type = WikiPagePersistence.class)
1862            protected WikiPagePersistence wikiPagePersistence;
1863            @BeanReference(type = WikiPageFinder.class)
1864            protected WikiPageFinder wikiPageFinder;
1865            @BeanReference(type = WikiPageResourceLocalService.class)
1866            protected WikiPageResourceLocalService wikiPageResourceLocalService;
1867            @BeanReference(type = WikiPageResourcePersistence.class)
1868            protected WikiPageResourcePersistence wikiPageResourcePersistence;
1869            private String _beanIdentifier;
1870    }