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