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