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