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.journal.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.mail.service.MailService;
020    
021    import com.liferay.portal.kernel.bean.BeanReference;
022    import com.liferay.portal.kernel.bean.IdentifiableBean;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025    import com.liferay.portal.kernel.exception.SystemException;
026    import com.liferay.portal.service.BaseServiceImpl;
027    import com.liferay.portal.service.CompanyLocalService;
028    import com.liferay.portal.service.CompanyService;
029    import com.liferay.portal.service.GroupLocalService;
030    import com.liferay.portal.service.GroupService;
031    import com.liferay.portal.service.ImageLocalService;
032    import com.liferay.portal.service.ImageService;
033    import com.liferay.portal.service.PortletPreferencesLocalService;
034    import com.liferay.portal.service.PortletPreferencesService;
035    import com.liferay.portal.service.ResourceLocalService;
036    import com.liferay.portal.service.SubscriptionLocalService;
037    import com.liferay.portal.service.UserLocalService;
038    import com.liferay.portal.service.UserService;
039    import com.liferay.portal.service.WorkflowInstanceLinkLocalService;
040    import com.liferay.portal.service.persistence.CompanyPersistence;
041    import com.liferay.portal.service.persistence.GroupFinder;
042    import com.liferay.portal.service.persistence.GroupPersistence;
043    import com.liferay.portal.service.persistence.ImagePersistence;
044    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
045    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
046    import com.liferay.portal.service.persistence.SubscriptionPersistence;
047    import com.liferay.portal.service.persistence.UserFinder;
048    import com.liferay.portal.service.persistence.UserPersistence;
049    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
050    
051    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
052    import com.liferay.portlet.asset.service.AssetCategoryService;
053    import com.liferay.portlet.asset.service.AssetEntryLocalService;
054    import com.liferay.portlet.asset.service.AssetEntryService;
055    import com.liferay.portlet.asset.service.AssetLinkLocalService;
056    import com.liferay.portlet.asset.service.AssetTagLocalService;
057    import com.liferay.portlet.asset.service.AssetTagService;
058    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
059    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
060    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
061    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
062    import com.liferay.portlet.asset.service.persistence.AssetLinkFinder;
063    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
064    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
065    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
066    import com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService;
067    import com.liferay.portlet.dynamicdatamapping.service.DDMStructureService;
068    import com.liferay.portlet.dynamicdatamapping.service.DDMTemplateLocalService;
069    import com.liferay.portlet.dynamicdatamapping.service.DDMTemplateService;
070    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
071    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
072    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMTemplateFinder;
073    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMTemplatePersistence;
074    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
075    import com.liferay.portlet.expando.service.ExpandoValueService;
076    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
077    import com.liferay.portlet.journal.model.JournalArticle;
078    import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
079    import com.liferay.portlet.journal.service.JournalArticleLocalService;
080    import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
081    import com.liferay.portlet.journal.service.JournalArticleService;
082    import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
083    import com.liferay.portlet.journal.service.JournalFeedLocalService;
084    import com.liferay.portlet.journal.service.JournalFeedService;
085    import com.liferay.portlet.journal.service.JournalFolderLocalService;
086    import com.liferay.portlet.journal.service.JournalFolderService;
087    import com.liferay.portlet.journal.service.JournalStructureLocalService;
088    import com.liferay.portlet.journal.service.JournalStructureService;
089    import com.liferay.portlet.journal.service.JournalTemplateLocalService;
090    import com.liferay.portlet.journal.service.JournalTemplateService;
091    import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
092    import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
093    import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
094    import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
095    import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
096    import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
097    import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
098    import com.liferay.portlet.journal.service.persistence.JournalFolderFinder;
099    import com.liferay.portlet.journal.service.persistence.JournalFolderPersistence;
100    import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
101    import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
102    import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
103    import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
104    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
105    import com.liferay.portlet.messageboards.service.MBMessageService;
106    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
107    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
108    import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
109    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
110    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
111    import com.liferay.portlet.social.service.SocialActivityCounterLocalService;
112    import com.liferay.portlet.social.service.SocialActivityLocalService;
113    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
114    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
115    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
116    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
117    import com.liferay.portlet.trash.service.TrashEntryLocalService;
118    import com.liferay.portlet.trash.service.TrashEntryService;
119    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
120    
121    import javax.sql.DataSource;
122    
123    /**
124     * The base implementation of the journal article remote service.
125     *
126     * <p>
127     * 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.journal.service.impl.JournalArticleServiceImpl}.
128     * </p>
129     *
130     * @author Brian Wing Shun Chan
131     * @see com.liferay.portlet.journal.service.impl.JournalArticleServiceImpl
132     * @see com.liferay.portlet.journal.service.JournalArticleServiceUtil
133     * @generated
134     */
135    public abstract class JournalArticleServiceBaseImpl extends BaseServiceImpl
136            implements JournalArticleService, IdentifiableBean {
137            /*
138             * NOTE FOR DEVELOPERS:
139             *
140             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.journal.service.JournalArticleServiceUtil} to access the journal article remote service.
141             */
142    
143            /**
144             * Returns the journal article local service.
145             *
146             * @return the journal article local service
147             */
148            public JournalArticleLocalService getJournalArticleLocalService() {
149                    return journalArticleLocalService;
150            }
151    
152            /**
153             * Sets the journal article local service.
154             *
155             * @param journalArticleLocalService the journal article local service
156             */
157            public void setJournalArticleLocalService(
158                    JournalArticleLocalService journalArticleLocalService) {
159                    this.journalArticleLocalService = journalArticleLocalService;
160            }
161    
162            /**
163             * Returns the journal article remote service.
164             *
165             * @return the journal article remote service
166             */
167            public JournalArticleService getJournalArticleService() {
168                    return journalArticleService;
169            }
170    
171            /**
172             * Sets the journal article remote service.
173             *
174             * @param journalArticleService the journal article remote service
175             */
176            public void setJournalArticleService(
177                    JournalArticleService journalArticleService) {
178                    this.journalArticleService = journalArticleService;
179            }
180    
181            /**
182             * Returns the journal article persistence.
183             *
184             * @return the journal article persistence
185             */
186            public JournalArticlePersistence getJournalArticlePersistence() {
187                    return journalArticlePersistence;
188            }
189    
190            /**
191             * Sets the journal article persistence.
192             *
193             * @param journalArticlePersistence the journal article persistence
194             */
195            public void setJournalArticlePersistence(
196                    JournalArticlePersistence journalArticlePersistence) {
197                    this.journalArticlePersistence = journalArticlePersistence;
198            }
199    
200            /**
201             * Returns the journal article finder.
202             *
203             * @return the journal article finder
204             */
205            public JournalArticleFinder getJournalArticleFinder() {
206                    return journalArticleFinder;
207            }
208    
209            /**
210             * Sets the journal article finder.
211             *
212             * @param journalArticleFinder the journal article finder
213             */
214            public void setJournalArticleFinder(
215                    JournalArticleFinder journalArticleFinder) {
216                    this.journalArticleFinder = journalArticleFinder;
217            }
218    
219            /**
220             * Returns the journal article image local service.
221             *
222             * @return the journal article image local service
223             */
224            public JournalArticleImageLocalService getJournalArticleImageLocalService() {
225                    return journalArticleImageLocalService;
226            }
227    
228            /**
229             * Sets the journal article image local service.
230             *
231             * @param journalArticleImageLocalService the journal article image local service
232             */
233            public void setJournalArticleImageLocalService(
234                    JournalArticleImageLocalService journalArticleImageLocalService) {
235                    this.journalArticleImageLocalService = journalArticleImageLocalService;
236            }
237    
238            /**
239             * Returns the journal article image persistence.
240             *
241             * @return the journal article image persistence
242             */
243            public JournalArticleImagePersistence getJournalArticleImagePersistence() {
244                    return journalArticleImagePersistence;
245            }
246    
247            /**
248             * Sets the journal article image persistence.
249             *
250             * @param journalArticleImagePersistence the journal article image persistence
251             */
252            public void setJournalArticleImagePersistence(
253                    JournalArticleImagePersistence journalArticleImagePersistence) {
254                    this.journalArticleImagePersistence = journalArticleImagePersistence;
255            }
256    
257            /**
258             * Returns the journal article resource local service.
259             *
260             * @return the journal article resource local service
261             */
262            public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
263                    return journalArticleResourceLocalService;
264            }
265    
266            /**
267             * Sets the journal article resource local service.
268             *
269             * @param journalArticleResourceLocalService the journal article resource local service
270             */
271            public void setJournalArticleResourceLocalService(
272                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
273                    this.journalArticleResourceLocalService = journalArticleResourceLocalService;
274            }
275    
276            /**
277             * Returns the journal article resource persistence.
278             *
279             * @return the journal article resource persistence
280             */
281            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
282                    return journalArticleResourcePersistence;
283            }
284    
285            /**
286             * Sets the journal article resource persistence.
287             *
288             * @param journalArticleResourcePersistence the journal article resource persistence
289             */
290            public void setJournalArticleResourcePersistence(
291                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
292                    this.journalArticleResourcePersistence = journalArticleResourcePersistence;
293            }
294    
295            /**
296             * Returns the journal content search local service.
297             *
298             * @return the journal content search local service
299             */
300            public JournalContentSearchLocalService getJournalContentSearchLocalService() {
301                    return journalContentSearchLocalService;
302            }
303    
304            /**
305             * Sets the journal content search local service.
306             *
307             * @param journalContentSearchLocalService the journal content search local service
308             */
309            public void setJournalContentSearchLocalService(
310                    JournalContentSearchLocalService journalContentSearchLocalService) {
311                    this.journalContentSearchLocalService = journalContentSearchLocalService;
312            }
313    
314            /**
315             * Returns the journal content search persistence.
316             *
317             * @return the journal content search persistence
318             */
319            public JournalContentSearchPersistence getJournalContentSearchPersistence() {
320                    return journalContentSearchPersistence;
321            }
322    
323            /**
324             * Sets the journal content search persistence.
325             *
326             * @param journalContentSearchPersistence the journal content search persistence
327             */
328            public void setJournalContentSearchPersistence(
329                    JournalContentSearchPersistence journalContentSearchPersistence) {
330                    this.journalContentSearchPersistence = journalContentSearchPersistence;
331            }
332    
333            /**
334             * Returns the journal feed local service.
335             *
336             * @return the journal feed local service
337             */
338            public JournalFeedLocalService getJournalFeedLocalService() {
339                    return journalFeedLocalService;
340            }
341    
342            /**
343             * Sets the journal feed local service.
344             *
345             * @param journalFeedLocalService the journal feed local service
346             */
347            public void setJournalFeedLocalService(
348                    JournalFeedLocalService journalFeedLocalService) {
349                    this.journalFeedLocalService = journalFeedLocalService;
350            }
351    
352            /**
353             * Returns the journal feed remote service.
354             *
355             * @return the journal feed remote service
356             */
357            public JournalFeedService getJournalFeedService() {
358                    return journalFeedService;
359            }
360    
361            /**
362             * Sets the journal feed remote service.
363             *
364             * @param journalFeedService the journal feed remote service
365             */
366            public void setJournalFeedService(JournalFeedService journalFeedService) {
367                    this.journalFeedService = journalFeedService;
368            }
369    
370            /**
371             * Returns the journal feed persistence.
372             *
373             * @return the journal feed persistence
374             */
375            public JournalFeedPersistence getJournalFeedPersistence() {
376                    return journalFeedPersistence;
377            }
378    
379            /**
380             * Sets the journal feed persistence.
381             *
382             * @param journalFeedPersistence the journal feed persistence
383             */
384            public void setJournalFeedPersistence(
385                    JournalFeedPersistence journalFeedPersistence) {
386                    this.journalFeedPersistence = journalFeedPersistence;
387            }
388    
389            /**
390             * Returns the journal feed finder.
391             *
392             * @return the journal feed finder
393             */
394            public JournalFeedFinder getJournalFeedFinder() {
395                    return journalFeedFinder;
396            }
397    
398            /**
399             * Sets the journal feed finder.
400             *
401             * @param journalFeedFinder the journal feed finder
402             */
403            public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
404                    this.journalFeedFinder = journalFeedFinder;
405            }
406    
407            /**
408             * Returns the journal folder local service.
409             *
410             * @return the journal folder local service
411             */
412            public JournalFolderLocalService getJournalFolderLocalService() {
413                    return journalFolderLocalService;
414            }
415    
416            /**
417             * Sets the journal folder local service.
418             *
419             * @param journalFolderLocalService the journal folder local service
420             */
421            public void setJournalFolderLocalService(
422                    JournalFolderLocalService journalFolderLocalService) {
423                    this.journalFolderLocalService = journalFolderLocalService;
424            }
425    
426            /**
427             * Returns the journal folder remote service.
428             *
429             * @return the journal folder remote service
430             */
431            public JournalFolderService getJournalFolderService() {
432                    return journalFolderService;
433            }
434    
435            /**
436             * Sets the journal folder remote service.
437             *
438             * @param journalFolderService the journal folder remote service
439             */
440            public void setJournalFolderService(
441                    JournalFolderService journalFolderService) {
442                    this.journalFolderService = journalFolderService;
443            }
444    
445            /**
446             * Returns the journal folder persistence.
447             *
448             * @return the journal folder persistence
449             */
450            public JournalFolderPersistence getJournalFolderPersistence() {
451                    return journalFolderPersistence;
452            }
453    
454            /**
455             * Sets the journal folder persistence.
456             *
457             * @param journalFolderPersistence the journal folder persistence
458             */
459            public void setJournalFolderPersistence(
460                    JournalFolderPersistence journalFolderPersistence) {
461                    this.journalFolderPersistence = journalFolderPersistence;
462            }
463    
464            /**
465             * Returns the journal folder finder.
466             *
467             * @return the journal folder finder
468             */
469            public JournalFolderFinder getJournalFolderFinder() {
470                    return journalFolderFinder;
471            }
472    
473            /**
474             * Sets the journal folder finder.
475             *
476             * @param journalFolderFinder the journal folder finder
477             */
478            public void setJournalFolderFinder(JournalFolderFinder journalFolderFinder) {
479                    this.journalFolderFinder = journalFolderFinder;
480            }
481    
482            /**
483             * Returns the journal structure local service.
484             *
485             * @return the journal structure local service
486             */
487            public JournalStructureLocalService getJournalStructureLocalService() {
488                    return journalStructureLocalService;
489            }
490    
491            /**
492             * Sets the journal structure local service.
493             *
494             * @param journalStructureLocalService the journal structure local service
495             */
496            public void setJournalStructureLocalService(
497                    JournalStructureLocalService journalStructureLocalService) {
498                    this.journalStructureLocalService = journalStructureLocalService;
499            }
500    
501            /**
502             * Returns the journal structure remote service.
503             *
504             * @return the journal structure remote service
505             */
506            public JournalStructureService getJournalStructureService() {
507                    return journalStructureService;
508            }
509    
510            /**
511             * Sets the journal structure remote service.
512             *
513             * @param journalStructureService the journal structure remote service
514             */
515            public void setJournalStructureService(
516                    JournalStructureService journalStructureService) {
517                    this.journalStructureService = journalStructureService;
518            }
519    
520            /**
521             * Returns the journal structure persistence.
522             *
523             * @return the journal structure persistence
524             */
525            public JournalStructurePersistence getJournalStructurePersistence() {
526                    return journalStructurePersistence;
527            }
528    
529            /**
530             * Sets the journal structure persistence.
531             *
532             * @param journalStructurePersistence the journal structure persistence
533             */
534            public void setJournalStructurePersistence(
535                    JournalStructurePersistence journalStructurePersistence) {
536                    this.journalStructurePersistence = journalStructurePersistence;
537            }
538    
539            /**
540             * Returns the journal structure finder.
541             *
542             * @return the journal structure finder
543             */
544            public JournalStructureFinder getJournalStructureFinder() {
545                    return journalStructureFinder;
546            }
547    
548            /**
549             * Sets the journal structure finder.
550             *
551             * @param journalStructureFinder the journal structure finder
552             */
553            public void setJournalStructureFinder(
554                    JournalStructureFinder journalStructureFinder) {
555                    this.journalStructureFinder = journalStructureFinder;
556            }
557    
558            /**
559             * Returns the journal template local service.
560             *
561             * @return the journal template local service
562             */
563            public JournalTemplateLocalService getJournalTemplateLocalService() {
564                    return journalTemplateLocalService;
565            }
566    
567            /**
568             * Sets the journal template local service.
569             *
570             * @param journalTemplateLocalService the journal template local service
571             */
572            public void setJournalTemplateLocalService(
573                    JournalTemplateLocalService journalTemplateLocalService) {
574                    this.journalTemplateLocalService = journalTemplateLocalService;
575            }
576    
577            /**
578             * Returns the journal template remote service.
579             *
580             * @return the journal template remote service
581             */
582            public JournalTemplateService getJournalTemplateService() {
583                    return journalTemplateService;
584            }
585    
586            /**
587             * Sets the journal template remote service.
588             *
589             * @param journalTemplateService the journal template remote service
590             */
591            public void setJournalTemplateService(
592                    JournalTemplateService journalTemplateService) {
593                    this.journalTemplateService = journalTemplateService;
594            }
595    
596            /**
597             * Returns the journal template persistence.
598             *
599             * @return the journal template persistence
600             */
601            public JournalTemplatePersistence getJournalTemplatePersistence() {
602                    return journalTemplatePersistence;
603            }
604    
605            /**
606             * Sets the journal template persistence.
607             *
608             * @param journalTemplatePersistence the journal template persistence
609             */
610            public void setJournalTemplatePersistence(
611                    JournalTemplatePersistence journalTemplatePersistence) {
612                    this.journalTemplatePersistence = journalTemplatePersistence;
613            }
614    
615            /**
616             * Returns the journal template finder.
617             *
618             * @return the journal template finder
619             */
620            public JournalTemplateFinder getJournalTemplateFinder() {
621                    return journalTemplateFinder;
622            }
623    
624            /**
625             * Sets the journal template finder.
626             *
627             * @param journalTemplateFinder the journal template finder
628             */
629            public void setJournalTemplateFinder(
630                    JournalTemplateFinder journalTemplateFinder) {
631                    this.journalTemplateFinder = journalTemplateFinder;
632            }
633    
634            /**
635             * Returns the counter local service.
636             *
637             * @return the counter local service
638             */
639            public CounterLocalService getCounterLocalService() {
640                    return counterLocalService;
641            }
642    
643            /**
644             * Sets the counter local service.
645             *
646             * @param counterLocalService the counter local service
647             */
648            public void setCounterLocalService(CounterLocalService counterLocalService) {
649                    this.counterLocalService = counterLocalService;
650            }
651    
652            /**
653             * Returns the mail remote service.
654             *
655             * @return the mail remote service
656             */
657            public MailService getMailService() {
658                    return mailService;
659            }
660    
661            /**
662             * Sets the mail remote service.
663             *
664             * @param mailService the mail remote service
665             */
666            public void setMailService(MailService mailService) {
667                    this.mailService = mailService;
668            }
669    
670            /**
671             * Returns the company local service.
672             *
673             * @return the company local service
674             */
675            public CompanyLocalService getCompanyLocalService() {
676                    return companyLocalService;
677            }
678    
679            /**
680             * Sets the company local service.
681             *
682             * @param companyLocalService the company local service
683             */
684            public void setCompanyLocalService(CompanyLocalService companyLocalService) {
685                    this.companyLocalService = companyLocalService;
686            }
687    
688            /**
689             * Returns the company remote service.
690             *
691             * @return the company remote service
692             */
693            public CompanyService getCompanyService() {
694                    return companyService;
695            }
696    
697            /**
698             * Sets the company remote service.
699             *
700             * @param companyService the company remote service
701             */
702            public void setCompanyService(CompanyService companyService) {
703                    this.companyService = companyService;
704            }
705    
706            /**
707             * Returns the company persistence.
708             *
709             * @return the company persistence
710             */
711            public CompanyPersistence getCompanyPersistence() {
712                    return companyPersistence;
713            }
714    
715            /**
716             * Sets the company persistence.
717             *
718             * @param companyPersistence the company persistence
719             */
720            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
721                    this.companyPersistence = companyPersistence;
722            }
723    
724            /**
725             * Returns the group local service.
726             *
727             * @return the group local service
728             */
729            public GroupLocalService getGroupLocalService() {
730                    return groupLocalService;
731            }
732    
733            /**
734             * Sets the group local service.
735             *
736             * @param groupLocalService the group local service
737             */
738            public void setGroupLocalService(GroupLocalService groupLocalService) {
739                    this.groupLocalService = groupLocalService;
740            }
741    
742            /**
743             * Returns the group remote service.
744             *
745             * @return the group remote service
746             */
747            public GroupService getGroupService() {
748                    return groupService;
749            }
750    
751            /**
752             * Sets the group remote service.
753             *
754             * @param groupService the group remote service
755             */
756            public void setGroupService(GroupService groupService) {
757                    this.groupService = groupService;
758            }
759    
760            /**
761             * Returns the group persistence.
762             *
763             * @return the group persistence
764             */
765            public GroupPersistence getGroupPersistence() {
766                    return groupPersistence;
767            }
768    
769            /**
770             * Sets the group persistence.
771             *
772             * @param groupPersistence the group persistence
773             */
774            public void setGroupPersistence(GroupPersistence groupPersistence) {
775                    this.groupPersistence = groupPersistence;
776            }
777    
778            /**
779             * Returns the group finder.
780             *
781             * @return the group finder
782             */
783            public GroupFinder getGroupFinder() {
784                    return groupFinder;
785            }
786    
787            /**
788             * Sets the group finder.
789             *
790             * @param groupFinder the group finder
791             */
792            public void setGroupFinder(GroupFinder groupFinder) {
793                    this.groupFinder = groupFinder;
794            }
795    
796            /**
797             * Returns the image local service.
798             *
799             * @return the image local service
800             */
801            public ImageLocalService getImageLocalService() {
802                    return imageLocalService;
803            }
804    
805            /**
806             * Sets the image local service.
807             *
808             * @param imageLocalService the image local service
809             */
810            public void setImageLocalService(ImageLocalService imageLocalService) {
811                    this.imageLocalService = imageLocalService;
812            }
813    
814            /**
815             * Returns the image remote service.
816             *
817             * @return the image remote service
818             */
819            public ImageService getImageService() {
820                    return imageService;
821            }
822    
823            /**
824             * Sets the image remote service.
825             *
826             * @param imageService the image remote service
827             */
828            public void setImageService(ImageService imageService) {
829                    this.imageService = imageService;
830            }
831    
832            /**
833             * Returns the image persistence.
834             *
835             * @return the image persistence
836             */
837            public ImagePersistence getImagePersistence() {
838                    return imagePersistence;
839            }
840    
841            /**
842             * Sets the image persistence.
843             *
844             * @param imagePersistence the image persistence
845             */
846            public void setImagePersistence(ImagePersistence imagePersistence) {
847                    this.imagePersistence = imagePersistence;
848            }
849    
850            /**
851             * Returns the portlet preferences local service.
852             *
853             * @return the portlet preferences local service
854             */
855            public PortletPreferencesLocalService getPortletPreferencesLocalService() {
856                    return portletPreferencesLocalService;
857            }
858    
859            /**
860             * Sets the portlet preferences local service.
861             *
862             * @param portletPreferencesLocalService the portlet preferences local service
863             */
864            public void setPortletPreferencesLocalService(
865                    PortletPreferencesLocalService portletPreferencesLocalService) {
866                    this.portletPreferencesLocalService = portletPreferencesLocalService;
867            }
868    
869            /**
870             * Returns the portlet preferences remote service.
871             *
872             * @return the portlet preferences remote service
873             */
874            public PortletPreferencesService getPortletPreferencesService() {
875                    return portletPreferencesService;
876            }
877    
878            /**
879             * Sets the portlet preferences remote service.
880             *
881             * @param portletPreferencesService the portlet preferences remote service
882             */
883            public void setPortletPreferencesService(
884                    PortletPreferencesService portletPreferencesService) {
885                    this.portletPreferencesService = portletPreferencesService;
886            }
887    
888            /**
889             * Returns the portlet preferences persistence.
890             *
891             * @return the portlet preferences persistence
892             */
893            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
894                    return portletPreferencesPersistence;
895            }
896    
897            /**
898             * Sets the portlet preferences persistence.
899             *
900             * @param portletPreferencesPersistence the portlet preferences persistence
901             */
902            public void setPortletPreferencesPersistence(
903                    PortletPreferencesPersistence portletPreferencesPersistence) {
904                    this.portletPreferencesPersistence = portletPreferencesPersistence;
905            }
906    
907            /**
908             * Returns the portlet preferences finder.
909             *
910             * @return the portlet preferences finder
911             */
912            public PortletPreferencesFinder getPortletPreferencesFinder() {
913                    return portletPreferencesFinder;
914            }
915    
916            /**
917             * Sets the portlet preferences finder.
918             *
919             * @param portletPreferencesFinder the portlet preferences finder
920             */
921            public void setPortletPreferencesFinder(
922                    PortletPreferencesFinder portletPreferencesFinder) {
923                    this.portletPreferencesFinder = portletPreferencesFinder;
924            }
925    
926            /**
927             * Returns the resource local service.
928             *
929             * @return the resource local service
930             */
931            public ResourceLocalService getResourceLocalService() {
932                    return resourceLocalService;
933            }
934    
935            /**
936             * Sets the resource local service.
937             *
938             * @param resourceLocalService the resource local service
939             */
940            public void setResourceLocalService(
941                    ResourceLocalService resourceLocalService) {
942                    this.resourceLocalService = resourceLocalService;
943            }
944    
945            /**
946             * Returns the subscription local service.
947             *
948             * @return the subscription local service
949             */
950            public SubscriptionLocalService getSubscriptionLocalService() {
951                    return subscriptionLocalService;
952            }
953    
954            /**
955             * Sets the subscription local service.
956             *
957             * @param subscriptionLocalService the subscription local service
958             */
959            public void setSubscriptionLocalService(
960                    SubscriptionLocalService subscriptionLocalService) {
961                    this.subscriptionLocalService = subscriptionLocalService;
962            }
963    
964            /**
965             * Returns the subscription persistence.
966             *
967             * @return the subscription persistence
968             */
969            public SubscriptionPersistence getSubscriptionPersistence() {
970                    return subscriptionPersistence;
971            }
972    
973            /**
974             * Sets the subscription persistence.
975             *
976             * @param subscriptionPersistence the subscription persistence
977             */
978            public void setSubscriptionPersistence(
979                    SubscriptionPersistence subscriptionPersistence) {
980                    this.subscriptionPersistence = subscriptionPersistence;
981            }
982    
983            /**
984             * Returns the user local service.
985             *
986             * @return the user local service
987             */
988            public UserLocalService getUserLocalService() {
989                    return userLocalService;
990            }
991    
992            /**
993             * Sets the user local service.
994             *
995             * @param userLocalService the user local service
996             */
997            public void setUserLocalService(UserLocalService userLocalService) {
998                    this.userLocalService = userLocalService;
999            }
1000    
1001            /**
1002             * Returns the user remote service.
1003             *
1004             * @return the user remote service
1005             */
1006            public UserService getUserService() {
1007                    return userService;
1008            }
1009    
1010            /**
1011             * Sets the user remote service.
1012             *
1013             * @param userService the user remote service
1014             */
1015            public void setUserService(UserService userService) {
1016                    this.userService = userService;
1017            }
1018    
1019            /**
1020             * Returns the user persistence.
1021             *
1022             * @return the user persistence
1023             */
1024            public UserPersistence getUserPersistence() {
1025                    return userPersistence;
1026            }
1027    
1028            /**
1029             * Sets the user persistence.
1030             *
1031             * @param userPersistence the user persistence
1032             */
1033            public void setUserPersistence(UserPersistence userPersistence) {
1034                    this.userPersistence = userPersistence;
1035            }
1036    
1037            /**
1038             * Returns the user finder.
1039             *
1040             * @return the user finder
1041             */
1042            public UserFinder getUserFinder() {
1043                    return userFinder;
1044            }
1045    
1046            /**
1047             * Sets the user finder.
1048             *
1049             * @param userFinder the user finder
1050             */
1051            public void setUserFinder(UserFinder userFinder) {
1052                    this.userFinder = userFinder;
1053            }
1054    
1055            /**
1056             * Returns the workflow instance link local service.
1057             *
1058             * @return the workflow instance link local service
1059             */
1060            public WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1061                    return workflowInstanceLinkLocalService;
1062            }
1063    
1064            /**
1065             * Sets the workflow instance link local service.
1066             *
1067             * @param workflowInstanceLinkLocalService the workflow instance link local service
1068             */
1069            public void setWorkflowInstanceLinkLocalService(
1070                    WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1071                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1072            }
1073    
1074            /**
1075             * Returns the workflow instance link persistence.
1076             *
1077             * @return the workflow instance link persistence
1078             */
1079            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1080                    return workflowInstanceLinkPersistence;
1081            }
1082    
1083            /**
1084             * Sets the workflow instance link persistence.
1085             *
1086             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1087             */
1088            public void setWorkflowInstanceLinkPersistence(
1089                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1090                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1091            }
1092    
1093            /**
1094             * Returns the asset category local service.
1095             *
1096             * @return the asset category local service
1097             */
1098            public AssetCategoryLocalService getAssetCategoryLocalService() {
1099                    return assetCategoryLocalService;
1100            }
1101    
1102            /**
1103             * Sets the asset category local service.
1104             *
1105             * @param assetCategoryLocalService the asset category local service
1106             */
1107            public void setAssetCategoryLocalService(
1108                    AssetCategoryLocalService assetCategoryLocalService) {
1109                    this.assetCategoryLocalService = assetCategoryLocalService;
1110            }
1111    
1112            /**
1113             * Returns the asset category remote service.
1114             *
1115             * @return the asset category remote service
1116             */
1117            public AssetCategoryService getAssetCategoryService() {
1118                    return assetCategoryService;
1119            }
1120    
1121            /**
1122             * Sets the asset category remote service.
1123             *
1124             * @param assetCategoryService the asset category remote service
1125             */
1126            public void setAssetCategoryService(
1127                    AssetCategoryService assetCategoryService) {
1128                    this.assetCategoryService = assetCategoryService;
1129            }
1130    
1131            /**
1132             * Returns the asset category persistence.
1133             *
1134             * @return the asset category persistence
1135             */
1136            public AssetCategoryPersistence getAssetCategoryPersistence() {
1137                    return assetCategoryPersistence;
1138            }
1139    
1140            /**
1141             * Sets the asset category persistence.
1142             *
1143             * @param assetCategoryPersistence the asset category persistence
1144             */
1145            public void setAssetCategoryPersistence(
1146                    AssetCategoryPersistence assetCategoryPersistence) {
1147                    this.assetCategoryPersistence = assetCategoryPersistence;
1148            }
1149    
1150            /**
1151             * Returns the asset category finder.
1152             *
1153             * @return the asset category finder
1154             */
1155            public AssetCategoryFinder getAssetCategoryFinder() {
1156                    return assetCategoryFinder;
1157            }
1158    
1159            /**
1160             * Sets the asset category finder.
1161             *
1162             * @param assetCategoryFinder the asset category finder
1163             */
1164            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1165                    this.assetCategoryFinder = assetCategoryFinder;
1166            }
1167    
1168            /**
1169             * Returns the asset entry local service.
1170             *
1171             * @return the asset entry local service
1172             */
1173            public AssetEntryLocalService getAssetEntryLocalService() {
1174                    return assetEntryLocalService;
1175            }
1176    
1177            /**
1178             * Sets the asset entry local service.
1179             *
1180             * @param assetEntryLocalService the asset entry local service
1181             */
1182            public void setAssetEntryLocalService(
1183                    AssetEntryLocalService assetEntryLocalService) {
1184                    this.assetEntryLocalService = assetEntryLocalService;
1185            }
1186    
1187            /**
1188             * Returns the asset entry remote service.
1189             *
1190             * @return the asset entry remote service
1191             */
1192            public AssetEntryService getAssetEntryService() {
1193                    return assetEntryService;
1194            }
1195    
1196            /**
1197             * Sets the asset entry remote service.
1198             *
1199             * @param assetEntryService the asset entry remote service
1200             */
1201            public void setAssetEntryService(AssetEntryService assetEntryService) {
1202                    this.assetEntryService = assetEntryService;
1203            }
1204    
1205            /**
1206             * Returns the asset entry persistence.
1207             *
1208             * @return the asset entry persistence
1209             */
1210            public AssetEntryPersistence getAssetEntryPersistence() {
1211                    return assetEntryPersistence;
1212            }
1213    
1214            /**
1215             * Sets the asset entry persistence.
1216             *
1217             * @param assetEntryPersistence the asset entry persistence
1218             */
1219            public void setAssetEntryPersistence(
1220                    AssetEntryPersistence assetEntryPersistence) {
1221                    this.assetEntryPersistence = assetEntryPersistence;
1222            }
1223    
1224            /**
1225             * Returns the asset entry finder.
1226             *
1227             * @return the asset entry finder
1228             */
1229            public AssetEntryFinder getAssetEntryFinder() {
1230                    return assetEntryFinder;
1231            }
1232    
1233            /**
1234             * Sets the asset entry finder.
1235             *
1236             * @param assetEntryFinder the asset entry finder
1237             */
1238            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1239                    this.assetEntryFinder = assetEntryFinder;
1240            }
1241    
1242            /**
1243             * Returns the asset link local service.
1244             *
1245             * @return the asset link local service
1246             */
1247            public AssetLinkLocalService getAssetLinkLocalService() {
1248                    return assetLinkLocalService;
1249            }
1250    
1251            /**
1252             * Sets the asset link local service.
1253             *
1254             * @param assetLinkLocalService the asset link local service
1255             */
1256            public void setAssetLinkLocalService(
1257                    AssetLinkLocalService assetLinkLocalService) {
1258                    this.assetLinkLocalService = assetLinkLocalService;
1259            }
1260    
1261            /**
1262             * Returns the asset link persistence.
1263             *
1264             * @return the asset link persistence
1265             */
1266            public AssetLinkPersistence getAssetLinkPersistence() {
1267                    return assetLinkPersistence;
1268            }
1269    
1270            /**
1271             * Sets the asset link persistence.
1272             *
1273             * @param assetLinkPersistence the asset link persistence
1274             */
1275            public void setAssetLinkPersistence(
1276                    AssetLinkPersistence assetLinkPersistence) {
1277                    this.assetLinkPersistence = assetLinkPersistence;
1278            }
1279    
1280            /**
1281             * Returns the asset link finder.
1282             *
1283             * @return the asset link finder
1284             */
1285            public AssetLinkFinder getAssetLinkFinder() {
1286                    return assetLinkFinder;
1287            }
1288    
1289            /**
1290             * Sets the asset link finder.
1291             *
1292             * @param assetLinkFinder the asset link finder
1293             */
1294            public void setAssetLinkFinder(AssetLinkFinder assetLinkFinder) {
1295                    this.assetLinkFinder = assetLinkFinder;
1296            }
1297    
1298            /**
1299             * Returns the asset tag local service.
1300             *
1301             * @return the asset tag local service
1302             */
1303            public AssetTagLocalService getAssetTagLocalService() {
1304                    return assetTagLocalService;
1305            }
1306    
1307            /**
1308             * Sets the asset tag local service.
1309             *
1310             * @param assetTagLocalService the asset tag local service
1311             */
1312            public void setAssetTagLocalService(
1313                    AssetTagLocalService assetTagLocalService) {
1314                    this.assetTagLocalService = assetTagLocalService;
1315            }
1316    
1317            /**
1318             * Returns the asset tag remote service.
1319             *
1320             * @return the asset tag remote service
1321             */
1322            public AssetTagService getAssetTagService() {
1323                    return assetTagService;
1324            }
1325    
1326            /**
1327             * Sets the asset tag remote service.
1328             *
1329             * @param assetTagService the asset tag remote service
1330             */
1331            public void setAssetTagService(AssetTagService assetTagService) {
1332                    this.assetTagService = assetTagService;
1333            }
1334    
1335            /**
1336             * Returns the asset tag persistence.
1337             *
1338             * @return the asset tag persistence
1339             */
1340            public AssetTagPersistence getAssetTagPersistence() {
1341                    return assetTagPersistence;
1342            }
1343    
1344            /**
1345             * Sets the asset tag persistence.
1346             *
1347             * @param assetTagPersistence the asset tag persistence
1348             */
1349            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1350                    this.assetTagPersistence = assetTagPersistence;
1351            }
1352    
1353            /**
1354             * Returns the asset tag finder.
1355             *
1356             * @return the asset tag finder
1357             */
1358            public AssetTagFinder getAssetTagFinder() {
1359                    return assetTagFinder;
1360            }
1361    
1362            /**
1363             * Sets the asset tag finder.
1364             *
1365             * @param assetTagFinder the asset tag finder
1366             */
1367            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1368                    this.assetTagFinder = assetTagFinder;
1369            }
1370    
1371            /**
1372             * Returns the d d m structure local service.
1373             *
1374             * @return the d d m structure local service
1375             */
1376            public DDMStructureLocalService getDDMStructureLocalService() {
1377                    return ddmStructureLocalService;
1378            }
1379    
1380            /**
1381             * Sets the d d m structure local service.
1382             *
1383             * @param ddmStructureLocalService the d d m structure local service
1384             */
1385            public void setDDMStructureLocalService(
1386                    DDMStructureLocalService ddmStructureLocalService) {
1387                    this.ddmStructureLocalService = ddmStructureLocalService;
1388            }
1389    
1390            /**
1391             * Returns the d d m structure remote service.
1392             *
1393             * @return the d d m structure remote service
1394             */
1395            public DDMStructureService getDDMStructureService() {
1396                    return ddmStructureService;
1397            }
1398    
1399            /**
1400             * Sets the d d m structure remote service.
1401             *
1402             * @param ddmStructureService the d d m structure remote service
1403             */
1404            public void setDDMStructureService(DDMStructureService ddmStructureService) {
1405                    this.ddmStructureService = ddmStructureService;
1406            }
1407    
1408            /**
1409             * Returns the d d m structure persistence.
1410             *
1411             * @return the d d m structure persistence
1412             */
1413            public DDMStructurePersistence getDDMStructurePersistence() {
1414                    return ddmStructurePersistence;
1415            }
1416    
1417            /**
1418             * Sets the d d m structure persistence.
1419             *
1420             * @param ddmStructurePersistence the d d m structure persistence
1421             */
1422            public void setDDMStructurePersistence(
1423                    DDMStructurePersistence ddmStructurePersistence) {
1424                    this.ddmStructurePersistence = ddmStructurePersistence;
1425            }
1426    
1427            /**
1428             * Returns the d d m structure finder.
1429             *
1430             * @return the d d m structure finder
1431             */
1432            public DDMStructureFinder getDDMStructureFinder() {
1433                    return ddmStructureFinder;
1434            }
1435    
1436            /**
1437             * Sets the d d m structure finder.
1438             *
1439             * @param ddmStructureFinder the d d m structure finder
1440             */
1441            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1442                    this.ddmStructureFinder = ddmStructureFinder;
1443            }
1444    
1445            /**
1446             * Returns the d d m template local service.
1447             *
1448             * @return the d d m template local service
1449             */
1450            public DDMTemplateLocalService getDDMTemplateLocalService() {
1451                    return ddmTemplateLocalService;
1452            }
1453    
1454            /**
1455             * Sets the d d m template local service.
1456             *
1457             * @param ddmTemplateLocalService the d d m template local service
1458             */
1459            public void setDDMTemplateLocalService(
1460                    DDMTemplateLocalService ddmTemplateLocalService) {
1461                    this.ddmTemplateLocalService = ddmTemplateLocalService;
1462            }
1463    
1464            /**
1465             * Returns the d d m template remote service.
1466             *
1467             * @return the d d m template remote service
1468             */
1469            public DDMTemplateService getDDMTemplateService() {
1470                    return ddmTemplateService;
1471            }
1472    
1473            /**
1474             * Sets the d d m template remote service.
1475             *
1476             * @param ddmTemplateService the d d m template remote service
1477             */
1478            public void setDDMTemplateService(DDMTemplateService ddmTemplateService) {
1479                    this.ddmTemplateService = ddmTemplateService;
1480            }
1481    
1482            /**
1483             * Returns the d d m template persistence.
1484             *
1485             * @return the d d m template persistence
1486             */
1487            public DDMTemplatePersistence getDDMTemplatePersistence() {
1488                    return ddmTemplatePersistence;
1489            }
1490    
1491            /**
1492             * Sets the d d m template persistence.
1493             *
1494             * @param ddmTemplatePersistence the d d m template persistence
1495             */
1496            public void setDDMTemplatePersistence(
1497                    DDMTemplatePersistence ddmTemplatePersistence) {
1498                    this.ddmTemplatePersistence = ddmTemplatePersistence;
1499            }
1500    
1501            /**
1502             * Returns the d d m template finder.
1503             *
1504             * @return the d d m template finder
1505             */
1506            public DDMTemplateFinder getDDMTemplateFinder() {
1507                    return ddmTemplateFinder;
1508            }
1509    
1510            /**
1511             * Sets the d d m template finder.
1512             *
1513             * @param ddmTemplateFinder the d d m template finder
1514             */
1515            public void setDDMTemplateFinder(DDMTemplateFinder ddmTemplateFinder) {
1516                    this.ddmTemplateFinder = ddmTemplateFinder;
1517            }
1518    
1519            /**
1520             * Returns the expando value local service.
1521             *
1522             * @return the expando value local service
1523             */
1524            public ExpandoValueLocalService getExpandoValueLocalService() {
1525                    return expandoValueLocalService;
1526            }
1527    
1528            /**
1529             * Sets the expando value local service.
1530             *
1531             * @param expandoValueLocalService the expando value local service
1532             */
1533            public void setExpandoValueLocalService(
1534                    ExpandoValueLocalService expandoValueLocalService) {
1535                    this.expandoValueLocalService = expandoValueLocalService;
1536            }
1537    
1538            /**
1539             * Returns the expando value remote service.
1540             *
1541             * @return the expando value remote service
1542             */
1543            public ExpandoValueService getExpandoValueService() {
1544                    return expandoValueService;
1545            }
1546    
1547            /**
1548             * Sets the expando value remote service.
1549             *
1550             * @param expandoValueService the expando value remote service
1551             */
1552            public void setExpandoValueService(ExpandoValueService expandoValueService) {
1553                    this.expandoValueService = expandoValueService;
1554            }
1555    
1556            /**
1557             * Returns the expando value persistence.
1558             *
1559             * @return the expando value persistence
1560             */
1561            public ExpandoValuePersistence getExpandoValuePersistence() {
1562                    return expandoValuePersistence;
1563            }
1564    
1565            /**
1566             * Sets the expando value persistence.
1567             *
1568             * @param expandoValuePersistence the expando value persistence
1569             */
1570            public void setExpandoValuePersistence(
1571                    ExpandoValuePersistence expandoValuePersistence) {
1572                    this.expandoValuePersistence = expandoValuePersistence;
1573            }
1574    
1575            /**
1576             * Returns the message-boards message local service.
1577             *
1578             * @return the message-boards message local service
1579             */
1580            public MBMessageLocalService getMBMessageLocalService() {
1581                    return mbMessageLocalService;
1582            }
1583    
1584            /**
1585             * Sets the message-boards message local service.
1586             *
1587             * @param mbMessageLocalService the message-boards message local service
1588             */
1589            public void setMBMessageLocalService(
1590                    MBMessageLocalService mbMessageLocalService) {
1591                    this.mbMessageLocalService = mbMessageLocalService;
1592            }
1593    
1594            /**
1595             * Returns the message-boards message remote service.
1596             *
1597             * @return the message-boards message remote service
1598             */
1599            public MBMessageService getMBMessageService() {
1600                    return mbMessageService;
1601            }
1602    
1603            /**
1604             * Sets the message-boards message remote service.
1605             *
1606             * @param mbMessageService the message-boards message remote service
1607             */
1608            public void setMBMessageService(MBMessageService mbMessageService) {
1609                    this.mbMessageService = mbMessageService;
1610            }
1611    
1612            /**
1613             * Returns the message-boards message persistence.
1614             *
1615             * @return the message-boards message persistence
1616             */
1617            public MBMessagePersistence getMBMessagePersistence() {
1618                    return mbMessagePersistence;
1619            }
1620    
1621            /**
1622             * Sets the message-boards message persistence.
1623             *
1624             * @param mbMessagePersistence the message-boards message persistence
1625             */
1626            public void setMBMessagePersistence(
1627                    MBMessagePersistence mbMessagePersistence) {
1628                    this.mbMessagePersistence = mbMessagePersistence;
1629            }
1630    
1631            /**
1632             * Returns the message-boards message finder.
1633             *
1634             * @return the message-boards message finder
1635             */
1636            public MBMessageFinder getMBMessageFinder() {
1637                    return mbMessageFinder;
1638            }
1639    
1640            /**
1641             * Sets the message-boards message finder.
1642             *
1643             * @param mbMessageFinder the message-boards message finder
1644             */
1645            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1646                    this.mbMessageFinder = mbMessageFinder;
1647            }
1648    
1649            /**
1650             * Returns the ratings stats local service.
1651             *
1652             * @return the ratings stats local service
1653             */
1654            public RatingsStatsLocalService getRatingsStatsLocalService() {
1655                    return ratingsStatsLocalService;
1656            }
1657    
1658            /**
1659             * Sets the ratings stats local service.
1660             *
1661             * @param ratingsStatsLocalService the ratings stats local service
1662             */
1663            public void setRatingsStatsLocalService(
1664                    RatingsStatsLocalService ratingsStatsLocalService) {
1665                    this.ratingsStatsLocalService = ratingsStatsLocalService;
1666            }
1667    
1668            /**
1669             * Returns the ratings stats persistence.
1670             *
1671             * @return the ratings stats persistence
1672             */
1673            public RatingsStatsPersistence getRatingsStatsPersistence() {
1674                    return ratingsStatsPersistence;
1675            }
1676    
1677            /**
1678             * Sets the ratings stats persistence.
1679             *
1680             * @param ratingsStatsPersistence the ratings stats persistence
1681             */
1682            public void setRatingsStatsPersistence(
1683                    RatingsStatsPersistence ratingsStatsPersistence) {
1684                    this.ratingsStatsPersistence = ratingsStatsPersistence;
1685            }
1686    
1687            /**
1688             * Returns the ratings stats finder.
1689             *
1690             * @return the ratings stats finder
1691             */
1692            public RatingsStatsFinder getRatingsStatsFinder() {
1693                    return ratingsStatsFinder;
1694            }
1695    
1696            /**
1697             * Sets the ratings stats finder.
1698             *
1699             * @param ratingsStatsFinder the ratings stats finder
1700             */
1701            public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1702                    this.ratingsStatsFinder = ratingsStatsFinder;
1703            }
1704    
1705            /**
1706             * Returns the social activity local service.
1707             *
1708             * @return the social activity local service
1709             */
1710            public SocialActivityLocalService getSocialActivityLocalService() {
1711                    return socialActivityLocalService;
1712            }
1713    
1714            /**
1715             * Sets the social activity local service.
1716             *
1717             * @param socialActivityLocalService the social activity local service
1718             */
1719            public void setSocialActivityLocalService(
1720                    SocialActivityLocalService socialActivityLocalService) {
1721                    this.socialActivityLocalService = socialActivityLocalService;
1722            }
1723    
1724            /**
1725             * Returns the social activity persistence.
1726             *
1727             * @return the social activity persistence
1728             */
1729            public SocialActivityPersistence getSocialActivityPersistence() {
1730                    return socialActivityPersistence;
1731            }
1732    
1733            /**
1734             * Sets the social activity persistence.
1735             *
1736             * @param socialActivityPersistence the social activity persistence
1737             */
1738            public void setSocialActivityPersistence(
1739                    SocialActivityPersistence socialActivityPersistence) {
1740                    this.socialActivityPersistence = socialActivityPersistence;
1741            }
1742    
1743            /**
1744             * Returns the social activity finder.
1745             *
1746             * @return the social activity finder
1747             */
1748            public SocialActivityFinder getSocialActivityFinder() {
1749                    return socialActivityFinder;
1750            }
1751    
1752            /**
1753             * Sets the social activity finder.
1754             *
1755             * @param socialActivityFinder the social activity finder
1756             */
1757            public void setSocialActivityFinder(
1758                    SocialActivityFinder socialActivityFinder) {
1759                    this.socialActivityFinder = socialActivityFinder;
1760            }
1761    
1762            /**
1763             * Returns the social activity counter local service.
1764             *
1765             * @return the social activity counter local service
1766             */
1767            public SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1768                    return socialActivityCounterLocalService;
1769            }
1770    
1771            /**
1772             * Sets the social activity counter local service.
1773             *
1774             * @param socialActivityCounterLocalService the social activity counter local service
1775             */
1776            public void setSocialActivityCounterLocalService(
1777                    SocialActivityCounterLocalService socialActivityCounterLocalService) {
1778                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1779            }
1780    
1781            /**
1782             * Returns the social activity counter persistence.
1783             *
1784             * @return the social activity counter persistence
1785             */
1786            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1787                    return socialActivityCounterPersistence;
1788            }
1789    
1790            /**
1791             * Sets the social activity counter persistence.
1792             *
1793             * @param socialActivityCounterPersistence the social activity counter persistence
1794             */
1795            public void setSocialActivityCounterPersistence(
1796                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
1797                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1798            }
1799    
1800            /**
1801             * Returns the social activity counter finder.
1802             *
1803             * @return the social activity counter finder
1804             */
1805            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1806                    return socialActivityCounterFinder;
1807            }
1808    
1809            /**
1810             * Sets the social activity counter finder.
1811             *
1812             * @param socialActivityCounterFinder the social activity counter finder
1813             */
1814            public void setSocialActivityCounterFinder(
1815                    SocialActivityCounterFinder socialActivityCounterFinder) {
1816                    this.socialActivityCounterFinder = socialActivityCounterFinder;
1817            }
1818    
1819            /**
1820             * Returns the trash entry local service.
1821             *
1822             * @return the trash entry local service
1823             */
1824            public TrashEntryLocalService getTrashEntryLocalService() {
1825                    return trashEntryLocalService;
1826            }
1827    
1828            /**
1829             * Sets the trash entry local service.
1830             *
1831             * @param trashEntryLocalService the trash entry local service
1832             */
1833            public void setTrashEntryLocalService(
1834                    TrashEntryLocalService trashEntryLocalService) {
1835                    this.trashEntryLocalService = trashEntryLocalService;
1836            }
1837    
1838            /**
1839             * Returns the trash entry remote service.
1840             *
1841             * @return the trash entry remote service
1842             */
1843            public TrashEntryService getTrashEntryService() {
1844                    return trashEntryService;
1845            }
1846    
1847            /**
1848             * Sets the trash entry remote service.
1849             *
1850             * @param trashEntryService the trash entry remote service
1851             */
1852            public void setTrashEntryService(TrashEntryService trashEntryService) {
1853                    this.trashEntryService = trashEntryService;
1854            }
1855    
1856            /**
1857             * Returns the trash entry persistence.
1858             *
1859             * @return the trash entry persistence
1860             */
1861            public TrashEntryPersistence getTrashEntryPersistence() {
1862                    return trashEntryPersistence;
1863            }
1864    
1865            /**
1866             * Sets the trash entry persistence.
1867             *
1868             * @param trashEntryPersistence the trash entry persistence
1869             */
1870            public void setTrashEntryPersistence(
1871                    TrashEntryPersistence trashEntryPersistence) {
1872                    this.trashEntryPersistence = trashEntryPersistence;
1873            }
1874    
1875            public void afterPropertiesSet() {
1876            }
1877    
1878            public void destroy() {
1879            }
1880    
1881            /**
1882             * Returns the Spring bean ID for this bean.
1883             *
1884             * @return the Spring bean ID for this bean
1885             */
1886            public String getBeanIdentifier() {
1887                    return _beanIdentifier;
1888            }
1889    
1890            /**
1891             * Sets the Spring bean ID for this bean.
1892             *
1893             * @param beanIdentifier the Spring bean ID for this bean
1894             */
1895            public void setBeanIdentifier(String beanIdentifier) {
1896                    _beanIdentifier = beanIdentifier;
1897            }
1898    
1899            protected Class<?> getModelClass() {
1900                    return JournalArticle.class;
1901            }
1902    
1903            protected String getModelClassName() {
1904                    return JournalArticle.class.getName();
1905            }
1906    
1907            /**
1908             * Performs an SQL query.
1909             *
1910             * @param sql the sql query
1911             */
1912            protected void runSQL(String sql) throws SystemException {
1913                    try {
1914                            DataSource dataSource = journalArticlePersistence.getDataSource();
1915    
1916                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1917                                            sql, new int[0]);
1918    
1919                            sqlUpdate.update();
1920                    }
1921                    catch (Exception e) {
1922                            throw new SystemException(e);
1923                    }
1924            }
1925    
1926            @BeanReference(type = JournalArticleLocalService.class)
1927            protected JournalArticleLocalService journalArticleLocalService;
1928            @BeanReference(type = JournalArticleService.class)
1929            protected JournalArticleService journalArticleService;
1930            @BeanReference(type = JournalArticlePersistence.class)
1931            protected JournalArticlePersistence journalArticlePersistence;
1932            @BeanReference(type = JournalArticleFinder.class)
1933            protected JournalArticleFinder journalArticleFinder;
1934            @BeanReference(type = JournalArticleImageLocalService.class)
1935            protected JournalArticleImageLocalService journalArticleImageLocalService;
1936            @BeanReference(type = JournalArticleImagePersistence.class)
1937            protected JournalArticleImagePersistence journalArticleImagePersistence;
1938            @BeanReference(type = JournalArticleResourceLocalService.class)
1939            protected JournalArticleResourceLocalService journalArticleResourceLocalService;
1940            @BeanReference(type = JournalArticleResourcePersistence.class)
1941            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
1942            @BeanReference(type = JournalContentSearchLocalService.class)
1943            protected JournalContentSearchLocalService journalContentSearchLocalService;
1944            @BeanReference(type = JournalContentSearchPersistence.class)
1945            protected JournalContentSearchPersistence journalContentSearchPersistence;
1946            @BeanReference(type = JournalFeedLocalService.class)
1947            protected JournalFeedLocalService journalFeedLocalService;
1948            @BeanReference(type = JournalFeedService.class)
1949            protected JournalFeedService journalFeedService;
1950            @BeanReference(type = JournalFeedPersistence.class)
1951            protected JournalFeedPersistence journalFeedPersistence;
1952            @BeanReference(type = JournalFeedFinder.class)
1953            protected JournalFeedFinder journalFeedFinder;
1954            @BeanReference(type = JournalFolderLocalService.class)
1955            protected JournalFolderLocalService journalFolderLocalService;
1956            @BeanReference(type = JournalFolderService.class)
1957            protected JournalFolderService journalFolderService;
1958            @BeanReference(type = JournalFolderPersistence.class)
1959            protected JournalFolderPersistence journalFolderPersistence;
1960            @BeanReference(type = JournalFolderFinder.class)
1961            protected JournalFolderFinder journalFolderFinder;
1962            @BeanReference(type = JournalStructureLocalService.class)
1963            protected JournalStructureLocalService journalStructureLocalService;
1964            @BeanReference(type = JournalStructureService.class)
1965            protected JournalStructureService journalStructureService;
1966            @BeanReference(type = JournalStructurePersistence.class)
1967            protected JournalStructurePersistence journalStructurePersistence;
1968            @BeanReference(type = JournalStructureFinder.class)
1969            protected JournalStructureFinder journalStructureFinder;
1970            @BeanReference(type = JournalTemplateLocalService.class)
1971            protected JournalTemplateLocalService journalTemplateLocalService;
1972            @BeanReference(type = JournalTemplateService.class)
1973            protected JournalTemplateService journalTemplateService;
1974            @BeanReference(type = JournalTemplatePersistence.class)
1975            protected JournalTemplatePersistence journalTemplatePersistence;
1976            @BeanReference(type = JournalTemplateFinder.class)
1977            protected JournalTemplateFinder journalTemplateFinder;
1978            @BeanReference(type = CounterLocalService.class)
1979            protected CounterLocalService counterLocalService;
1980            @BeanReference(type = MailService.class)
1981            protected MailService mailService;
1982            @BeanReference(type = CompanyLocalService.class)
1983            protected CompanyLocalService companyLocalService;
1984            @BeanReference(type = CompanyService.class)
1985            protected CompanyService companyService;
1986            @BeanReference(type = CompanyPersistence.class)
1987            protected CompanyPersistence companyPersistence;
1988            @BeanReference(type = GroupLocalService.class)
1989            protected GroupLocalService groupLocalService;
1990            @BeanReference(type = GroupService.class)
1991            protected GroupService groupService;
1992            @BeanReference(type = GroupPersistence.class)
1993            protected GroupPersistence groupPersistence;
1994            @BeanReference(type = GroupFinder.class)
1995            protected GroupFinder groupFinder;
1996            @BeanReference(type = ImageLocalService.class)
1997            protected ImageLocalService imageLocalService;
1998            @BeanReference(type = ImageService.class)
1999            protected ImageService imageService;
2000            @BeanReference(type = ImagePersistence.class)
2001            protected ImagePersistence imagePersistence;
2002            @BeanReference(type = PortletPreferencesLocalService.class)
2003            protected PortletPreferencesLocalService portletPreferencesLocalService;
2004            @BeanReference(type = PortletPreferencesService.class)
2005            protected PortletPreferencesService portletPreferencesService;
2006            @BeanReference(type = PortletPreferencesPersistence.class)
2007            protected PortletPreferencesPersistence portletPreferencesPersistence;
2008            @BeanReference(type = PortletPreferencesFinder.class)
2009            protected PortletPreferencesFinder portletPreferencesFinder;
2010            @BeanReference(type = ResourceLocalService.class)
2011            protected ResourceLocalService resourceLocalService;
2012            @BeanReference(type = SubscriptionLocalService.class)
2013            protected SubscriptionLocalService subscriptionLocalService;
2014            @BeanReference(type = SubscriptionPersistence.class)
2015            protected SubscriptionPersistence subscriptionPersistence;
2016            @BeanReference(type = UserLocalService.class)
2017            protected UserLocalService userLocalService;
2018            @BeanReference(type = UserService.class)
2019            protected UserService userService;
2020            @BeanReference(type = UserPersistence.class)
2021            protected UserPersistence userPersistence;
2022            @BeanReference(type = UserFinder.class)
2023            protected UserFinder userFinder;
2024            @BeanReference(type = WorkflowInstanceLinkLocalService.class)
2025            protected WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2026            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2027            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2028            @BeanReference(type = AssetCategoryLocalService.class)
2029            protected AssetCategoryLocalService assetCategoryLocalService;
2030            @BeanReference(type = AssetCategoryService.class)
2031            protected AssetCategoryService assetCategoryService;
2032            @BeanReference(type = AssetCategoryPersistence.class)
2033            protected AssetCategoryPersistence assetCategoryPersistence;
2034            @BeanReference(type = AssetCategoryFinder.class)
2035            protected AssetCategoryFinder assetCategoryFinder;
2036            @BeanReference(type = AssetEntryLocalService.class)
2037            protected AssetEntryLocalService assetEntryLocalService;
2038            @BeanReference(type = AssetEntryService.class)
2039            protected AssetEntryService assetEntryService;
2040            @BeanReference(type = AssetEntryPersistence.class)
2041            protected AssetEntryPersistence assetEntryPersistence;
2042            @BeanReference(type = AssetEntryFinder.class)
2043            protected AssetEntryFinder assetEntryFinder;
2044            @BeanReference(type = AssetLinkLocalService.class)
2045            protected AssetLinkLocalService assetLinkLocalService;
2046            @BeanReference(type = AssetLinkPersistence.class)
2047            protected AssetLinkPersistence assetLinkPersistence;
2048            @BeanReference(type = AssetLinkFinder.class)
2049            protected AssetLinkFinder assetLinkFinder;
2050            @BeanReference(type = AssetTagLocalService.class)
2051            protected AssetTagLocalService assetTagLocalService;
2052            @BeanReference(type = AssetTagService.class)
2053            protected AssetTagService assetTagService;
2054            @BeanReference(type = AssetTagPersistence.class)
2055            protected AssetTagPersistence assetTagPersistence;
2056            @BeanReference(type = AssetTagFinder.class)
2057            protected AssetTagFinder assetTagFinder;
2058            @BeanReference(type = DDMStructureLocalService.class)
2059            protected DDMStructureLocalService ddmStructureLocalService;
2060            @BeanReference(type = DDMStructureService.class)
2061            protected DDMStructureService ddmStructureService;
2062            @BeanReference(type = DDMStructurePersistence.class)
2063            protected DDMStructurePersistence ddmStructurePersistence;
2064            @BeanReference(type = DDMStructureFinder.class)
2065            protected DDMStructureFinder ddmStructureFinder;
2066            @BeanReference(type = DDMTemplateLocalService.class)
2067            protected DDMTemplateLocalService ddmTemplateLocalService;
2068            @BeanReference(type = DDMTemplateService.class)
2069            protected DDMTemplateService ddmTemplateService;
2070            @BeanReference(type = DDMTemplatePersistence.class)
2071            protected DDMTemplatePersistence ddmTemplatePersistence;
2072            @BeanReference(type = DDMTemplateFinder.class)
2073            protected DDMTemplateFinder ddmTemplateFinder;
2074            @BeanReference(type = ExpandoValueLocalService.class)
2075            protected ExpandoValueLocalService expandoValueLocalService;
2076            @BeanReference(type = ExpandoValueService.class)
2077            protected ExpandoValueService expandoValueService;
2078            @BeanReference(type = ExpandoValuePersistence.class)
2079            protected ExpandoValuePersistence expandoValuePersistence;
2080            @BeanReference(type = MBMessageLocalService.class)
2081            protected MBMessageLocalService mbMessageLocalService;
2082            @BeanReference(type = MBMessageService.class)
2083            protected MBMessageService mbMessageService;
2084            @BeanReference(type = MBMessagePersistence.class)
2085            protected MBMessagePersistence mbMessagePersistence;
2086            @BeanReference(type = MBMessageFinder.class)
2087            protected MBMessageFinder mbMessageFinder;
2088            @BeanReference(type = RatingsStatsLocalService.class)
2089            protected RatingsStatsLocalService ratingsStatsLocalService;
2090            @BeanReference(type = RatingsStatsPersistence.class)
2091            protected RatingsStatsPersistence ratingsStatsPersistence;
2092            @BeanReference(type = RatingsStatsFinder.class)
2093            protected RatingsStatsFinder ratingsStatsFinder;
2094            @BeanReference(type = SocialActivityLocalService.class)
2095            protected SocialActivityLocalService socialActivityLocalService;
2096            @BeanReference(type = SocialActivityPersistence.class)
2097            protected SocialActivityPersistence socialActivityPersistence;
2098            @BeanReference(type = SocialActivityFinder.class)
2099            protected SocialActivityFinder socialActivityFinder;
2100            @BeanReference(type = SocialActivityCounterLocalService.class)
2101            protected SocialActivityCounterLocalService socialActivityCounterLocalService;
2102            @BeanReference(type = SocialActivityCounterPersistence.class)
2103            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
2104            @BeanReference(type = SocialActivityCounterFinder.class)
2105            protected SocialActivityCounterFinder socialActivityCounterFinder;
2106            @BeanReference(type = TrashEntryLocalService.class)
2107            protected TrashEntryLocalService trashEntryLocalService;
2108            @BeanReference(type = TrashEntryService.class)
2109            protected TrashEntryService trashEntryService;
2110            @BeanReference(type = TrashEntryPersistence.class)
2111            protected TrashEntryPersistence trashEntryPersistence;
2112            private String _beanIdentifier;
2113    }