1
14
15 package com.liferay.portlet.blogs.service.base;
16
17 import com.liferay.counter.service.CounterLocalService;
18 import com.liferay.counter.service.CounterService;
19
20 import com.liferay.portal.kernel.annotation.BeanReference;
21 import com.liferay.portal.kernel.dao.db.DB;
22 import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
23 import com.liferay.portal.kernel.dao.orm.DynamicQuery;
24 import com.liferay.portal.kernel.exception.PortalException;
25 import com.liferay.portal.kernel.exception.SystemException;
26 import com.liferay.portal.service.CompanyLocalService;
27 import com.liferay.portal.service.CompanyService;
28 import com.liferay.portal.service.GroupLocalService;
29 import com.liferay.portal.service.GroupService;
30 import com.liferay.portal.service.OrganizationLocalService;
31 import com.liferay.portal.service.OrganizationService;
32 import com.liferay.portal.service.PortletPreferencesLocalService;
33 import com.liferay.portal.service.PortletPreferencesService;
34 import com.liferay.portal.service.ResourceLocalService;
35 import com.liferay.portal.service.ResourceService;
36 import com.liferay.portal.service.UserLocalService;
37 import com.liferay.portal.service.UserService;
38 import com.liferay.portal.service.persistence.CompanyPersistence;
39 import com.liferay.portal.service.persistence.GroupFinder;
40 import com.liferay.portal.service.persistence.GroupPersistence;
41 import com.liferay.portal.service.persistence.OrganizationFinder;
42 import com.liferay.portal.service.persistence.OrganizationPersistence;
43 import com.liferay.portal.service.persistence.PortletPreferencesFinder;
44 import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
45 import com.liferay.portal.service.persistence.ResourceFinder;
46 import com.liferay.portal.service.persistence.ResourcePersistence;
47 import com.liferay.portal.service.persistence.UserFinder;
48 import com.liferay.portal.service.persistence.UserPersistence;
49
50 import com.liferay.portlet.asset.service.AssetEntryLocalService;
51 import com.liferay.portlet.asset.service.AssetEntryService;
52 import com.liferay.portlet.asset.service.AssetTagLocalService;
53 import com.liferay.portlet.asset.service.AssetTagService;
54 import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
55 import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
56 import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
57 import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
58 import com.liferay.portlet.blogs.model.BlogsEntry;
59 import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
60 import com.liferay.portlet.blogs.service.BlogsEntryService;
61 import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
62 import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
63 import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
64 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
65 import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
66 import com.liferay.portlet.expando.service.ExpandoValueLocalService;
67 import com.liferay.portlet.expando.service.ExpandoValueService;
68 import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
69 import com.liferay.portlet.messageboards.service.MBMessageLocalService;
70 import com.liferay.portlet.messageboards.service.MBMessageService;
71 import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
72 import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
73 import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
74 import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
75 import com.liferay.portlet.social.service.SocialActivityLocalService;
76 import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
77 import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
78
79 import java.util.List;
80
81
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 PortletPreferencesLocalService getPortletPreferencesLocalService() {
317 return portletPreferencesLocalService;
318 }
319
320 public void setPortletPreferencesLocalService(
321 PortletPreferencesLocalService portletPreferencesLocalService) {
322 this.portletPreferencesLocalService = portletPreferencesLocalService;
323 }
324
325 public PortletPreferencesService getPortletPreferencesService() {
326 return portletPreferencesService;
327 }
328
329 public void setPortletPreferencesService(
330 PortletPreferencesService portletPreferencesService) {
331 this.portletPreferencesService = portletPreferencesService;
332 }
333
334 public PortletPreferencesPersistence getPortletPreferencesPersistence() {
335 return portletPreferencesPersistence;
336 }
337
338 public void setPortletPreferencesPersistence(
339 PortletPreferencesPersistence portletPreferencesPersistence) {
340 this.portletPreferencesPersistence = portletPreferencesPersistence;
341 }
342
343 public PortletPreferencesFinder getPortletPreferencesFinder() {
344 return portletPreferencesFinder;
345 }
346
347 public void setPortletPreferencesFinder(
348 PortletPreferencesFinder portletPreferencesFinder) {
349 this.portletPreferencesFinder = portletPreferencesFinder;
350 }
351
352 public ResourceLocalService getResourceLocalService() {
353 return resourceLocalService;
354 }
355
356 public void setResourceLocalService(
357 ResourceLocalService resourceLocalService) {
358 this.resourceLocalService = resourceLocalService;
359 }
360
361 public ResourceService getResourceService() {
362 return resourceService;
363 }
364
365 public void setResourceService(ResourceService resourceService) {
366 this.resourceService = resourceService;
367 }
368
369 public ResourcePersistence getResourcePersistence() {
370 return resourcePersistence;
371 }
372
373 public void setResourcePersistence(ResourcePersistence resourcePersistence) {
374 this.resourcePersistence = resourcePersistence;
375 }
376
377 public ResourceFinder getResourceFinder() {
378 return resourceFinder;
379 }
380
381 public void setResourceFinder(ResourceFinder resourceFinder) {
382 this.resourceFinder = resourceFinder;
383 }
384
385 public UserLocalService getUserLocalService() {
386 return userLocalService;
387 }
388
389 public void setUserLocalService(UserLocalService userLocalService) {
390 this.userLocalService = userLocalService;
391 }
392
393 public UserService getUserService() {
394 return userService;
395 }
396
397 public void setUserService(UserService userService) {
398 this.userService = userService;
399 }
400
401 public UserPersistence getUserPersistence() {
402 return userPersistence;
403 }
404
405 public void setUserPersistence(UserPersistence userPersistence) {
406 this.userPersistence = userPersistence;
407 }
408
409 public UserFinder getUserFinder() {
410 return userFinder;
411 }
412
413 public void setUserFinder(UserFinder userFinder) {
414 this.userFinder = userFinder;
415 }
416
417 public AssetEntryLocalService getAssetEntryLocalService() {
418 return assetEntryLocalService;
419 }
420
421 public void setAssetEntryLocalService(
422 AssetEntryLocalService assetEntryLocalService) {
423 this.assetEntryLocalService = assetEntryLocalService;
424 }
425
426 public AssetEntryService getAssetEntryService() {
427 return assetEntryService;
428 }
429
430 public void setAssetEntryService(AssetEntryService assetEntryService) {
431 this.assetEntryService = assetEntryService;
432 }
433
434 public AssetEntryPersistence getAssetEntryPersistence() {
435 return assetEntryPersistence;
436 }
437
438 public void setAssetEntryPersistence(
439 AssetEntryPersistence assetEntryPersistence) {
440 this.assetEntryPersistence = assetEntryPersistence;
441 }
442
443 public AssetEntryFinder getAssetEntryFinder() {
444 return assetEntryFinder;
445 }
446
447 public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
448 this.assetEntryFinder = assetEntryFinder;
449 }
450
451 public AssetTagLocalService getAssetTagLocalService() {
452 return assetTagLocalService;
453 }
454
455 public void setAssetTagLocalService(
456 AssetTagLocalService assetTagLocalService) {
457 this.assetTagLocalService = assetTagLocalService;
458 }
459
460 public AssetTagService getAssetTagService() {
461 return assetTagService;
462 }
463
464 public void setAssetTagService(AssetTagService assetTagService) {
465 this.assetTagService = assetTagService;
466 }
467
468 public AssetTagPersistence getAssetTagPersistence() {
469 return assetTagPersistence;
470 }
471
472 public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
473 this.assetTagPersistence = assetTagPersistence;
474 }
475
476 public AssetTagFinder getAssetTagFinder() {
477 return assetTagFinder;
478 }
479
480 public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
481 this.assetTagFinder = assetTagFinder;
482 }
483
484 public ExpandoValueLocalService getExpandoValueLocalService() {
485 return expandoValueLocalService;
486 }
487
488 public void setExpandoValueLocalService(
489 ExpandoValueLocalService expandoValueLocalService) {
490 this.expandoValueLocalService = expandoValueLocalService;
491 }
492
493 public ExpandoValueService getExpandoValueService() {
494 return expandoValueService;
495 }
496
497 public void setExpandoValueService(ExpandoValueService expandoValueService) {
498 this.expandoValueService = expandoValueService;
499 }
500
501 public ExpandoValuePersistence getExpandoValuePersistence() {
502 return expandoValuePersistence;
503 }
504
505 public void setExpandoValuePersistence(
506 ExpandoValuePersistence expandoValuePersistence) {
507 this.expandoValuePersistence = expandoValuePersistence;
508 }
509
510 public MBMessageLocalService getMBMessageLocalService() {
511 return mbMessageLocalService;
512 }
513
514 public void setMBMessageLocalService(
515 MBMessageLocalService mbMessageLocalService) {
516 this.mbMessageLocalService = mbMessageLocalService;
517 }
518
519 public MBMessageService getMBMessageService() {
520 return mbMessageService;
521 }
522
523 public void setMBMessageService(MBMessageService mbMessageService) {
524 this.mbMessageService = mbMessageService;
525 }
526
527 public MBMessagePersistence getMBMessagePersistence() {
528 return mbMessagePersistence;
529 }
530
531 public void setMBMessagePersistence(
532 MBMessagePersistence mbMessagePersistence) {
533 this.mbMessagePersistence = mbMessagePersistence;
534 }
535
536 public MBMessageFinder getMBMessageFinder() {
537 return mbMessageFinder;
538 }
539
540 public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
541 this.mbMessageFinder = mbMessageFinder;
542 }
543
544 public RatingsStatsLocalService getRatingsStatsLocalService() {
545 return ratingsStatsLocalService;
546 }
547
548 public void setRatingsStatsLocalService(
549 RatingsStatsLocalService ratingsStatsLocalService) {
550 this.ratingsStatsLocalService = ratingsStatsLocalService;
551 }
552
553 public RatingsStatsPersistence getRatingsStatsPersistence() {
554 return ratingsStatsPersistence;
555 }
556
557 public void setRatingsStatsPersistence(
558 RatingsStatsPersistence ratingsStatsPersistence) {
559 this.ratingsStatsPersistence = ratingsStatsPersistence;
560 }
561
562 public SocialActivityLocalService getSocialActivityLocalService() {
563 return socialActivityLocalService;
564 }
565
566 public void setSocialActivityLocalService(
567 SocialActivityLocalService socialActivityLocalService) {
568 this.socialActivityLocalService = socialActivityLocalService;
569 }
570
571 public SocialActivityPersistence getSocialActivityPersistence() {
572 return socialActivityPersistence;
573 }
574
575 public void setSocialActivityPersistence(
576 SocialActivityPersistence socialActivityPersistence) {
577 this.socialActivityPersistence = socialActivityPersistence;
578 }
579
580 public SocialActivityFinder getSocialActivityFinder() {
581 return socialActivityFinder;
582 }
583
584 public void setSocialActivityFinder(
585 SocialActivityFinder socialActivityFinder) {
586 this.socialActivityFinder = socialActivityFinder;
587 }
588
589 protected void runSQL(String sql) throws SystemException {
590 try {
591 DB db = DBFactoryUtil.getDB();
592
593 db.runSQL(sql);
594 }
595 catch (Exception e) {
596 throw new SystemException(e);
597 }
598 }
599
600 @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService")
601 protected BlogsEntryLocalService blogsEntryLocalService;
602 @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService")
603 protected BlogsEntryService blogsEntryService;
604 @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence")
605 protected BlogsEntryPersistence blogsEntryPersistence;
606 @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder")
607 protected BlogsEntryFinder blogsEntryFinder;
608 @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService")
609 protected BlogsStatsUserLocalService blogsStatsUserLocalService;
610 @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence")
611 protected BlogsStatsUserPersistence blogsStatsUserPersistence;
612 @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder")
613 protected BlogsStatsUserFinder blogsStatsUserFinder;
614 @BeanReference(name = "com.liferay.counter.service.CounterLocalService")
615 protected CounterLocalService counterLocalService;
616 @BeanReference(name = "com.liferay.counter.service.CounterService")
617 protected CounterService counterService;
618 @BeanReference(name = "com.liferay.portal.service.CompanyLocalService")
619 protected CompanyLocalService companyLocalService;
620 @BeanReference(name = "com.liferay.portal.service.CompanyService")
621 protected CompanyService companyService;
622 @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence")
623 protected CompanyPersistence companyPersistence;
624 @BeanReference(name = "com.liferay.portal.service.GroupLocalService")
625 protected GroupLocalService groupLocalService;
626 @BeanReference(name = "com.liferay.portal.service.GroupService")
627 protected GroupService groupService;
628 @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence")
629 protected GroupPersistence groupPersistence;
630 @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder")
631 protected GroupFinder groupFinder;
632 @BeanReference(name = "com.liferay.portal.service.OrganizationLocalService")
633 protected OrganizationLocalService organizationLocalService;
634 @BeanReference(name = "com.liferay.portal.service.OrganizationService")
635 protected OrganizationService organizationService;
636 @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationPersistence")
637 protected OrganizationPersistence organizationPersistence;
638 @BeanReference(name = "com.liferay.portal.service.persistence.OrganizationFinder")
639 protected OrganizationFinder organizationFinder;
640 @BeanReference(name = "com.liferay.portal.service.PortletPreferencesLocalService")
641 protected PortletPreferencesLocalService portletPreferencesLocalService;
642 @BeanReference(name = "com.liferay.portal.service.PortletPreferencesService")
643 protected PortletPreferencesService portletPreferencesService;
644 @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesPersistence")
645 protected PortletPreferencesPersistence portletPreferencesPersistence;
646 @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesFinder")
647 protected PortletPreferencesFinder portletPreferencesFinder;
648 @BeanReference(name = "com.liferay.portal.service.ResourceLocalService")
649 protected ResourceLocalService resourceLocalService;
650 @BeanReference(name = "com.liferay.portal.service.ResourceService")
651 protected ResourceService resourceService;
652 @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence")
653 protected ResourcePersistence resourcePersistence;
654 @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder")
655 protected ResourceFinder resourceFinder;
656 @BeanReference(name = "com.liferay.portal.service.UserLocalService")
657 protected UserLocalService userLocalService;
658 @BeanReference(name = "com.liferay.portal.service.UserService")
659 protected UserService userService;
660 @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence")
661 protected UserPersistence userPersistence;
662 @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder")
663 protected UserFinder userFinder;
664 @BeanReference(name = "com.liferay.portlet.asset.service.AssetEntryLocalService")
665 protected AssetEntryLocalService assetEntryLocalService;
666 @BeanReference(name = "com.liferay.portlet.asset.service.AssetEntryService")
667 protected AssetEntryService assetEntryService;
668 @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetEntryPersistence")
669 protected AssetEntryPersistence assetEntryPersistence;
670 @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetEntryFinder")
671 protected AssetEntryFinder assetEntryFinder;
672 @BeanReference(name = "com.liferay.portlet.asset.service.AssetTagLocalService")
673 protected AssetTagLocalService assetTagLocalService;
674 @BeanReference(name = "com.liferay.portlet.asset.service.AssetTagService")
675 protected AssetTagService assetTagService;
676 @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetTagPersistence")
677 protected AssetTagPersistence assetTagPersistence;
678 @BeanReference(name = "com.liferay.portlet.asset.service.persistence.AssetTagFinder")
679 protected AssetTagFinder assetTagFinder;
680 @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueLocalService")
681 protected ExpandoValueLocalService expandoValueLocalService;
682 @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueService")
683 protected ExpandoValueService expandoValueService;
684 @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence")
685 protected ExpandoValuePersistence expandoValuePersistence;
686 @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService")
687 protected MBMessageLocalService mbMessageLocalService;
688 @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService")
689 protected MBMessageService mbMessageService;
690 @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence")
691 protected MBMessagePersistence mbMessagePersistence;
692 @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder")
693 protected MBMessageFinder mbMessageFinder;
694 @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService")
695 protected RatingsStatsLocalService ratingsStatsLocalService;
696 @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence")
697 protected RatingsStatsPersistence ratingsStatsPersistence;
698 @BeanReference(name = "com.liferay.portlet.social.service.SocialActivityLocalService")
699 protected SocialActivityLocalService socialActivityLocalService;
700 @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence")
701 protected SocialActivityPersistence socialActivityPersistence;
702 @BeanReference(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder")
703 protected SocialActivityFinder socialActivityFinder;
704 }