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