1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.tags.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.PortalException;
29  import com.liferay.portal.SystemException;
30  import com.liferay.portal.kernel.annotation.BeanReference;
31  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
32  import com.liferay.portal.service.CompanyLocalService;
33  import com.liferay.portal.service.CompanyService;
34  import com.liferay.portal.service.GroupLocalService;
35  import com.liferay.portal.service.GroupService;
36  import com.liferay.portal.service.UserLocalService;
37  import com.liferay.portal.service.UserService;
38  import com.liferay.portal.service.persistence.CompanyPersistence;
39  import com.liferay.portal.service.persistence.GroupFinder;
40  import com.liferay.portal.service.persistence.GroupPersistence;
41  import com.liferay.portal.service.persistence.UserFinder;
42  import com.liferay.portal.service.persistence.UserPersistence;
43  import com.liferay.portal.util.PortalUtil;
44  
45  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
46  import com.liferay.portlet.blogs.service.BlogsEntryService;
47  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
48  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
49  import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
50  import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
51  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
52  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
53  import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
54  import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
55  import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
56  import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
57  import com.liferay.portlet.journal.service.JournalArticleLocalService;
58  import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
59  import com.liferay.portlet.journal.service.JournalArticleService;
60  import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
61  import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
62  import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
63  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
64  import com.liferay.portlet.messageboards.service.MBMessageService;
65  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
66  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
67  import com.liferay.portlet.tags.model.TagsAsset;
68  import com.liferay.portlet.tags.service.TagsAssetLocalService;
69  import com.liferay.portlet.tags.service.TagsAssetService;
70  import com.liferay.portlet.tags.service.TagsEntryLocalService;
71  import com.liferay.portlet.tags.service.TagsEntryService;
72  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
73  import com.liferay.portlet.tags.service.TagsPropertyService;
74  import com.liferay.portlet.tags.service.TagsSourceLocalService;
75  import com.liferay.portlet.tags.service.TagsSourceService;
76  import com.liferay.portlet.tags.service.TagsVocabularyLocalService;
77  import com.liferay.portlet.tags.service.TagsVocabularyService;
78  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
79  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
80  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
81  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
82  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
83  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
84  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
85  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
86  import com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence;
87  import com.liferay.portlet.wiki.service.WikiPageLocalService;
88  import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
89  import com.liferay.portlet.wiki.service.WikiPageService;
90  import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
91  import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
92  import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
93  
94  import java.util.List;
95  
96  /**
97   * <a href="TagsAssetLocalServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
98   *
99   * @author Brian Wing Shun Chan
100  *
101  */
102 public abstract class TagsAssetLocalServiceBaseImpl
103     implements TagsAssetLocalService {
104     public TagsAsset addTagsAsset(TagsAsset tagsAsset)
105         throws SystemException {
106         tagsAsset.setNew(true);
107 
108         return tagsAssetPersistence.update(tagsAsset, false);
109     }
110 
111     public TagsAsset createTagsAsset(long assetId) {
112         return tagsAssetPersistence.create(assetId);
113     }
114 
115     public void deleteTagsAsset(long assetId)
116         throws PortalException, SystemException {
117         tagsAssetPersistence.remove(assetId);
118     }
119 
120     public void deleteTagsAsset(TagsAsset tagsAsset) throws SystemException {
121         tagsAssetPersistence.remove(tagsAsset);
122     }
123 
124     public List<Object> dynamicQuery(DynamicQuery dynamicQuery)
125         throws SystemException {
126         return tagsAssetPersistence.findWithDynamicQuery(dynamicQuery);
127     }
128 
129     public List<Object> dynamicQuery(DynamicQuery dynamicQuery, int start,
130         int end) throws SystemException {
131         return tagsAssetPersistence.findWithDynamicQuery(dynamicQuery, start,
132             end);
133     }
134 
135     public TagsAsset getTagsAsset(long assetId)
136         throws PortalException, SystemException {
137         return tagsAssetPersistence.findByPrimaryKey(assetId);
138     }
139 
140     public List<TagsAsset> getTagsAssets(int start, int end)
141         throws SystemException {
142         return tagsAssetPersistence.findAll(start, end);
143     }
144 
145     public int getTagsAssetsCount() throws SystemException {
146         return tagsAssetPersistence.countAll();
147     }
148 
149     public TagsAsset updateTagsAsset(TagsAsset tagsAsset)
150         throws SystemException {
151         tagsAsset.setNew(false);
152 
153         return tagsAssetPersistence.update(tagsAsset, true);
154     }
155 
156     public TagsAsset updateTagsAsset(TagsAsset tagsAsset, boolean merge)
157         throws SystemException {
158         tagsAsset.setNew(false);
159 
160         return tagsAssetPersistence.update(tagsAsset, merge);
161     }
162 
163     public TagsAssetLocalService getTagsAssetLocalService() {
164         return tagsAssetLocalService;
165     }
166 
167     public void setTagsAssetLocalService(
168         TagsAssetLocalService tagsAssetLocalService) {
169         this.tagsAssetLocalService = tagsAssetLocalService;
170     }
171 
172     public TagsAssetService getTagsAssetService() {
173         return tagsAssetService;
174     }
175 
176     public void setTagsAssetService(TagsAssetService tagsAssetService) {
177         this.tagsAssetService = tagsAssetService;
178     }
179 
180     public TagsAssetPersistence getTagsAssetPersistence() {
181         return tagsAssetPersistence;
182     }
183 
184     public void setTagsAssetPersistence(
185         TagsAssetPersistence tagsAssetPersistence) {
186         this.tagsAssetPersistence = tagsAssetPersistence;
187     }
188 
189     public TagsAssetFinder getTagsAssetFinder() {
190         return tagsAssetFinder;
191     }
192 
193     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
194         this.tagsAssetFinder = tagsAssetFinder;
195     }
196 
197     public TagsEntryLocalService getTagsEntryLocalService() {
198         return tagsEntryLocalService;
199     }
200 
201     public void setTagsEntryLocalService(
202         TagsEntryLocalService tagsEntryLocalService) {
203         this.tagsEntryLocalService = tagsEntryLocalService;
204     }
205 
206     public TagsEntryService getTagsEntryService() {
207         return tagsEntryService;
208     }
209 
210     public void setTagsEntryService(TagsEntryService tagsEntryService) {
211         this.tagsEntryService = tagsEntryService;
212     }
213 
214     public TagsEntryPersistence getTagsEntryPersistence() {
215         return tagsEntryPersistence;
216     }
217 
218     public void setTagsEntryPersistence(
219         TagsEntryPersistence tagsEntryPersistence) {
220         this.tagsEntryPersistence = tagsEntryPersistence;
221     }
222 
223     public TagsEntryFinder getTagsEntryFinder() {
224         return tagsEntryFinder;
225     }
226 
227     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
228         this.tagsEntryFinder = tagsEntryFinder;
229     }
230 
231     public TagsPropertyLocalService getTagsPropertyLocalService() {
232         return tagsPropertyLocalService;
233     }
234 
235     public void setTagsPropertyLocalService(
236         TagsPropertyLocalService tagsPropertyLocalService) {
237         this.tagsPropertyLocalService = tagsPropertyLocalService;
238     }
239 
240     public TagsPropertyService getTagsPropertyService() {
241         return tagsPropertyService;
242     }
243 
244     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
245         this.tagsPropertyService = tagsPropertyService;
246     }
247 
248     public TagsPropertyPersistence getTagsPropertyPersistence() {
249         return tagsPropertyPersistence;
250     }
251 
252     public void setTagsPropertyPersistence(
253         TagsPropertyPersistence tagsPropertyPersistence) {
254         this.tagsPropertyPersistence = tagsPropertyPersistence;
255     }
256 
257     public TagsPropertyFinder getTagsPropertyFinder() {
258         return tagsPropertyFinder;
259     }
260 
261     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
262         this.tagsPropertyFinder = tagsPropertyFinder;
263     }
264 
265     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
266         return tagsPropertyKeyFinder;
267     }
268 
269     public void setTagsPropertyKeyFinder(
270         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
271         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
272     }
273 
274     public TagsSourceLocalService getTagsSourceLocalService() {
275         return tagsSourceLocalService;
276     }
277 
278     public void setTagsSourceLocalService(
279         TagsSourceLocalService tagsSourceLocalService) {
280         this.tagsSourceLocalService = tagsSourceLocalService;
281     }
282 
283     public TagsSourceService getTagsSourceService() {
284         return tagsSourceService;
285     }
286 
287     public void setTagsSourceService(TagsSourceService tagsSourceService) {
288         this.tagsSourceService = tagsSourceService;
289     }
290 
291     public TagsSourcePersistence getTagsSourcePersistence() {
292         return tagsSourcePersistence;
293     }
294 
295     public void setTagsSourcePersistence(
296         TagsSourcePersistence tagsSourcePersistence) {
297         this.tagsSourcePersistence = tagsSourcePersistence;
298     }
299 
300     public TagsVocabularyLocalService getTagsVocabularyLocalService() {
301         return tagsVocabularyLocalService;
302     }
303 
304     public void setTagsVocabularyLocalService(
305         TagsVocabularyLocalService tagsVocabularyLocalService) {
306         this.tagsVocabularyLocalService = tagsVocabularyLocalService;
307     }
308 
309     public TagsVocabularyService getTagsVocabularyService() {
310         return tagsVocabularyService;
311     }
312 
313     public void setTagsVocabularyService(
314         TagsVocabularyService tagsVocabularyService) {
315         this.tagsVocabularyService = tagsVocabularyService;
316     }
317 
318     public TagsVocabularyPersistence getTagsVocabularyPersistence() {
319         return tagsVocabularyPersistence;
320     }
321 
322     public void setTagsVocabularyPersistence(
323         TagsVocabularyPersistence tagsVocabularyPersistence) {
324         this.tagsVocabularyPersistence = tagsVocabularyPersistence;
325     }
326 
327     public CounterLocalService getCounterLocalService() {
328         return counterLocalService;
329     }
330 
331     public void setCounterLocalService(CounterLocalService counterLocalService) {
332         this.counterLocalService = counterLocalService;
333     }
334 
335     public CounterService getCounterService() {
336         return counterService;
337     }
338 
339     public void setCounterService(CounterService counterService) {
340         this.counterService = counterService;
341     }
342 
343     public CompanyLocalService getCompanyLocalService() {
344         return companyLocalService;
345     }
346 
347     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
348         this.companyLocalService = companyLocalService;
349     }
350 
351     public CompanyService getCompanyService() {
352         return companyService;
353     }
354 
355     public void setCompanyService(CompanyService companyService) {
356         this.companyService = companyService;
357     }
358 
359     public CompanyPersistence getCompanyPersistence() {
360         return companyPersistence;
361     }
362 
363     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
364         this.companyPersistence = companyPersistence;
365     }
366 
367     public GroupLocalService getGroupLocalService() {
368         return groupLocalService;
369     }
370 
371     public void setGroupLocalService(GroupLocalService groupLocalService) {
372         this.groupLocalService = groupLocalService;
373     }
374 
375     public GroupService getGroupService() {
376         return groupService;
377     }
378 
379     public void setGroupService(GroupService groupService) {
380         this.groupService = groupService;
381     }
382 
383     public GroupPersistence getGroupPersistence() {
384         return groupPersistence;
385     }
386 
387     public void setGroupPersistence(GroupPersistence groupPersistence) {
388         this.groupPersistence = groupPersistence;
389     }
390 
391     public GroupFinder getGroupFinder() {
392         return groupFinder;
393     }
394 
395     public void setGroupFinder(GroupFinder groupFinder) {
396         this.groupFinder = groupFinder;
397     }
398 
399     public UserLocalService getUserLocalService() {
400         return userLocalService;
401     }
402 
403     public void setUserLocalService(UserLocalService userLocalService) {
404         this.userLocalService = userLocalService;
405     }
406 
407     public UserService getUserService() {
408         return userService;
409     }
410 
411     public void setUserService(UserService userService) {
412         this.userService = userService;
413     }
414 
415     public UserPersistence getUserPersistence() {
416         return userPersistence;
417     }
418 
419     public void setUserPersistence(UserPersistence userPersistence) {
420         this.userPersistence = userPersistence;
421     }
422 
423     public UserFinder getUserFinder() {
424         return userFinder;
425     }
426 
427     public void setUserFinder(UserFinder userFinder) {
428         this.userFinder = userFinder;
429     }
430 
431     public BlogsEntryLocalService getBlogsEntryLocalService() {
432         return blogsEntryLocalService;
433     }
434 
435     public void setBlogsEntryLocalService(
436         BlogsEntryLocalService blogsEntryLocalService) {
437         this.blogsEntryLocalService = blogsEntryLocalService;
438     }
439 
440     public BlogsEntryService getBlogsEntryService() {
441         return blogsEntryService;
442     }
443 
444     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
445         this.blogsEntryService = blogsEntryService;
446     }
447 
448     public BlogsEntryPersistence getBlogsEntryPersistence() {
449         return blogsEntryPersistence;
450     }
451 
452     public void setBlogsEntryPersistence(
453         BlogsEntryPersistence blogsEntryPersistence) {
454         this.blogsEntryPersistence = blogsEntryPersistence;
455     }
456 
457     public BlogsEntryFinder getBlogsEntryFinder() {
458         return blogsEntryFinder;
459     }
460 
461     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
462         this.blogsEntryFinder = blogsEntryFinder;
463     }
464 
465     public BookmarksEntryLocalService getBookmarksEntryLocalService() {
466         return bookmarksEntryLocalService;
467     }
468 
469     public void setBookmarksEntryLocalService(
470         BookmarksEntryLocalService bookmarksEntryLocalService) {
471         this.bookmarksEntryLocalService = bookmarksEntryLocalService;
472     }
473 
474     public BookmarksEntryService getBookmarksEntryService() {
475         return bookmarksEntryService;
476     }
477 
478     public void setBookmarksEntryService(
479         BookmarksEntryService bookmarksEntryService) {
480         this.bookmarksEntryService = bookmarksEntryService;
481     }
482 
483     public BookmarksEntryPersistence getBookmarksEntryPersistence() {
484         return bookmarksEntryPersistence;
485     }
486 
487     public void setBookmarksEntryPersistence(
488         BookmarksEntryPersistence bookmarksEntryPersistence) {
489         this.bookmarksEntryPersistence = bookmarksEntryPersistence;
490     }
491 
492     public BookmarksEntryFinder getBookmarksEntryFinder() {
493         return bookmarksEntryFinder;
494     }
495 
496     public void setBookmarksEntryFinder(
497         BookmarksEntryFinder bookmarksEntryFinder) {
498         this.bookmarksEntryFinder = bookmarksEntryFinder;
499     }
500 
501     public DLFileEntryLocalService getDLFileEntryLocalService() {
502         return dlFileEntryLocalService;
503     }
504 
505     public void setDLFileEntryLocalService(
506         DLFileEntryLocalService dlFileEntryLocalService) {
507         this.dlFileEntryLocalService = dlFileEntryLocalService;
508     }
509 
510     public DLFileEntryService getDLFileEntryService() {
511         return dlFileEntryService;
512     }
513 
514     public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
515         this.dlFileEntryService = dlFileEntryService;
516     }
517 
518     public DLFileEntryPersistence getDLFileEntryPersistence() {
519         return dlFileEntryPersistence;
520     }
521 
522     public void setDLFileEntryPersistence(
523         DLFileEntryPersistence dlFileEntryPersistence) {
524         this.dlFileEntryPersistence = dlFileEntryPersistence;
525     }
526 
527     public DLFileEntryFinder getDLFileEntryFinder() {
528         return dlFileEntryFinder;
529     }
530 
531     public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
532         this.dlFileEntryFinder = dlFileEntryFinder;
533     }
534 
535     public JournalArticleLocalService getJournalArticleLocalService() {
536         return journalArticleLocalService;
537     }
538 
539     public void setJournalArticleLocalService(
540         JournalArticleLocalService journalArticleLocalService) {
541         this.journalArticleLocalService = journalArticleLocalService;
542     }
543 
544     public JournalArticleService getJournalArticleService() {
545         return journalArticleService;
546     }
547 
548     public void setJournalArticleService(
549         JournalArticleService journalArticleService) {
550         this.journalArticleService = journalArticleService;
551     }
552 
553     public JournalArticlePersistence getJournalArticlePersistence() {
554         return journalArticlePersistence;
555     }
556 
557     public void setJournalArticlePersistence(
558         JournalArticlePersistence journalArticlePersistence) {
559         this.journalArticlePersistence = journalArticlePersistence;
560     }
561 
562     public JournalArticleFinder getJournalArticleFinder() {
563         return journalArticleFinder;
564     }
565 
566     public void setJournalArticleFinder(
567         JournalArticleFinder journalArticleFinder) {
568         this.journalArticleFinder = journalArticleFinder;
569     }
570 
571     public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
572         return journalArticleResourceLocalService;
573     }
574 
575     public void setJournalArticleResourceLocalService(
576         JournalArticleResourceLocalService journalArticleResourceLocalService) {
577         this.journalArticleResourceLocalService = journalArticleResourceLocalService;
578     }
579 
580     public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
581         return journalArticleResourcePersistence;
582     }
583 
584     public void setJournalArticleResourcePersistence(
585         JournalArticleResourcePersistence journalArticleResourcePersistence) {
586         this.journalArticleResourcePersistence = journalArticleResourcePersistence;
587     }
588 
589     public MBMessageLocalService getMBMessageLocalService() {
590         return mbMessageLocalService;
591     }
592 
593     public void setMBMessageLocalService(
594         MBMessageLocalService mbMessageLocalService) {
595         this.mbMessageLocalService = mbMessageLocalService;
596     }
597 
598     public MBMessageService getMBMessageService() {
599         return mbMessageService;
600     }
601 
602     public void setMBMessageService(MBMessageService mbMessageService) {
603         this.mbMessageService = mbMessageService;
604     }
605 
606     public MBMessagePersistence getMBMessagePersistence() {
607         return mbMessagePersistence;
608     }
609 
610     public void setMBMessagePersistence(
611         MBMessagePersistence mbMessagePersistence) {
612         this.mbMessagePersistence = mbMessagePersistence;
613     }
614 
615     public MBMessageFinder getMBMessageFinder() {
616         return mbMessageFinder;
617     }
618 
619     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
620         this.mbMessageFinder = mbMessageFinder;
621     }
622 
623     public WikiPageLocalService getWikiPageLocalService() {
624         return wikiPageLocalService;
625     }
626 
627     public void setWikiPageLocalService(
628         WikiPageLocalService wikiPageLocalService) {
629         this.wikiPageLocalService = wikiPageLocalService;
630     }
631 
632     public WikiPageService getWikiPageService() {
633         return wikiPageService;
634     }
635 
636     public void setWikiPageService(WikiPageService wikiPageService) {
637         this.wikiPageService = wikiPageService;
638     }
639 
640     public WikiPagePersistence getWikiPagePersistence() {
641         return wikiPagePersistence;
642     }
643 
644     public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
645         this.wikiPagePersistence = wikiPagePersistence;
646     }
647 
648     public WikiPageFinder getWikiPageFinder() {
649         return wikiPageFinder;
650     }
651 
652     public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
653         this.wikiPageFinder = wikiPageFinder;
654     }
655 
656     public WikiPageResourceLocalService getWikiPageResourceLocalService() {
657         return wikiPageResourceLocalService;
658     }
659 
660     public void setWikiPageResourceLocalService(
661         WikiPageResourceLocalService wikiPageResourceLocalService) {
662         this.wikiPageResourceLocalService = wikiPageResourceLocalService;
663     }
664 
665     public WikiPageResourcePersistence getWikiPageResourcePersistence() {
666         return wikiPageResourcePersistence;
667     }
668 
669     public void setWikiPageResourcePersistence(
670         WikiPageResourcePersistence wikiPageResourcePersistence) {
671         this.wikiPageResourcePersistence = wikiPageResourcePersistence;
672     }
673 
674     protected void runSQL(String sql) throws SystemException {
675         try {
676             PortalUtil.runSQL(sql);
677         }
678         catch (Exception e) {
679             throw new SystemException(e);
680         }
681     }
682 
683     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
684     protected TagsAssetLocalService tagsAssetLocalService;
685     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
686     protected TagsAssetService tagsAssetService;
687     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
688     protected TagsAssetPersistence tagsAssetPersistence;
689     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
690     protected TagsAssetFinder tagsAssetFinder;
691     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
692     protected TagsEntryLocalService tagsEntryLocalService;
693     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
694     protected TagsEntryService tagsEntryService;
695     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
696     protected TagsEntryPersistence tagsEntryPersistence;
697     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
698     protected TagsEntryFinder tagsEntryFinder;
699     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
700     protected TagsPropertyLocalService tagsPropertyLocalService;
701     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
702     protected TagsPropertyService tagsPropertyService;
703     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
704     protected TagsPropertyPersistence tagsPropertyPersistence;
705     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
706     protected TagsPropertyFinder tagsPropertyFinder;
707     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
708     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
709     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
710     protected TagsSourceLocalService tagsSourceLocalService;
711     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
712     protected TagsSourceService tagsSourceService;
713     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
714     protected TagsSourcePersistence tagsSourcePersistence;
715     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyLocalService.impl")
716     protected TagsVocabularyLocalService tagsVocabularyLocalService;
717     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyService.impl")
718     protected TagsVocabularyService tagsVocabularyService;
719     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence.impl")
720     protected TagsVocabularyPersistence tagsVocabularyPersistence;
721     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
722     protected CounterLocalService counterLocalService;
723     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
724     protected CounterService counterService;
725     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
726     protected CompanyLocalService companyLocalService;
727     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
728     protected CompanyService companyService;
729     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
730     protected CompanyPersistence companyPersistence;
731     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
732     protected GroupLocalService groupLocalService;
733     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
734     protected GroupService groupService;
735     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
736     protected GroupPersistence groupPersistence;
737     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
738     protected GroupFinder groupFinder;
739     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
740     protected UserLocalService userLocalService;
741     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
742     protected UserService userService;
743     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
744     protected UserPersistence userPersistence;
745     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
746     protected UserFinder userFinder;
747     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
748     protected BlogsEntryLocalService blogsEntryLocalService;
749     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
750     protected BlogsEntryService blogsEntryService;
751     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
752     protected BlogsEntryPersistence blogsEntryPersistence;
753     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
754     protected BlogsEntryFinder blogsEntryFinder;
755     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.impl")
756     protected BookmarksEntryLocalService bookmarksEntryLocalService;
757     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryService.impl")
758     protected BookmarksEntryService bookmarksEntryService;
759     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence.impl")
760     protected BookmarksEntryPersistence bookmarksEntryPersistence;
761     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder.impl")
762     protected BookmarksEntryFinder bookmarksEntryFinder;
763     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.impl")
764     protected DLFileEntryLocalService dlFileEntryLocalService;
765     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.DLFileEntryService.impl")
766     protected DLFileEntryService dlFileEntryService;
767     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence.impl")
768     protected DLFileEntryPersistence dlFileEntryPersistence;
769     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder.impl")
770     protected DLFileEntryFinder dlFileEntryFinder;
771     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleLocalService.impl")
772     protected JournalArticleLocalService journalArticleLocalService;
773     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleService.impl")
774     protected JournalArticleService journalArticleService;
775     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticlePersistence.impl")
776     protected JournalArticlePersistence journalArticlePersistence;
777     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleFinder.impl")
778     protected JournalArticleFinder journalArticleFinder;
779     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleResourceLocalService.impl")
780     protected JournalArticleResourceLocalService journalArticleResourceLocalService;
781     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence.impl")
782     protected JournalArticleResourcePersistence journalArticleResourcePersistence;
783     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
784     protected MBMessageLocalService mbMessageLocalService;
785     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
786     protected MBMessageService mbMessageService;
787     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
788     protected MBMessagePersistence mbMessagePersistence;
789     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
790     protected MBMessageFinder mbMessageFinder;
791     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageLocalService.impl")
792     protected WikiPageLocalService wikiPageLocalService;
793     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageService.impl")
794     protected WikiPageService wikiPageService;
795     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPagePersistence.impl")
796     protected WikiPagePersistence wikiPagePersistence;
797     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPageFinder.impl")
798     protected WikiPageFinder wikiPageFinder;
799     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageResourceLocalService.impl")
800     protected WikiPageResourceLocalService wikiPageResourceLocalService;
801     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence.impl")
802     protected WikiPageResourcePersistence wikiPageResourcePersistence;
803 }