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