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