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