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