001    /**
002     * Copyright (c) 2000-2010 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.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.annotation.BeanReference;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
022    import com.liferay.portal.kernel.exception.SystemException;
023    import com.liferay.portal.service.CompanyLocalService;
024    import com.liferay.portal.service.CompanyService;
025    import com.liferay.portal.service.GroupLocalService;
026    import com.liferay.portal.service.GroupService;
027    import com.liferay.portal.service.ResourceLocalService;
028    import com.liferay.portal.service.ResourceService;
029    import com.liferay.portal.service.UserLocalService;
030    import com.liferay.portal.service.UserService;
031    import com.liferay.portal.service.base.PrincipalBean;
032    import com.liferay.portal.service.persistence.CompanyPersistence;
033    import com.liferay.portal.service.persistence.GroupFinder;
034    import com.liferay.portal.service.persistence.GroupPersistence;
035    import com.liferay.portal.service.persistence.ResourceFinder;
036    import com.liferay.portal.service.persistence.ResourcePersistence;
037    import com.liferay.portal.service.persistence.UserFinder;
038    import com.liferay.portal.service.persistence.UserPersistence;
039    
040    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
041    import com.liferay.portlet.asset.service.AssetCategoryPropertyLocalService;
042    import com.liferay.portlet.asset.service.AssetCategoryPropertyService;
043    import com.liferay.portlet.asset.service.AssetCategoryService;
044    import com.liferay.portlet.asset.service.AssetEntryLocalService;
045    import com.liferay.portlet.asset.service.AssetEntryService;
046    import com.liferay.portlet.asset.service.AssetLinkLocalService;
047    import com.liferay.portlet.asset.service.AssetTagLocalService;
048    import com.liferay.portlet.asset.service.AssetTagPropertyLocalService;
049    import com.liferay.portlet.asset.service.AssetTagPropertyService;
050    import com.liferay.portlet.asset.service.AssetTagService;
051    import com.liferay.portlet.asset.service.AssetTagStatsLocalService;
052    import com.liferay.portlet.asset.service.AssetVocabularyLocalService;
053    import com.liferay.portlet.asset.service.AssetVocabularyService;
054    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
055    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
056    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyFinder;
057    import com.liferay.portlet.asset.service.persistence.AssetCategoryPropertyPersistence;
058    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
059    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
060    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
061    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
062    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
063    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyFinder;
064    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyKeyFinder;
065    import com.liferay.portlet.asset.service.persistence.AssetTagPropertyPersistence;
066    import com.liferay.portlet.asset.service.persistence.AssetTagStatsPersistence;
067    import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
068    import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
069    import com.liferay.portlet.blogs.service.BlogsEntryService;
070    import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
071    import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
072    import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
073    import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
074    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
075    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
076    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
077    import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
078    import com.liferay.portlet.documentlibrary.service.DLFolderLocalService;
079    import com.liferay.portlet.documentlibrary.service.DLFolderService;
080    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
081    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
082    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
083    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
084    import com.liferay.portlet.journal.service.JournalArticleLocalService;
085    import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
086    import com.liferay.portlet.journal.service.JournalArticleService;
087    import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
088    import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
089    import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
090    import com.liferay.portlet.messageboards.service.MBMessageLocalService;
091    import com.liferay.portlet.messageboards.service.MBMessageService;
092    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
093    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
094    import com.liferay.portlet.social.service.SocialEquityLogLocalService;
095    import com.liferay.portlet.social.service.persistence.SocialEquityLogPersistence;
096    import com.liferay.portlet.wiki.service.WikiPageLocalService;
097    import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
098    import com.liferay.portlet.wiki.service.WikiPageService;
099    import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
100    import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
101    import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
102    
103    import javax.sql.DataSource;
104    
105    /**
106     * @author Brian Wing Shun Chan
107     */
108    public abstract class AssetEntryServiceBaseImpl extends PrincipalBean
109            implements AssetEntryService {
110            public AssetCategoryLocalService getAssetCategoryLocalService() {
111                    return assetCategoryLocalService;
112            }
113    
114            public void setAssetCategoryLocalService(
115                    AssetCategoryLocalService assetCategoryLocalService) {
116                    this.assetCategoryLocalService = assetCategoryLocalService;
117            }
118    
119            public AssetCategoryService getAssetCategoryService() {
120                    return assetCategoryService;
121            }
122    
123            public void setAssetCategoryService(
124                    AssetCategoryService assetCategoryService) {
125                    this.assetCategoryService = assetCategoryService;
126            }
127    
128            public AssetCategoryPersistence getAssetCategoryPersistence() {
129                    return assetCategoryPersistence;
130            }
131    
132            public void setAssetCategoryPersistence(
133                    AssetCategoryPersistence assetCategoryPersistence) {
134                    this.assetCategoryPersistence = assetCategoryPersistence;
135            }
136    
137            public AssetCategoryFinder getAssetCategoryFinder() {
138                    return assetCategoryFinder;
139            }
140    
141            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
142                    this.assetCategoryFinder = assetCategoryFinder;
143            }
144    
145            public AssetCategoryPropertyLocalService getAssetCategoryPropertyLocalService() {
146                    return assetCategoryPropertyLocalService;
147            }
148    
149            public void setAssetCategoryPropertyLocalService(
150                    AssetCategoryPropertyLocalService assetCategoryPropertyLocalService) {
151                    this.assetCategoryPropertyLocalService = assetCategoryPropertyLocalService;
152            }
153    
154            public AssetCategoryPropertyService getAssetCategoryPropertyService() {
155                    return assetCategoryPropertyService;
156            }
157    
158            public void setAssetCategoryPropertyService(
159                    AssetCategoryPropertyService assetCategoryPropertyService) {
160                    this.assetCategoryPropertyService = assetCategoryPropertyService;
161            }
162    
163            public AssetCategoryPropertyPersistence getAssetCategoryPropertyPersistence() {
164                    return assetCategoryPropertyPersistence;
165            }
166    
167            public void setAssetCategoryPropertyPersistence(
168                    AssetCategoryPropertyPersistence assetCategoryPropertyPersistence) {
169                    this.assetCategoryPropertyPersistence = assetCategoryPropertyPersistence;
170            }
171    
172            public AssetCategoryPropertyFinder getAssetCategoryPropertyFinder() {
173                    return assetCategoryPropertyFinder;
174            }
175    
176            public void setAssetCategoryPropertyFinder(
177                    AssetCategoryPropertyFinder assetCategoryPropertyFinder) {
178                    this.assetCategoryPropertyFinder = assetCategoryPropertyFinder;
179            }
180    
181            public AssetEntryLocalService getAssetEntryLocalService() {
182                    return assetEntryLocalService;
183            }
184    
185            public void setAssetEntryLocalService(
186                    AssetEntryLocalService assetEntryLocalService) {
187                    this.assetEntryLocalService = assetEntryLocalService;
188            }
189    
190            public AssetEntryService getAssetEntryService() {
191                    return assetEntryService;
192            }
193    
194            public void setAssetEntryService(AssetEntryService assetEntryService) {
195                    this.assetEntryService = assetEntryService;
196            }
197    
198            public AssetEntryPersistence getAssetEntryPersistence() {
199                    return assetEntryPersistence;
200            }
201    
202            public void setAssetEntryPersistence(
203                    AssetEntryPersistence assetEntryPersistence) {
204                    this.assetEntryPersistence = assetEntryPersistence;
205            }
206    
207            public AssetEntryFinder getAssetEntryFinder() {
208                    return assetEntryFinder;
209            }
210    
211            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
212                    this.assetEntryFinder = assetEntryFinder;
213            }
214    
215            public AssetLinkLocalService getAssetLinkLocalService() {
216                    return assetLinkLocalService;
217            }
218    
219            public void setAssetLinkLocalService(
220                    AssetLinkLocalService assetLinkLocalService) {
221                    this.assetLinkLocalService = assetLinkLocalService;
222            }
223    
224            public AssetLinkPersistence getAssetLinkPersistence() {
225                    return assetLinkPersistence;
226            }
227    
228            public void setAssetLinkPersistence(
229                    AssetLinkPersistence assetLinkPersistence) {
230                    this.assetLinkPersistence = assetLinkPersistence;
231            }
232    
233            public AssetTagLocalService getAssetTagLocalService() {
234                    return assetTagLocalService;
235            }
236    
237            public void setAssetTagLocalService(
238                    AssetTagLocalService assetTagLocalService) {
239                    this.assetTagLocalService = assetTagLocalService;
240            }
241    
242            public AssetTagService getAssetTagService() {
243                    return assetTagService;
244            }
245    
246            public void setAssetTagService(AssetTagService assetTagService) {
247                    this.assetTagService = assetTagService;
248            }
249    
250            public AssetTagPersistence getAssetTagPersistence() {
251                    return assetTagPersistence;
252            }
253    
254            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
255                    this.assetTagPersistence = assetTagPersistence;
256            }
257    
258            public AssetTagFinder getAssetTagFinder() {
259                    return assetTagFinder;
260            }
261    
262            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
263                    this.assetTagFinder = assetTagFinder;
264            }
265    
266            public AssetTagPropertyLocalService getAssetTagPropertyLocalService() {
267                    return assetTagPropertyLocalService;
268            }
269    
270            public void setAssetTagPropertyLocalService(
271                    AssetTagPropertyLocalService assetTagPropertyLocalService) {
272                    this.assetTagPropertyLocalService = assetTagPropertyLocalService;
273            }
274    
275            public AssetTagPropertyService getAssetTagPropertyService() {
276                    return assetTagPropertyService;
277            }
278    
279            public void setAssetTagPropertyService(
280                    AssetTagPropertyService assetTagPropertyService) {
281                    this.assetTagPropertyService = assetTagPropertyService;
282            }
283    
284            public AssetTagPropertyPersistence getAssetTagPropertyPersistence() {
285                    return assetTagPropertyPersistence;
286            }
287    
288            public void setAssetTagPropertyPersistence(
289                    AssetTagPropertyPersistence assetTagPropertyPersistence) {
290                    this.assetTagPropertyPersistence = assetTagPropertyPersistence;
291            }
292    
293            public AssetTagPropertyFinder getAssetTagPropertyFinder() {
294                    return assetTagPropertyFinder;
295            }
296    
297            public void setAssetTagPropertyFinder(
298                    AssetTagPropertyFinder assetTagPropertyFinder) {
299                    this.assetTagPropertyFinder = assetTagPropertyFinder;
300            }
301    
302            public AssetTagPropertyKeyFinder getAssetTagPropertyKeyFinder() {
303                    return assetTagPropertyKeyFinder;
304            }
305    
306            public void setAssetTagPropertyKeyFinder(
307                    AssetTagPropertyKeyFinder assetTagPropertyKeyFinder) {
308                    this.assetTagPropertyKeyFinder = assetTagPropertyKeyFinder;
309            }
310    
311            public AssetTagStatsLocalService getAssetTagStatsLocalService() {
312                    return assetTagStatsLocalService;
313            }
314    
315            public void setAssetTagStatsLocalService(
316                    AssetTagStatsLocalService assetTagStatsLocalService) {
317                    this.assetTagStatsLocalService = assetTagStatsLocalService;
318            }
319    
320            public AssetTagStatsPersistence getAssetTagStatsPersistence() {
321                    return assetTagStatsPersistence;
322            }
323    
324            public void setAssetTagStatsPersistence(
325                    AssetTagStatsPersistence assetTagStatsPersistence) {
326                    this.assetTagStatsPersistence = assetTagStatsPersistence;
327            }
328    
329            public AssetVocabularyLocalService getAssetVocabularyLocalService() {
330                    return assetVocabularyLocalService;
331            }
332    
333            public void setAssetVocabularyLocalService(
334                    AssetVocabularyLocalService assetVocabularyLocalService) {
335                    this.assetVocabularyLocalService = assetVocabularyLocalService;
336            }
337    
338            public AssetVocabularyService getAssetVocabularyService() {
339                    return assetVocabularyService;
340            }
341    
342            public void setAssetVocabularyService(
343                    AssetVocabularyService assetVocabularyService) {
344                    this.assetVocabularyService = assetVocabularyService;
345            }
346    
347            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
348                    return assetVocabularyPersistence;
349            }
350    
351            public void setAssetVocabularyPersistence(
352                    AssetVocabularyPersistence assetVocabularyPersistence) {
353                    this.assetVocabularyPersistence = assetVocabularyPersistence;
354            }
355    
356            public CounterLocalService getCounterLocalService() {
357                    return counterLocalService;
358            }
359    
360            public void setCounterLocalService(CounterLocalService counterLocalService) {
361                    this.counterLocalService = counterLocalService;
362            }
363    
364            public CompanyLocalService getCompanyLocalService() {
365                    return companyLocalService;
366            }
367    
368            public void setCompanyLocalService(CompanyLocalService companyLocalService) {
369                    this.companyLocalService = companyLocalService;
370            }
371    
372            public CompanyService getCompanyService() {
373                    return companyService;
374            }
375    
376            public void setCompanyService(CompanyService companyService) {
377                    this.companyService = companyService;
378            }
379    
380            public CompanyPersistence getCompanyPersistence() {
381                    return companyPersistence;
382            }
383    
384            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
385                    this.companyPersistence = companyPersistence;
386            }
387    
388            public GroupLocalService getGroupLocalService() {
389                    return groupLocalService;
390            }
391    
392            public void setGroupLocalService(GroupLocalService groupLocalService) {
393                    this.groupLocalService = groupLocalService;
394            }
395    
396            public GroupService getGroupService() {
397                    return groupService;
398            }
399    
400            public void setGroupService(GroupService groupService) {
401                    this.groupService = groupService;
402            }
403    
404            public GroupPersistence getGroupPersistence() {
405                    return groupPersistence;
406            }
407    
408            public void setGroupPersistence(GroupPersistence groupPersistence) {
409                    this.groupPersistence = groupPersistence;
410            }
411    
412            public GroupFinder getGroupFinder() {
413                    return groupFinder;
414            }
415    
416            public void setGroupFinder(GroupFinder groupFinder) {
417                    this.groupFinder = groupFinder;
418            }
419    
420            public ResourceLocalService getResourceLocalService() {
421                    return resourceLocalService;
422            }
423    
424            public void setResourceLocalService(
425                    ResourceLocalService resourceLocalService) {
426                    this.resourceLocalService = resourceLocalService;
427            }
428    
429            public ResourceService getResourceService() {
430                    return resourceService;
431            }
432    
433            public void setResourceService(ResourceService resourceService) {
434                    this.resourceService = resourceService;
435            }
436    
437            public ResourcePersistence getResourcePersistence() {
438                    return resourcePersistence;
439            }
440    
441            public void setResourcePersistence(ResourcePersistence resourcePersistence) {
442                    this.resourcePersistence = resourcePersistence;
443            }
444    
445            public ResourceFinder getResourceFinder() {
446                    return resourceFinder;
447            }
448    
449            public void setResourceFinder(ResourceFinder resourceFinder) {
450                    this.resourceFinder = resourceFinder;
451            }
452    
453            public UserLocalService getUserLocalService() {
454                    return userLocalService;
455            }
456    
457            public void setUserLocalService(UserLocalService userLocalService) {
458                    this.userLocalService = userLocalService;
459            }
460    
461            public UserService getUserService() {
462                    return userService;
463            }
464    
465            public void setUserService(UserService userService) {
466                    this.userService = userService;
467            }
468    
469            public UserPersistence getUserPersistence() {
470                    return userPersistence;
471            }
472    
473            public void setUserPersistence(UserPersistence userPersistence) {
474                    this.userPersistence = userPersistence;
475            }
476    
477            public UserFinder getUserFinder() {
478                    return userFinder;
479            }
480    
481            public void setUserFinder(UserFinder userFinder) {
482                    this.userFinder = userFinder;
483            }
484    
485            public BlogsEntryLocalService getBlogsEntryLocalService() {
486                    return blogsEntryLocalService;
487            }
488    
489            public void setBlogsEntryLocalService(
490                    BlogsEntryLocalService blogsEntryLocalService) {
491                    this.blogsEntryLocalService = blogsEntryLocalService;
492            }
493    
494            public BlogsEntryService getBlogsEntryService() {
495                    return blogsEntryService;
496            }
497    
498            public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
499                    this.blogsEntryService = blogsEntryService;
500            }
501    
502            public BlogsEntryPersistence getBlogsEntryPersistence() {
503                    return blogsEntryPersistence;
504            }
505    
506            public void setBlogsEntryPersistence(
507                    BlogsEntryPersistence blogsEntryPersistence) {
508                    this.blogsEntryPersistence = blogsEntryPersistence;
509            }
510    
511            public BlogsEntryFinder getBlogsEntryFinder() {
512                    return blogsEntryFinder;
513            }
514    
515            public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
516                    this.blogsEntryFinder = blogsEntryFinder;
517            }
518    
519            public BookmarksEntryLocalService getBookmarksEntryLocalService() {
520                    return bookmarksEntryLocalService;
521            }
522    
523            public void setBookmarksEntryLocalService(
524                    BookmarksEntryLocalService bookmarksEntryLocalService) {
525                    this.bookmarksEntryLocalService = bookmarksEntryLocalService;
526            }
527    
528            public BookmarksEntryService getBookmarksEntryService() {
529                    return bookmarksEntryService;
530            }
531    
532            public void setBookmarksEntryService(
533                    BookmarksEntryService bookmarksEntryService) {
534                    this.bookmarksEntryService = bookmarksEntryService;
535            }
536    
537            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
538                    return bookmarksEntryPersistence;
539            }
540    
541            public void setBookmarksEntryPersistence(
542                    BookmarksEntryPersistence bookmarksEntryPersistence) {
543                    this.bookmarksEntryPersistence = bookmarksEntryPersistence;
544            }
545    
546            public BookmarksEntryFinder getBookmarksEntryFinder() {
547                    return bookmarksEntryFinder;
548            }
549    
550            public void setBookmarksEntryFinder(
551                    BookmarksEntryFinder bookmarksEntryFinder) {
552                    this.bookmarksEntryFinder = bookmarksEntryFinder;
553            }
554    
555            public DLFileEntryLocalService getDLFileEntryLocalService() {
556                    return dlFileEntryLocalService;
557            }
558    
559            public void setDLFileEntryLocalService(
560                    DLFileEntryLocalService dlFileEntryLocalService) {
561                    this.dlFileEntryLocalService = dlFileEntryLocalService;
562            }
563    
564            public DLFileEntryService getDLFileEntryService() {
565                    return dlFileEntryService;
566            }
567    
568            public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
569                    this.dlFileEntryService = dlFileEntryService;
570            }
571    
572            public DLFileEntryPersistence getDLFileEntryPersistence() {
573                    return dlFileEntryPersistence;
574            }
575    
576            public void setDLFileEntryPersistence(
577                    DLFileEntryPersistence dlFileEntryPersistence) {
578                    this.dlFileEntryPersistence = dlFileEntryPersistence;
579            }
580    
581            public DLFileEntryFinder getDLFileEntryFinder() {
582                    return dlFileEntryFinder;
583            }
584    
585            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
586                    this.dlFileEntryFinder = dlFileEntryFinder;
587            }
588    
589            public DLFolderLocalService getDLFolderLocalService() {
590                    return dlFolderLocalService;
591            }
592    
593            public void setDLFolderLocalService(
594                    DLFolderLocalService dlFolderLocalService) {
595                    this.dlFolderLocalService = dlFolderLocalService;
596            }
597    
598            public DLFolderService getDLFolderService() {
599                    return dlFolderService;
600            }
601    
602            public void setDLFolderService(DLFolderService dlFolderService) {
603                    this.dlFolderService = dlFolderService;
604            }
605    
606            public DLFolderPersistence getDLFolderPersistence() {
607                    return dlFolderPersistence;
608            }
609    
610            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
611                    this.dlFolderPersistence = dlFolderPersistence;
612            }
613    
614            public DLFolderFinder getDLFolderFinder() {
615                    return dlFolderFinder;
616            }
617    
618            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
619                    this.dlFolderFinder = dlFolderFinder;
620            }
621    
622            public JournalArticleLocalService getJournalArticleLocalService() {
623                    return journalArticleLocalService;
624            }
625    
626            public void setJournalArticleLocalService(
627                    JournalArticleLocalService journalArticleLocalService) {
628                    this.journalArticleLocalService = journalArticleLocalService;
629            }
630    
631            public JournalArticleService getJournalArticleService() {
632                    return journalArticleService;
633            }
634    
635            public void setJournalArticleService(
636                    JournalArticleService journalArticleService) {
637                    this.journalArticleService = journalArticleService;
638            }
639    
640            public JournalArticlePersistence getJournalArticlePersistence() {
641                    return journalArticlePersistence;
642            }
643    
644            public void setJournalArticlePersistence(
645                    JournalArticlePersistence journalArticlePersistence) {
646                    this.journalArticlePersistence = journalArticlePersistence;
647            }
648    
649            public JournalArticleFinder getJournalArticleFinder() {
650                    return journalArticleFinder;
651            }
652    
653            public void setJournalArticleFinder(
654                    JournalArticleFinder journalArticleFinder) {
655                    this.journalArticleFinder = journalArticleFinder;
656            }
657    
658            public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
659                    return journalArticleResourceLocalService;
660            }
661    
662            public void setJournalArticleResourceLocalService(
663                    JournalArticleResourceLocalService journalArticleResourceLocalService) {
664                    this.journalArticleResourceLocalService = journalArticleResourceLocalService;
665            }
666    
667            public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
668                    return journalArticleResourcePersistence;
669            }
670    
671            public void setJournalArticleResourcePersistence(
672                    JournalArticleResourcePersistence journalArticleResourcePersistence) {
673                    this.journalArticleResourcePersistence = journalArticleResourcePersistence;
674            }
675    
676            public MBMessageLocalService getMBMessageLocalService() {
677                    return mbMessageLocalService;
678            }
679    
680            public void setMBMessageLocalService(
681                    MBMessageLocalService mbMessageLocalService) {
682                    this.mbMessageLocalService = mbMessageLocalService;
683            }
684    
685            public MBMessageService getMBMessageService() {
686                    return mbMessageService;
687            }
688    
689            public void setMBMessageService(MBMessageService mbMessageService) {
690                    this.mbMessageService = mbMessageService;
691            }
692    
693            public MBMessagePersistence getMBMessagePersistence() {
694                    return mbMessagePersistence;
695            }
696    
697            public void setMBMessagePersistence(
698                    MBMessagePersistence mbMessagePersistence) {
699                    this.mbMessagePersistence = mbMessagePersistence;
700            }
701    
702            public MBMessageFinder getMBMessageFinder() {
703                    return mbMessageFinder;
704            }
705    
706            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
707                    this.mbMessageFinder = mbMessageFinder;
708            }
709    
710            public SocialEquityLogLocalService getSocialEquityLogLocalService() {
711                    return socialEquityLogLocalService;
712            }
713    
714            public void setSocialEquityLogLocalService(
715                    SocialEquityLogLocalService socialEquityLogLocalService) {
716                    this.socialEquityLogLocalService = socialEquityLogLocalService;
717            }
718    
719            public SocialEquityLogPersistence getSocialEquityLogPersistence() {
720                    return socialEquityLogPersistence;
721            }
722    
723            public void setSocialEquityLogPersistence(
724                    SocialEquityLogPersistence socialEquityLogPersistence) {
725                    this.socialEquityLogPersistence = socialEquityLogPersistence;
726            }
727    
728            public WikiPageLocalService getWikiPageLocalService() {
729                    return wikiPageLocalService;
730            }
731    
732            public void setWikiPageLocalService(
733                    WikiPageLocalService wikiPageLocalService) {
734                    this.wikiPageLocalService = wikiPageLocalService;
735            }
736    
737            public WikiPageService getWikiPageService() {
738                    return wikiPageService;
739            }
740    
741            public void setWikiPageService(WikiPageService wikiPageService) {
742                    this.wikiPageService = wikiPageService;
743            }
744    
745            public WikiPagePersistence getWikiPagePersistence() {
746                    return wikiPagePersistence;
747            }
748    
749            public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
750                    this.wikiPagePersistence = wikiPagePersistence;
751            }
752    
753            public WikiPageFinder getWikiPageFinder() {
754                    return wikiPageFinder;
755            }
756    
757            public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
758                    this.wikiPageFinder = wikiPageFinder;
759            }
760    
761            public WikiPageResourceLocalService getWikiPageResourceLocalService() {
762                    return wikiPageResourceLocalService;
763            }
764    
765            public void setWikiPageResourceLocalService(
766                    WikiPageResourceLocalService wikiPageResourceLocalService) {
767                    this.wikiPageResourceLocalService = wikiPageResourceLocalService;
768            }
769    
770            public WikiPageResourcePersistence getWikiPageResourcePersistence() {
771                    return wikiPageResourcePersistence;
772            }
773    
774            public void setWikiPageResourcePersistence(
775                    WikiPageResourcePersistence wikiPageResourcePersistence) {
776                    this.wikiPageResourcePersistence = wikiPageResourcePersistence;
777            }
778    
779            protected void runSQL(String sql) throws SystemException {
780                    try {
781                            DataSource dataSource = assetEntryPersistence.getDataSource();
782    
783                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
784                                            sql, new int[0]);
785    
786                            sqlUpdate.update();
787                    }
788                    catch (Exception e) {
789                            throw new SystemException(e);
790                    }
791            }
792    
793            @BeanReference(type = AssetCategoryLocalService.class)
794            protected AssetCategoryLocalService assetCategoryLocalService;
795            @BeanReference(type = AssetCategoryService.class)
796            protected AssetCategoryService assetCategoryService;
797            @BeanReference(type = AssetCategoryPersistence.class)
798            protected AssetCategoryPersistence assetCategoryPersistence;
799            @BeanReference(type = AssetCategoryFinder.class)
800            protected AssetCategoryFinder assetCategoryFinder;
801            @BeanReference(type = AssetCategoryPropertyLocalService.class)
802            protected AssetCategoryPropertyLocalService assetCategoryPropertyLocalService;
803            @BeanReference(type = AssetCategoryPropertyService.class)
804            protected AssetCategoryPropertyService assetCategoryPropertyService;
805            @BeanReference(type = AssetCategoryPropertyPersistence.class)
806            protected AssetCategoryPropertyPersistence assetCategoryPropertyPersistence;
807            @BeanReference(type = AssetCategoryPropertyFinder.class)
808            protected AssetCategoryPropertyFinder assetCategoryPropertyFinder;
809            @BeanReference(type = AssetEntryLocalService.class)
810            protected AssetEntryLocalService assetEntryLocalService;
811            @BeanReference(type = AssetEntryService.class)
812            protected AssetEntryService assetEntryService;
813            @BeanReference(type = AssetEntryPersistence.class)
814            protected AssetEntryPersistence assetEntryPersistence;
815            @BeanReference(type = AssetEntryFinder.class)
816            protected AssetEntryFinder assetEntryFinder;
817            @BeanReference(type = AssetLinkLocalService.class)
818            protected AssetLinkLocalService assetLinkLocalService;
819            @BeanReference(type = AssetLinkPersistence.class)
820            protected AssetLinkPersistence assetLinkPersistence;
821            @BeanReference(type = AssetTagLocalService.class)
822            protected AssetTagLocalService assetTagLocalService;
823            @BeanReference(type = AssetTagService.class)
824            protected AssetTagService assetTagService;
825            @BeanReference(type = AssetTagPersistence.class)
826            protected AssetTagPersistence assetTagPersistence;
827            @BeanReference(type = AssetTagFinder.class)
828            protected AssetTagFinder assetTagFinder;
829            @BeanReference(type = AssetTagPropertyLocalService.class)
830            protected AssetTagPropertyLocalService assetTagPropertyLocalService;
831            @BeanReference(type = AssetTagPropertyService.class)
832            protected AssetTagPropertyService assetTagPropertyService;
833            @BeanReference(type = AssetTagPropertyPersistence.class)
834            protected AssetTagPropertyPersistence assetTagPropertyPersistence;
835            @BeanReference(type = AssetTagPropertyFinder.class)
836            protected AssetTagPropertyFinder assetTagPropertyFinder;
837            @BeanReference(type = AssetTagPropertyKeyFinder.class)
838            protected AssetTagPropertyKeyFinder assetTagPropertyKeyFinder;
839            @BeanReference(type = AssetTagStatsLocalService.class)
840            protected AssetTagStatsLocalService assetTagStatsLocalService;
841            @BeanReference(type = AssetTagStatsPersistence.class)
842            protected AssetTagStatsPersistence assetTagStatsPersistence;
843            @BeanReference(type = AssetVocabularyLocalService.class)
844            protected AssetVocabularyLocalService assetVocabularyLocalService;
845            @BeanReference(type = AssetVocabularyService.class)
846            protected AssetVocabularyService assetVocabularyService;
847            @BeanReference(type = AssetVocabularyPersistence.class)
848            protected AssetVocabularyPersistence assetVocabularyPersistence;
849            @BeanReference(type = CounterLocalService.class)
850            protected CounterLocalService counterLocalService;
851            @BeanReference(type = CompanyLocalService.class)
852            protected CompanyLocalService companyLocalService;
853            @BeanReference(type = CompanyService.class)
854            protected CompanyService companyService;
855            @BeanReference(type = CompanyPersistence.class)
856            protected CompanyPersistence companyPersistence;
857            @BeanReference(type = GroupLocalService.class)
858            protected GroupLocalService groupLocalService;
859            @BeanReference(type = GroupService.class)
860            protected GroupService groupService;
861            @BeanReference(type = GroupPersistence.class)
862            protected GroupPersistence groupPersistence;
863            @BeanReference(type = GroupFinder.class)
864            protected GroupFinder groupFinder;
865            @BeanReference(type = ResourceLocalService.class)
866            protected ResourceLocalService resourceLocalService;
867            @BeanReference(type = ResourceService.class)
868            protected ResourceService resourceService;
869            @BeanReference(type = ResourcePersistence.class)
870            protected ResourcePersistence resourcePersistence;
871            @BeanReference(type = ResourceFinder.class)
872            protected ResourceFinder resourceFinder;
873            @BeanReference(type = UserLocalService.class)
874            protected UserLocalService userLocalService;
875            @BeanReference(type = UserService.class)
876            protected UserService userService;
877            @BeanReference(type = UserPersistence.class)
878            protected UserPersistence userPersistence;
879            @BeanReference(type = UserFinder.class)
880            protected UserFinder userFinder;
881            @BeanReference(type = BlogsEntryLocalService.class)
882            protected BlogsEntryLocalService blogsEntryLocalService;
883            @BeanReference(type = BlogsEntryService.class)
884            protected BlogsEntryService blogsEntryService;
885            @BeanReference(type = BlogsEntryPersistence.class)
886            protected BlogsEntryPersistence blogsEntryPersistence;
887            @BeanReference(type = BlogsEntryFinder.class)
888            protected BlogsEntryFinder blogsEntryFinder;
889            @BeanReference(type = BookmarksEntryLocalService.class)
890            protected BookmarksEntryLocalService bookmarksEntryLocalService;
891            @BeanReference(type = BookmarksEntryService.class)
892            protected BookmarksEntryService bookmarksEntryService;
893            @BeanReference(type = BookmarksEntryPersistence.class)
894            protected BookmarksEntryPersistence bookmarksEntryPersistence;
895            @BeanReference(type = BookmarksEntryFinder.class)
896            protected BookmarksEntryFinder bookmarksEntryFinder;
897            @BeanReference(type = DLFileEntryLocalService.class)
898            protected DLFileEntryLocalService dlFileEntryLocalService;
899            @BeanReference(type = DLFileEntryService.class)
900            protected DLFileEntryService dlFileEntryService;
901            @BeanReference(type = DLFileEntryPersistence.class)
902            protected DLFileEntryPersistence dlFileEntryPersistence;
903            @BeanReference(type = DLFileEntryFinder.class)
904            protected DLFileEntryFinder dlFileEntryFinder;
905            @BeanReference(type = DLFolderLocalService.class)
906            protected DLFolderLocalService dlFolderLocalService;
907            @BeanReference(type = DLFolderService.class)
908            protected DLFolderService dlFolderService;
909            @BeanReference(type = DLFolderPersistence.class)
910            protected DLFolderPersistence dlFolderPersistence;
911            @BeanReference(type = DLFolderFinder.class)
912            protected DLFolderFinder dlFolderFinder;
913            @BeanReference(type = JournalArticleLocalService.class)
914            protected JournalArticleLocalService journalArticleLocalService;
915            @BeanReference(type = JournalArticleService.class)
916            protected JournalArticleService journalArticleService;
917            @BeanReference(type = JournalArticlePersistence.class)
918            protected JournalArticlePersistence journalArticlePersistence;
919            @BeanReference(type = JournalArticleFinder.class)
920            protected JournalArticleFinder journalArticleFinder;
921            @BeanReference(type = JournalArticleResourceLocalService.class)
922            protected JournalArticleResourceLocalService journalArticleResourceLocalService;
923            @BeanReference(type = JournalArticleResourcePersistence.class)
924            protected JournalArticleResourcePersistence journalArticleResourcePersistence;
925            @BeanReference(type = MBMessageLocalService.class)
926            protected MBMessageLocalService mbMessageLocalService;
927            @BeanReference(type = MBMessageService.class)
928            protected MBMessageService mbMessageService;
929            @BeanReference(type = MBMessagePersistence.class)
930            protected MBMessagePersistence mbMessagePersistence;
931            @BeanReference(type = MBMessageFinder.class)
932            protected MBMessageFinder mbMessageFinder;
933            @BeanReference(type = SocialEquityLogLocalService.class)
934            protected SocialEquityLogLocalService socialEquityLogLocalService;
935            @BeanReference(type = SocialEquityLogPersistence.class)
936            protected SocialEquityLogPersistence socialEquityLogPersistence;
937            @BeanReference(type = WikiPageLocalService.class)
938            protected WikiPageLocalService wikiPageLocalService;
939            @BeanReference(type = WikiPageService.class)
940            protected WikiPageService wikiPageService;
941            @BeanReference(type = WikiPagePersistence.class)
942            protected WikiPagePersistence wikiPagePersistence;
943            @BeanReference(type = WikiPageFinder.class)
944            protected WikiPageFinder wikiPageFinder;
945            @BeanReference(type = WikiPageResourceLocalService.class)
946            protected WikiPageResourceLocalService wikiPageResourceLocalService;
947            @BeanReference(type = WikiPageResourcePersistence.class)
948            protected WikiPageResourcePersistence wikiPageResourcePersistence;
949    }