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