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