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