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.blogs.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.OrganizationLocalService;
37  import com.liferay.portal.service.OrganizationService;
38  import com.liferay.portal.service.ResourceLocalService;
39  import com.liferay.portal.service.ResourceService;
40  import com.liferay.portal.service.UserLocalService;
41  import com.liferay.portal.service.UserService;
42  import com.liferay.portal.service.persistence.CompanyPersistence;
43  import com.liferay.portal.service.persistence.GroupFinder;
44  import com.liferay.portal.service.persistence.GroupPersistence;
45  import com.liferay.portal.service.persistence.OrganizationFinder;
46  import com.liferay.portal.service.persistence.OrganizationPersistence;
47  import com.liferay.portal.service.persistence.ResourceFinder;
48  import com.liferay.portal.service.persistence.ResourcePersistence;
49  import com.liferay.portal.service.persistence.UserFinder;
50  import com.liferay.portal.service.persistence.UserPersistence;
51  
52  import com.liferay.portlet.blogs.model.BlogsEntry;
53  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
54  import com.liferay.portlet.blogs.service.BlogsEntryService;
55  import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
56  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
57  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
58  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
59  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
60  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
61  import com.liferay.portlet.messageboards.service.MBMessageService;
62  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
63  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
64  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
65  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
66  import com.liferay.portlet.social.service.SocialActivityLocalService;
67  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
68  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
69  import com.liferay.portlet.tags.service.TagsAssetLocalService;
70  import com.liferay.portlet.tags.service.TagsAssetService;
71  import com.liferay.portlet.tags.service.TagsEntryLocalService;
72  import com.liferay.portlet.tags.service.TagsEntryService;
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  
78  import java.util.List;
79  
80  /**
81   * <a href="BlogsEntryLocalServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
82   *
83   * @author Brian Wing Shun Chan
84   *
85   */
86  public abstract class BlogsEntryLocalServiceBaseImpl
87      implements BlogsEntryLocalService {
88      public BlogsEntry addBlogsEntry(BlogsEntry blogsEntry)
89          throws SystemException {
90          blogsEntry.setNew(true);
91  
92          return blogsEntryPersistence.update(blogsEntry, false);
93      }
94  
95      public BlogsEntry createBlogsEntry(long entryId) {
96          return blogsEntryPersistence.create(entryId);
97      }
98  
99      public void deleteBlogsEntry(long entryId)
100         throws PortalException, SystemException {
101         blogsEntryPersistence.remove(entryId);
102     }
103 
104     public void deleteBlogsEntry(BlogsEntry blogsEntry)
105         throws SystemException {
106         blogsEntryPersistence.remove(blogsEntry);
107     }
108 
109     public List<Object> dynamicQuery(DynamicQuery dynamicQuery)
110         throws SystemException {
111         return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery);
112     }
113 
114     public List<Object> dynamicQuery(DynamicQuery dynamicQuery, int start,
115         int end) throws SystemException {
116         return blogsEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
117             end);
118     }
119 
120     public BlogsEntry getBlogsEntry(long entryId)
121         throws PortalException, SystemException {
122         return blogsEntryPersistence.findByPrimaryKey(entryId);
123     }
124 
125     public List<BlogsEntry> getBlogsEntries(int start, int end)
126         throws SystemException {
127         return blogsEntryPersistence.findAll(start, end);
128     }
129 
130     public int getBlogsEntriesCount() throws SystemException {
131         return blogsEntryPersistence.countAll();
132     }
133 
134     public BlogsEntry updateBlogsEntry(BlogsEntry blogsEntry)
135         throws SystemException {
136         blogsEntry.setNew(false);
137 
138         return blogsEntryPersistence.update(blogsEntry, true);
139     }
140 
141     public BlogsEntryLocalService getBlogsEntryLocalService() {
142         return blogsEntryLocalService;
143     }
144 
145     public void setBlogsEntryLocalService(
146         BlogsEntryLocalService blogsEntryLocalService) {
147         this.blogsEntryLocalService = blogsEntryLocalService;
148     }
149 
150     public BlogsEntryService getBlogsEntryService() {
151         return blogsEntryService;
152     }
153 
154     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
155         this.blogsEntryService = blogsEntryService;
156     }
157 
158     public BlogsEntryPersistence getBlogsEntryPersistence() {
159         return blogsEntryPersistence;
160     }
161 
162     public void setBlogsEntryPersistence(
163         BlogsEntryPersistence blogsEntryPersistence) {
164         this.blogsEntryPersistence = blogsEntryPersistence;
165     }
166 
167     public BlogsEntryFinder getBlogsEntryFinder() {
168         return blogsEntryFinder;
169     }
170 
171     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
172         this.blogsEntryFinder = blogsEntryFinder;
173     }
174 
175     public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
176         return blogsStatsUserLocalService;
177     }
178 
179     public void setBlogsStatsUserLocalService(
180         BlogsStatsUserLocalService blogsStatsUserLocalService) {
181         this.blogsStatsUserLocalService = blogsStatsUserLocalService;
182     }
183 
184     public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
185         return blogsStatsUserPersistence;
186     }
187 
188     public void setBlogsStatsUserPersistence(
189         BlogsStatsUserPersistence blogsStatsUserPersistence) {
190         this.blogsStatsUserPersistence = blogsStatsUserPersistence;
191     }
192 
193     public BlogsStatsUserFinder getBlogsStatsUserFinder() {
194         return blogsStatsUserFinder;
195     }
196 
197     public void setBlogsStatsUserFinder(
198         BlogsStatsUserFinder blogsStatsUserFinder) {
199         this.blogsStatsUserFinder = blogsStatsUserFinder;
200     }
201 
202     public CounterLocalService getCounterLocalService() {
203         return counterLocalService;
204     }
205 
206     public void setCounterLocalService(CounterLocalService counterLocalService) {
207         this.counterLocalService = counterLocalService;
208     }
209 
210     public CounterService getCounterService() {
211         return counterService;
212     }
213 
214     public void setCounterService(CounterService counterService) {
215         this.counterService = counterService;
216     }
217 
218     public CompanyLocalService getCompanyLocalService() {
219         return companyLocalService;
220     }
221 
222     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
223         this.companyLocalService = companyLocalService;
224     }
225 
226     public CompanyService getCompanyService() {
227         return companyService;
228     }
229 
230     public void setCompanyService(CompanyService companyService) {
231         this.companyService = companyService;
232     }
233 
234     public CompanyPersistence getCompanyPersistence() {
235         return companyPersistence;
236     }
237 
238     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
239         this.companyPersistence = companyPersistence;
240     }
241 
242     public GroupLocalService getGroupLocalService() {
243         return groupLocalService;
244     }
245 
246     public void setGroupLocalService(GroupLocalService groupLocalService) {
247         this.groupLocalService = groupLocalService;
248     }
249 
250     public GroupService getGroupService() {
251         return groupService;
252     }
253 
254     public void setGroupService(GroupService groupService) {
255         this.groupService = groupService;
256     }
257 
258     public GroupPersistence getGroupPersistence() {
259         return groupPersistence;
260     }
261 
262     public void setGroupPersistence(GroupPersistence groupPersistence) {
263         this.groupPersistence = groupPersistence;
264     }
265 
266     public GroupFinder getGroupFinder() {
267         return groupFinder;
268     }
269 
270     public void setGroupFinder(GroupFinder groupFinder) {
271         this.groupFinder = groupFinder;
272     }
273 
274     public OrganizationLocalService getOrganizationLocalService() {
275         return organizationLocalService;
276     }
277 
278     public void setOrganizationLocalService(
279         OrganizationLocalService organizationLocalService) {
280         this.organizationLocalService = organizationLocalService;
281     }
282 
283     public OrganizationService getOrganizationService() {
284         return organizationService;
285     }
286 
287     public void setOrganizationService(OrganizationService organizationService) {
288         this.organizationService = organizationService;
289     }
290 
291     public OrganizationPersistence getOrganizationPersistence() {
292         return organizationPersistence;
293     }
294 
295     public void setOrganizationPersistence(
296         OrganizationPersistence organizationPersistence) {
297         this.organizationPersistence = organizationPersistence;
298     }
299 
300     public OrganizationFinder getOrganizationFinder() {
301         return organizationFinder;
302     }
303 
304     public void setOrganizationFinder(OrganizationFinder organizationFinder) {
305         this.organizationFinder = organizationFinder;
306     }
307 
308     public ResourceLocalService getResourceLocalService() {
309         return resourceLocalService;
310     }
311 
312     public void setResourceLocalService(
313         ResourceLocalService resourceLocalService) {
314         this.resourceLocalService = resourceLocalService;
315     }
316 
317     public ResourceService getResourceService() {
318         return resourceService;
319     }
320 
321     public void setResourceService(ResourceService resourceService) {
322         this.resourceService = resourceService;
323     }
324 
325     public ResourcePersistence getResourcePersistence() {
326         return resourcePersistence;
327     }
328 
329     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
330         this.resourcePersistence = resourcePersistence;
331     }
332 
333     public ResourceFinder getResourceFinder() {
334         return resourceFinder;
335     }
336 
337     public void setResourceFinder(ResourceFinder resourceFinder) {
338         this.resourceFinder = resourceFinder;
339     }
340 
341     public UserLocalService getUserLocalService() {
342         return userLocalService;
343     }
344 
345     public void setUserLocalService(UserLocalService userLocalService) {
346         this.userLocalService = userLocalService;
347     }
348 
349     public UserService getUserService() {
350         return userService;
351     }
352 
353     public void setUserService(UserService userService) {
354         this.userService = userService;
355     }
356 
357     public UserPersistence getUserPersistence() {
358         return userPersistence;
359     }
360 
361     public void setUserPersistence(UserPersistence userPersistence) {
362         this.userPersistence = userPersistence;
363     }
364 
365     public UserFinder getUserFinder() {
366         return userFinder;
367     }
368 
369     public void setUserFinder(UserFinder userFinder) {
370         this.userFinder = userFinder;
371     }
372 
373     public MBMessageLocalService getMBMessageLocalService() {
374         return mbMessageLocalService;
375     }
376 
377     public void setMBMessageLocalService(
378         MBMessageLocalService mbMessageLocalService) {
379         this.mbMessageLocalService = mbMessageLocalService;
380     }
381 
382     public MBMessageService getMBMessageService() {
383         return mbMessageService;
384     }
385 
386     public void setMBMessageService(MBMessageService mbMessageService) {
387         this.mbMessageService = mbMessageService;
388     }
389 
390     public MBMessagePersistence getMBMessagePersistence() {
391         return mbMessagePersistence;
392     }
393 
394     public void setMBMessagePersistence(
395         MBMessagePersistence mbMessagePersistence) {
396         this.mbMessagePersistence = mbMessagePersistence;
397     }
398 
399     public MBMessageFinder getMBMessageFinder() {
400         return mbMessageFinder;
401     }
402 
403     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
404         this.mbMessageFinder = mbMessageFinder;
405     }
406 
407     public RatingsStatsLocalService getRatingsStatsLocalService() {
408         return ratingsStatsLocalService;
409     }
410 
411     public void setRatingsStatsLocalService(
412         RatingsStatsLocalService ratingsStatsLocalService) {
413         this.ratingsStatsLocalService = ratingsStatsLocalService;
414     }
415 
416     public RatingsStatsPersistence getRatingsStatsPersistence() {
417         return ratingsStatsPersistence;
418     }
419 
420     public void setRatingsStatsPersistence(
421         RatingsStatsPersistence ratingsStatsPersistence) {
422         this.ratingsStatsPersistence = ratingsStatsPersistence;
423     }
424 
425     public SocialActivityLocalService getSocialActivityLocalService() {
426         return socialActivityLocalService;
427     }
428 
429     public void setSocialActivityLocalService(
430         SocialActivityLocalService socialActivityLocalService) {
431         this.socialActivityLocalService = socialActivityLocalService;
432     }
433 
434     public SocialActivityPersistence getSocialActivityPersistence() {
435         return socialActivityPersistence;
436     }
437 
438     public void setSocialActivityPersistence(
439         SocialActivityPersistence socialActivityPersistence) {
440         this.socialActivityPersistence = socialActivityPersistence;
441     }
442 
443     public SocialActivityFinder getSocialActivityFinder() {
444         return socialActivityFinder;
445     }
446 
447     public void setSocialActivityFinder(
448         SocialActivityFinder socialActivityFinder) {
449         this.socialActivityFinder = socialActivityFinder;
450     }
451 
452     public TagsAssetLocalService getTagsAssetLocalService() {
453         return tagsAssetLocalService;
454     }
455 
456     public void setTagsAssetLocalService(
457         TagsAssetLocalService tagsAssetLocalService) {
458         this.tagsAssetLocalService = tagsAssetLocalService;
459     }
460 
461     public TagsAssetService getTagsAssetService() {
462         return tagsAssetService;
463     }
464 
465     public void setTagsAssetService(TagsAssetService tagsAssetService) {
466         this.tagsAssetService = tagsAssetService;
467     }
468 
469     public TagsAssetPersistence getTagsAssetPersistence() {
470         return tagsAssetPersistence;
471     }
472 
473     public void setTagsAssetPersistence(
474         TagsAssetPersistence tagsAssetPersistence) {
475         this.tagsAssetPersistence = tagsAssetPersistence;
476     }
477 
478     public TagsAssetFinder getTagsAssetFinder() {
479         return tagsAssetFinder;
480     }
481 
482     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
483         this.tagsAssetFinder = tagsAssetFinder;
484     }
485 
486     public TagsEntryLocalService getTagsEntryLocalService() {
487         return tagsEntryLocalService;
488     }
489 
490     public void setTagsEntryLocalService(
491         TagsEntryLocalService tagsEntryLocalService) {
492         this.tagsEntryLocalService = tagsEntryLocalService;
493     }
494 
495     public TagsEntryService getTagsEntryService() {
496         return tagsEntryService;
497     }
498 
499     public void setTagsEntryService(TagsEntryService tagsEntryService) {
500         this.tagsEntryService = tagsEntryService;
501     }
502 
503     public TagsEntryPersistence getTagsEntryPersistence() {
504         return tagsEntryPersistence;
505     }
506 
507     public void setTagsEntryPersistence(
508         TagsEntryPersistence tagsEntryPersistence) {
509         this.tagsEntryPersistence = tagsEntryPersistence;
510     }
511 
512     public TagsEntryFinder getTagsEntryFinder() {
513         return tagsEntryFinder;
514     }
515 
516     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
517         this.tagsEntryFinder = tagsEntryFinder;
518     }
519 
520     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
521     protected BlogsEntryLocalService blogsEntryLocalService;
522     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
523     protected BlogsEntryService blogsEntryService;
524     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
525     protected BlogsEntryPersistence blogsEntryPersistence;
526     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
527     protected BlogsEntryFinder blogsEntryFinder;
528     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.impl")
529     protected BlogsStatsUserLocalService blogsStatsUserLocalService;
530     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence.impl")
531     protected BlogsStatsUserPersistence blogsStatsUserPersistence;
532     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder.impl")
533     protected BlogsStatsUserFinder blogsStatsUserFinder;
534     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
535     protected CounterLocalService counterLocalService;
536     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
537     protected CounterService counterService;
538     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
539     protected CompanyLocalService companyLocalService;
540     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
541     protected CompanyService companyService;
542     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
543     protected CompanyPersistence companyPersistence;
544     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
545     protected GroupLocalService groupLocalService;
546     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
547     protected GroupService groupService;
548     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
549     protected GroupPersistence groupPersistence;
550     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
551     protected GroupFinder groupFinder;
552     @BeanReference(name = "com.liferay.portal.service.OrganizationLocalService.impl")
553     protected OrganizationLocalService organizationLocalService;
554     @BeanReference(name = "com.liferay.portal.service.OrganizationService.impl")
555     protected OrganizationService organizationService;
556     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationPersistence.impl")
557     protected OrganizationPersistence organizationPersistence;
558     @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationFinder.impl")
559     protected OrganizationFinder organizationFinder;
560     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
561     protected ResourceLocalService resourceLocalService;
562     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
563     protected ResourceService resourceService;
564     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
565     protected ResourcePersistence resourcePersistence;
566     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
567     protected ResourceFinder resourceFinder;
568     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
569     protected UserLocalService userLocalService;
570     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
571     protected UserService userService;
572     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
573     protected UserPersistence userPersistence;
574     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
575     protected UserFinder userFinder;
576     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
577     protected MBMessageLocalService mbMessageLocalService;
578     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
579     protected MBMessageService mbMessageService;
580     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
581     protected MBMessagePersistence mbMessagePersistence;
582     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
583     protected MBMessageFinder mbMessageFinder;
584     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
585     protected RatingsStatsLocalService ratingsStatsLocalService;
586     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
587     protected RatingsStatsPersistence ratingsStatsPersistence;
588     @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService.impl")
589     protected SocialActivityLocalService socialActivityLocalService;
590     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence.impl")
591     protected SocialActivityPersistence socialActivityPersistence;
592     @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder.impl")
593     protected SocialActivityFinder socialActivityFinder;
594     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
595     protected TagsAssetLocalService tagsAssetLocalService;
596     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
597     protected TagsAssetService tagsAssetService;
598     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
599     protected TagsAssetPersistence tagsAssetPersistence;
600     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
601     protected TagsAssetFinder tagsAssetFinder;
602     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
603     protected TagsEntryLocalService tagsEntryLocalService;
604     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
605     protected TagsEntryService tagsEntryService;
606     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
607     protected TagsEntryPersistence tagsEntryPersistence;
608     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
609     protected TagsEntryFinder tagsEntryFinder;
610 }