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