001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.blogs.service.base;
022:
023: import com.liferay.counter.service.CounterLocalService;
024: import com.liferay.counter.service.CounterLocalServiceFactory;
025: import com.liferay.counter.service.CounterService;
026: import com.liferay.counter.service.CounterServiceFactory;
027:
028: import com.liferay.portal.service.CompanyLocalService;
029: import com.liferay.portal.service.CompanyLocalServiceFactory;
030: import com.liferay.portal.service.CompanyService;
031: import com.liferay.portal.service.CompanyServiceFactory;
032: import com.liferay.portal.service.GroupLocalService;
033: import com.liferay.portal.service.GroupLocalServiceFactory;
034: import com.liferay.portal.service.GroupService;
035: import com.liferay.portal.service.GroupServiceFactory;
036: import com.liferay.portal.service.OrganizationLocalService;
037: import com.liferay.portal.service.OrganizationLocalServiceFactory;
038: import com.liferay.portal.service.OrganizationService;
039: import com.liferay.portal.service.OrganizationServiceFactory;
040: import com.liferay.portal.service.ResourceLocalService;
041: import com.liferay.portal.service.ResourceLocalServiceFactory;
042: import com.liferay.portal.service.ResourceService;
043: import com.liferay.portal.service.ResourceServiceFactory;
044: import com.liferay.portal.service.UserLocalService;
045: import com.liferay.portal.service.UserLocalServiceFactory;
046: import com.liferay.portal.service.UserService;
047: import com.liferay.portal.service.UserServiceFactory;
048: import com.liferay.portal.service.impl.PrincipalBean;
049: import com.liferay.portal.service.persistence.CompanyPersistence;
050: import com.liferay.portal.service.persistence.CompanyUtil;
051: import com.liferay.portal.service.persistence.GroupFinder;
052: import com.liferay.portal.service.persistence.GroupFinderUtil;
053: import com.liferay.portal.service.persistence.GroupPersistence;
054: import com.liferay.portal.service.persistence.GroupUtil;
055: import com.liferay.portal.service.persistence.OrganizationFinder;
056: import com.liferay.portal.service.persistence.OrganizationFinderUtil;
057: import com.liferay.portal.service.persistence.OrganizationPersistence;
058: import com.liferay.portal.service.persistence.OrganizationUtil;
059: import com.liferay.portal.service.persistence.ResourceFinder;
060: import com.liferay.portal.service.persistence.ResourceFinderUtil;
061: import com.liferay.portal.service.persistence.ResourcePersistence;
062: import com.liferay.portal.service.persistence.ResourceUtil;
063: import com.liferay.portal.service.persistence.UserFinder;
064: import com.liferay.portal.service.persistence.UserFinderUtil;
065: import com.liferay.portal.service.persistence.UserPersistence;
066: import com.liferay.portal.service.persistence.UserUtil;
067:
068: import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
069: import com.liferay.portlet.blogs.service.BlogsEntryLocalServiceFactory;
070: import com.liferay.portlet.blogs.service.BlogsEntryService;
071: import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
072: import com.liferay.portlet.blogs.service.BlogsStatsUserLocalServiceFactory;
073: import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
074: import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinderUtil;
075: import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
076: import com.liferay.portlet.blogs.service.persistence.BlogsEntryUtil;
077: import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
078: import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinderUtil;
079: import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
080: import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserUtil;
081: import com.liferay.portlet.messageboards.service.MBMessageLocalService;
082: import com.liferay.portlet.messageboards.service.MBMessageLocalServiceFactory;
083: import com.liferay.portlet.messageboards.service.MBMessageService;
084: import com.liferay.portlet.messageboards.service.MBMessageServiceFactory;
085: import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
086: import com.liferay.portlet.messageboards.service.persistence.MBMessageFinderUtil;
087: import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
088: import com.liferay.portlet.messageboards.service.persistence.MBMessageUtil;
089: import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
090: import com.liferay.portlet.ratings.service.RatingsStatsLocalServiceFactory;
091: import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
092: import com.liferay.portlet.ratings.service.persistence.RatingsStatsUtil;
093: import com.liferay.portlet.tags.service.TagsAssetLocalService;
094: import com.liferay.portlet.tags.service.TagsAssetLocalServiceFactory;
095: import com.liferay.portlet.tags.service.TagsAssetService;
096: import com.liferay.portlet.tags.service.TagsAssetServiceFactory;
097: import com.liferay.portlet.tags.service.TagsEntryLocalService;
098: import com.liferay.portlet.tags.service.TagsEntryLocalServiceFactory;
099: import com.liferay.portlet.tags.service.TagsEntryService;
100: import com.liferay.portlet.tags.service.TagsEntryServiceFactory;
101: import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
102: import com.liferay.portlet.tags.service.persistence.TagsAssetFinderUtil;
103: import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
104: import com.liferay.portlet.tags.service.persistence.TagsAssetUtil;
105: import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
106: import com.liferay.portlet.tags.service.persistence.TagsEntryFinderUtil;
107: import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
108: import com.liferay.portlet.tags.service.persistence.TagsEntryUtil;
109:
110: import org.springframework.beans.factory.InitializingBean;
111:
112: /**
113: * <a href="BlogsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
114: *
115: * @author Brian Wing Shun Chan
116: *
117: */
118: public abstract class BlogsEntryServiceBaseImpl extends PrincipalBean
119: implements BlogsEntryService, InitializingBean {
120: public BlogsEntryLocalService getBlogsEntryLocalService() {
121: return blogsEntryLocalService;
122: }
123:
124: public void setBlogsEntryLocalService(
125: BlogsEntryLocalService blogsEntryLocalService) {
126: this .blogsEntryLocalService = blogsEntryLocalService;
127: }
128:
129: public BlogsEntryPersistence getBlogsEntryPersistence() {
130: return blogsEntryPersistence;
131: }
132:
133: public void setBlogsEntryPersistence(
134: BlogsEntryPersistence blogsEntryPersistence) {
135: this .blogsEntryPersistence = blogsEntryPersistence;
136: }
137:
138: public BlogsEntryFinder getBlogsEntryFinder() {
139: return blogsEntryFinder;
140: }
141:
142: public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
143: this .blogsEntryFinder = blogsEntryFinder;
144: }
145:
146: public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
147: return blogsStatsUserLocalService;
148: }
149:
150: public void setBlogsStatsUserLocalService(
151: BlogsStatsUserLocalService blogsStatsUserLocalService) {
152: this .blogsStatsUserLocalService = blogsStatsUserLocalService;
153: }
154:
155: public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
156: return blogsStatsUserPersistence;
157: }
158:
159: public void setBlogsStatsUserPersistence(
160: BlogsStatsUserPersistence blogsStatsUserPersistence) {
161: this .blogsStatsUserPersistence = blogsStatsUserPersistence;
162: }
163:
164: public BlogsStatsUserFinder getBlogsStatsUserFinder() {
165: return blogsStatsUserFinder;
166: }
167:
168: public void setBlogsStatsUserFinder(
169: BlogsStatsUserFinder blogsStatsUserFinder) {
170: this .blogsStatsUserFinder = blogsStatsUserFinder;
171: }
172:
173: public CounterLocalService getCounterLocalService() {
174: return counterLocalService;
175: }
176:
177: public void setCounterLocalService(
178: CounterLocalService counterLocalService) {
179: this .counterLocalService = counterLocalService;
180: }
181:
182: public CounterService getCounterService() {
183: return counterService;
184: }
185:
186: public void setCounterService(CounterService counterService) {
187: this .counterService = counterService;
188: }
189:
190: public CompanyLocalService getCompanyLocalService() {
191: return companyLocalService;
192: }
193:
194: public void setCompanyLocalService(
195: CompanyLocalService companyLocalService) {
196: this .companyLocalService = companyLocalService;
197: }
198:
199: public CompanyService getCompanyService() {
200: return companyService;
201: }
202:
203: public void setCompanyService(CompanyService companyService) {
204: this .companyService = companyService;
205: }
206:
207: public CompanyPersistence getCompanyPersistence() {
208: return companyPersistence;
209: }
210:
211: public void setCompanyPersistence(
212: CompanyPersistence companyPersistence) {
213: this .companyPersistence = companyPersistence;
214: }
215:
216: public GroupLocalService getGroupLocalService() {
217: return groupLocalService;
218: }
219:
220: public void setGroupLocalService(GroupLocalService groupLocalService) {
221: this .groupLocalService = groupLocalService;
222: }
223:
224: public GroupService getGroupService() {
225: return groupService;
226: }
227:
228: public void setGroupService(GroupService groupService) {
229: this .groupService = groupService;
230: }
231:
232: public GroupPersistence getGroupPersistence() {
233: return groupPersistence;
234: }
235:
236: public void setGroupPersistence(GroupPersistence groupPersistence) {
237: this .groupPersistence = groupPersistence;
238: }
239:
240: public GroupFinder getGroupFinder() {
241: return groupFinder;
242: }
243:
244: public void setGroupFinder(GroupFinder groupFinder) {
245: this .groupFinder = groupFinder;
246: }
247:
248: public OrganizationLocalService getOrganizationLocalService() {
249: return organizationLocalService;
250: }
251:
252: public void setOrganizationLocalService(
253: OrganizationLocalService organizationLocalService) {
254: this .organizationLocalService = organizationLocalService;
255: }
256:
257: public OrganizationService getOrganizationService() {
258: return organizationService;
259: }
260:
261: public void setOrganizationService(
262: OrganizationService organizationService) {
263: this .organizationService = organizationService;
264: }
265:
266: public OrganizationPersistence getOrganizationPersistence() {
267: return organizationPersistence;
268: }
269:
270: public void setOrganizationPersistence(
271: OrganizationPersistence organizationPersistence) {
272: this .organizationPersistence = organizationPersistence;
273: }
274:
275: public OrganizationFinder getOrganizationFinder() {
276: return organizationFinder;
277: }
278:
279: public void setOrganizationFinder(
280: OrganizationFinder organizationFinder) {
281: this .organizationFinder = organizationFinder;
282: }
283:
284: public ResourceLocalService getResourceLocalService() {
285: return resourceLocalService;
286: }
287:
288: public void setResourceLocalService(
289: ResourceLocalService resourceLocalService) {
290: this .resourceLocalService = resourceLocalService;
291: }
292:
293: public ResourceService getResourceService() {
294: return resourceService;
295: }
296:
297: public void setResourceService(ResourceService resourceService) {
298: this .resourceService = resourceService;
299: }
300:
301: public ResourcePersistence getResourcePersistence() {
302: return resourcePersistence;
303: }
304:
305: public void setResourcePersistence(
306: ResourcePersistence resourcePersistence) {
307: this .resourcePersistence = resourcePersistence;
308: }
309:
310: public ResourceFinder getResourceFinder() {
311: return resourceFinder;
312: }
313:
314: public void setResourceFinder(ResourceFinder resourceFinder) {
315: this .resourceFinder = resourceFinder;
316: }
317:
318: public UserLocalService getUserLocalService() {
319: return userLocalService;
320: }
321:
322: public void setUserLocalService(UserLocalService userLocalService) {
323: this .userLocalService = userLocalService;
324: }
325:
326: public UserService getUserService() {
327: return userService;
328: }
329:
330: public void setUserService(UserService userService) {
331: this .userService = userService;
332: }
333:
334: public UserPersistence getUserPersistence() {
335: return userPersistence;
336: }
337:
338: public void setUserPersistence(UserPersistence userPersistence) {
339: this .userPersistence = userPersistence;
340: }
341:
342: public UserFinder getUserFinder() {
343: return userFinder;
344: }
345:
346: public void setUserFinder(UserFinder userFinder) {
347: this .userFinder = userFinder;
348: }
349:
350: public MBMessageLocalService getMBMessageLocalService() {
351: return mbMessageLocalService;
352: }
353:
354: public void setMBMessageLocalService(
355: MBMessageLocalService mbMessageLocalService) {
356: this .mbMessageLocalService = mbMessageLocalService;
357: }
358:
359: public MBMessageService getMBMessageService() {
360: return mbMessageService;
361: }
362:
363: public void setMBMessageService(MBMessageService mbMessageService) {
364: this .mbMessageService = mbMessageService;
365: }
366:
367: public MBMessagePersistence getMBMessagePersistence() {
368: return mbMessagePersistence;
369: }
370:
371: public void setMBMessagePersistence(
372: MBMessagePersistence mbMessagePersistence) {
373: this .mbMessagePersistence = mbMessagePersistence;
374: }
375:
376: public MBMessageFinder getMBMessageFinder() {
377: return mbMessageFinder;
378: }
379:
380: public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
381: this .mbMessageFinder = mbMessageFinder;
382: }
383:
384: public RatingsStatsLocalService getRatingsStatsLocalService() {
385: return ratingsStatsLocalService;
386: }
387:
388: public void setRatingsStatsLocalService(
389: RatingsStatsLocalService ratingsStatsLocalService) {
390: this .ratingsStatsLocalService = ratingsStatsLocalService;
391: }
392:
393: public RatingsStatsPersistence getRatingsStatsPersistence() {
394: return ratingsStatsPersistence;
395: }
396:
397: public void setRatingsStatsPersistence(
398: RatingsStatsPersistence ratingsStatsPersistence) {
399: this .ratingsStatsPersistence = ratingsStatsPersistence;
400: }
401:
402: public TagsAssetLocalService getTagsAssetLocalService() {
403: return tagsAssetLocalService;
404: }
405:
406: public void setTagsAssetLocalService(
407: TagsAssetLocalService tagsAssetLocalService) {
408: this .tagsAssetLocalService = tagsAssetLocalService;
409: }
410:
411: public TagsAssetService getTagsAssetService() {
412: return tagsAssetService;
413: }
414:
415: public void setTagsAssetService(TagsAssetService tagsAssetService) {
416: this .tagsAssetService = tagsAssetService;
417: }
418:
419: public TagsAssetPersistence getTagsAssetPersistence() {
420: return tagsAssetPersistence;
421: }
422:
423: public void setTagsAssetPersistence(
424: TagsAssetPersistence tagsAssetPersistence) {
425: this .tagsAssetPersistence = tagsAssetPersistence;
426: }
427:
428: public TagsAssetFinder getTagsAssetFinder() {
429: return tagsAssetFinder;
430: }
431:
432: public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
433: this .tagsAssetFinder = tagsAssetFinder;
434: }
435:
436: public TagsEntryLocalService getTagsEntryLocalService() {
437: return tagsEntryLocalService;
438: }
439:
440: public void setTagsEntryLocalService(
441: TagsEntryLocalService tagsEntryLocalService) {
442: this .tagsEntryLocalService = tagsEntryLocalService;
443: }
444:
445: public TagsEntryService getTagsEntryService() {
446: return tagsEntryService;
447: }
448:
449: public void setTagsEntryService(TagsEntryService tagsEntryService) {
450: this .tagsEntryService = tagsEntryService;
451: }
452:
453: public TagsEntryPersistence getTagsEntryPersistence() {
454: return tagsEntryPersistence;
455: }
456:
457: public void setTagsEntryPersistence(
458: TagsEntryPersistence tagsEntryPersistence) {
459: this .tagsEntryPersistence = tagsEntryPersistence;
460: }
461:
462: public TagsEntryFinder getTagsEntryFinder() {
463: return tagsEntryFinder;
464: }
465:
466: public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
467: this .tagsEntryFinder = tagsEntryFinder;
468: }
469:
470: public void afterPropertiesSet() {
471: if (blogsEntryLocalService == null) {
472: blogsEntryLocalService = BlogsEntryLocalServiceFactory
473: .getImpl();
474: }
475:
476: if (blogsEntryPersistence == null) {
477: blogsEntryPersistence = BlogsEntryUtil.getPersistence();
478: }
479:
480: if (blogsEntryFinder == null) {
481: blogsEntryFinder = BlogsEntryFinderUtil.getFinder();
482: }
483:
484: if (blogsStatsUserLocalService == null) {
485: blogsStatsUserLocalService = BlogsStatsUserLocalServiceFactory
486: .getImpl();
487: }
488:
489: if (blogsStatsUserPersistence == null) {
490: blogsStatsUserPersistence = BlogsStatsUserUtil
491: .getPersistence();
492: }
493:
494: if (blogsStatsUserFinder == null) {
495: blogsStatsUserFinder = BlogsStatsUserFinderUtil.getFinder();
496: }
497:
498: if (counterLocalService == null) {
499: counterLocalService = CounterLocalServiceFactory.getImpl();
500: }
501:
502: if (counterService == null) {
503: counterService = CounterServiceFactory.getImpl();
504: }
505:
506: if (companyLocalService == null) {
507: companyLocalService = CompanyLocalServiceFactory.getImpl();
508: }
509:
510: if (companyService == null) {
511: companyService = CompanyServiceFactory.getImpl();
512: }
513:
514: if (companyPersistence == null) {
515: companyPersistence = CompanyUtil.getPersistence();
516: }
517:
518: if (groupLocalService == null) {
519: groupLocalService = GroupLocalServiceFactory.getImpl();
520: }
521:
522: if (groupService == null) {
523: groupService = GroupServiceFactory.getImpl();
524: }
525:
526: if (groupPersistence == null) {
527: groupPersistence = GroupUtil.getPersistence();
528: }
529:
530: if (groupFinder == null) {
531: groupFinder = GroupFinderUtil.getFinder();
532: }
533:
534: if (organizationLocalService == null) {
535: organizationLocalService = OrganizationLocalServiceFactory
536: .getImpl();
537: }
538:
539: if (organizationService == null) {
540: organizationService = OrganizationServiceFactory.getImpl();
541: }
542:
543: if (organizationPersistence == null) {
544: organizationPersistence = OrganizationUtil.getPersistence();
545: }
546:
547: if (organizationFinder == null) {
548: organizationFinder = OrganizationFinderUtil.getFinder();
549: }
550:
551: if (resourceLocalService == null) {
552: resourceLocalService = ResourceLocalServiceFactory
553: .getImpl();
554: }
555:
556: if (resourceService == null) {
557: resourceService = ResourceServiceFactory.getImpl();
558: }
559:
560: if (resourcePersistence == null) {
561: resourcePersistence = ResourceUtil.getPersistence();
562: }
563:
564: if (resourceFinder == null) {
565: resourceFinder = ResourceFinderUtil.getFinder();
566: }
567:
568: if (userLocalService == null) {
569: userLocalService = UserLocalServiceFactory.getImpl();
570: }
571:
572: if (userService == null) {
573: userService = UserServiceFactory.getImpl();
574: }
575:
576: if (userPersistence == null) {
577: userPersistence = UserUtil.getPersistence();
578: }
579:
580: if (userFinder == null) {
581: userFinder = UserFinderUtil.getFinder();
582: }
583:
584: if (mbMessageLocalService == null) {
585: mbMessageLocalService = MBMessageLocalServiceFactory
586: .getImpl();
587: }
588:
589: if (mbMessageService == null) {
590: mbMessageService = MBMessageServiceFactory.getImpl();
591: }
592:
593: if (mbMessagePersistence == null) {
594: mbMessagePersistence = MBMessageUtil.getPersistence();
595: }
596:
597: if (mbMessageFinder == null) {
598: mbMessageFinder = MBMessageFinderUtil.getFinder();
599: }
600:
601: if (ratingsStatsLocalService == null) {
602: ratingsStatsLocalService = RatingsStatsLocalServiceFactory
603: .getImpl();
604: }
605:
606: if (ratingsStatsPersistence == null) {
607: ratingsStatsPersistence = RatingsStatsUtil.getPersistence();
608: }
609:
610: if (tagsAssetLocalService == null) {
611: tagsAssetLocalService = TagsAssetLocalServiceFactory
612: .getImpl();
613: }
614:
615: if (tagsAssetService == null) {
616: tagsAssetService = TagsAssetServiceFactory.getImpl();
617: }
618:
619: if (tagsAssetPersistence == null) {
620: tagsAssetPersistence = TagsAssetUtil.getPersistence();
621: }
622:
623: if (tagsAssetFinder == null) {
624: tagsAssetFinder = TagsAssetFinderUtil.getFinder();
625: }
626:
627: if (tagsEntryLocalService == null) {
628: tagsEntryLocalService = TagsEntryLocalServiceFactory
629: .getImpl();
630: }
631:
632: if (tagsEntryService == null) {
633: tagsEntryService = TagsEntryServiceFactory.getImpl();
634: }
635:
636: if (tagsEntryPersistence == null) {
637: tagsEntryPersistence = TagsEntryUtil.getPersistence();
638: }
639:
640: if (tagsEntryFinder == null) {
641: tagsEntryFinder = TagsEntryFinderUtil.getFinder();
642: }
643: }
644:
645: protected BlogsEntryLocalService blogsEntryLocalService;
646: protected BlogsEntryPersistence blogsEntryPersistence;
647: protected BlogsEntryFinder blogsEntryFinder;
648: protected BlogsStatsUserLocalService blogsStatsUserLocalService;
649: protected BlogsStatsUserPersistence blogsStatsUserPersistence;
650: protected BlogsStatsUserFinder blogsStatsUserFinder;
651: protected CounterLocalService counterLocalService;
652: protected CounterService counterService;
653: protected CompanyLocalService companyLocalService;
654: protected CompanyService companyService;
655: protected CompanyPersistence companyPersistence;
656: protected GroupLocalService groupLocalService;
657: protected GroupService groupService;
658: protected GroupPersistence groupPersistence;
659: protected GroupFinder groupFinder;
660: protected OrganizationLocalService organizationLocalService;
661: protected OrganizationService organizationService;
662: protected OrganizationPersistence organizationPersistence;
663: protected OrganizationFinder organizationFinder;
664: protected ResourceLocalService resourceLocalService;
665: protected ResourceService resourceService;
666: protected ResourcePersistence resourcePersistence;
667: protected ResourceFinder resourceFinder;
668: protected UserLocalService userLocalService;
669: protected UserService userService;
670: protected UserPersistence userPersistence;
671: protected UserFinder userFinder;
672: protected MBMessageLocalService mbMessageLocalService;
673: protected MBMessageService mbMessageService;
674: protected MBMessagePersistence mbMessagePersistence;
675: protected MBMessageFinder mbMessageFinder;
676: protected RatingsStatsLocalService ratingsStatsLocalService;
677: protected RatingsStatsPersistence ratingsStatsPersistence;
678: protected TagsAssetLocalService tagsAssetLocalService;
679: protected TagsAssetService tagsAssetService;
680: protected TagsAssetPersistence tagsAssetPersistence;
681: protected TagsAssetFinder tagsAssetFinder;
682: protected TagsEntryLocalService tagsEntryLocalService;
683: protected TagsEntryService tagsEntryService;
684: protected TagsEntryPersistence tagsEntryPersistence;
685: protected TagsEntryFinder tagsEntryFinder;
686: }
|