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