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