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