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