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