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