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