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