1
14
15 package com.liferay.portlet.messageboards.service;
16
17
18
34 public class MBMessageLocalServiceWrapper implements MBMessageLocalService {
35 public MBMessageLocalServiceWrapper(
36 MBMessageLocalService mbMessageLocalService) {
37 _mbMessageLocalService = mbMessageLocalService;
38 }
39
40 public com.liferay.portlet.messageboards.model.MBMessage addMBMessage(
41 com.liferay.portlet.messageboards.model.MBMessage mbMessage)
42 throws com.liferay.portal.SystemException {
43 return _mbMessageLocalService.addMBMessage(mbMessage);
44 }
45
46 public com.liferay.portlet.messageboards.model.MBMessage createMBMessage(
47 long messageId) {
48 return _mbMessageLocalService.createMBMessage(messageId);
49 }
50
51 public void deleteMBMessage(long messageId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _mbMessageLocalService.deleteMBMessage(messageId);
55 }
56
57 public void deleteMBMessage(
58 com.liferay.portlet.messageboards.model.MBMessage mbMessage)
59 throws com.liferay.portal.SystemException {
60 _mbMessageLocalService.deleteMBMessage(mbMessage);
61 }
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _mbMessageLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException {
72 return _mbMessageLocalService.dynamicQuery(dynamicQuery, start, end);
73 }
74
75 public com.liferay.portlet.messageboards.model.MBMessage getMBMessage(
76 long messageId)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 return _mbMessageLocalService.getMBMessage(messageId);
80 }
81
82 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getMBMessages(
83 int start, int end) throws com.liferay.portal.SystemException {
84 return _mbMessageLocalService.getMBMessages(start, end);
85 }
86
87 public int getMBMessagesCount() throws com.liferay.portal.SystemException {
88 return _mbMessageLocalService.getMBMessagesCount();
89 }
90
91 public com.liferay.portlet.messageboards.model.MBMessage updateMBMessage(
92 com.liferay.portlet.messageboards.model.MBMessage mbMessage)
93 throws com.liferay.portal.SystemException {
94 return _mbMessageLocalService.updateMBMessage(mbMessage);
95 }
96
97 public com.liferay.portlet.messageboards.model.MBMessage updateMBMessage(
98 com.liferay.portlet.messageboards.model.MBMessage mbMessage,
99 boolean merge) throws com.liferay.portal.SystemException {
100 return _mbMessageLocalService.updateMBMessage(mbMessage, merge);
101 }
102
103 public com.liferay.portlet.messageboards.model.MBMessage addDiscussionMessage(
104 long userId, java.lang.String userName, long groupId,
105 java.lang.String className, long classPK, long threadId,
106 long parentMessageId, java.lang.String subject, java.lang.String body)
107 throws com.liferay.portal.PortalException,
108 com.liferay.portal.SystemException {
109 return _mbMessageLocalService.addDiscussionMessage(userId, userName,
110 groupId, className, classPK, threadId, parentMessageId, subject,
111 body);
112 }
113
114 public com.liferay.portlet.messageboards.model.MBMessage addDiscussionMessage(
115 long userId, java.lang.String userName, long groupId,
116 java.lang.String className, long classPK, long threadId,
117 long parentMessageId, java.lang.String subject, java.lang.String body,
118 com.liferay.portal.theme.ThemeDisplay themeDisplay)
119 throws com.liferay.portal.PortalException,
120 com.liferay.portal.SystemException {
121 return _mbMessageLocalService.addDiscussionMessage(userId, userName,
122 groupId, className, classPK, threadId, parentMessageId, subject,
123 body, themeDisplay);
124 }
125
126 public com.liferay.portlet.messageboards.model.MBMessage addDiscussionMessage(
127 long userId, java.lang.String userName, java.lang.String className,
128 long classPK)
129 throws com.liferay.portal.PortalException,
130 com.liferay.portal.SystemException {
131 return _mbMessageLocalService.addDiscussionMessage(userId, userName,
132 className, classPK);
133 }
134
135 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
136 long userId, java.lang.String userName, long categoryId, long threadId,
137 long parentMessageId, java.lang.String subject, java.lang.String body,
138 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
139 boolean anonymous, double priority, java.lang.String[] tagsEntries,
140 javax.portlet.PortletPreferences prefs,
141 boolean addCommunityPermissions, boolean addGuestPermissions,
142 com.liferay.portal.theme.ThemeDisplay themeDisplay)
143 throws com.liferay.portal.PortalException,
144 com.liferay.portal.SystemException {
145 return _mbMessageLocalService.addMessage(userId, userName, categoryId,
146 threadId, parentMessageId, subject, body, files, anonymous,
147 priority, tagsEntries, prefs, addCommunityPermissions,
148 addGuestPermissions, themeDisplay);
149 }
150
151 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
152 long userId, java.lang.String userName, long categoryId, long threadId,
153 long parentMessageId, java.lang.String subject, java.lang.String body,
154 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
155 boolean anonymous, double priority, java.lang.String[] tagsEntries,
156 javax.portlet.PortletPreferences prefs,
157 java.lang.String[] communityPermissions,
158 java.lang.String[] guestPermissions,
159 com.liferay.portal.theme.ThemeDisplay themeDisplay)
160 throws com.liferay.portal.PortalException,
161 com.liferay.portal.SystemException {
162 return _mbMessageLocalService.addMessage(userId, userName, categoryId,
163 threadId, parentMessageId, subject, body, files, anonymous,
164 priority, tagsEntries, prefs, communityPermissions,
165 guestPermissions, themeDisplay);
166 }
167
168 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
169 long userId, java.lang.String userName, long categoryId,
170 java.lang.String subject, java.lang.String body,
171 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
172 boolean anonymous, double priority, java.lang.String[] tagsEntries,
173 javax.portlet.PortletPreferences prefs,
174 boolean addCommunityPermissions, boolean addGuestPermissions,
175 com.liferay.portal.theme.ThemeDisplay themeDisplay)
176 throws com.liferay.portal.PortalException,
177 com.liferay.portal.SystemException {
178 return _mbMessageLocalService.addMessage(userId, userName, categoryId,
179 subject, body, files, anonymous, priority, tagsEntries, prefs,
180 addCommunityPermissions, addGuestPermissions, themeDisplay);
181 }
182
183 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
184 long userId, java.lang.String userName, long categoryId,
185 java.lang.String subject, java.lang.String body,
186 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
187 boolean anonymous, double priority, java.lang.String[] tagsEntries,
188 javax.portlet.PortletPreferences prefs,
189 java.lang.Boolean addCommunityPermissions,
190 java.lang.Boolean addGuestPermissions,
191 java.lang.String[] communityPermissions,
192 java.lang.String[] guestPermissions,
193 com.liferay.portal.theme.ThemeDisplay themeDisplay)
194 throws com.liferay.portal.PortalException,
195 com.liferay.portal.SystemException {
196 return _mbMessageLocalService.addMessage(userId, userName, categoryId,
197 subject, body, files, anonymous, priority, tagsEntries, prefs,
198 addCommunityPermissions, addGuestPermissions, communityPermissions,
199 guestPermissions, themeDisplay);
200 }
201
202 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
203 long userId, java.lang.String userName, long categoryId,
204 java.lang.String subject, java.lang.String body,
205 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
206 boolean anonymous, double priority, java.lang.String[] tagsEntries,
207 javax.portlet.PortletPreferences prefs,
208 java.lang.String[] communityPermissions,
209 java.lang.String[] guestPermissions,
210 com.liferay.portal.theme.ThemeDisplay themeDisplay)
211 throws com.liferay.portal.PortalException,
212 com.liferay.portal.SystemException {
213 return _mbMessageLocalService.addMessage(userId, userName, categoryId,
214 subject, body, files, anonymous, priority, tagsEntries, prefs,
215 communityPermissions, guestPermissions, themeDisplay);
216 }
217
218 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
219 java.lang.String uuid, long userId, java.lang.String userName,
220 long categoryId, long threadId, long parentMessageId,
221 java.lang.String subject, java.lang.String body,
222 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
223 boolean anonymous, double priority, java.lang.String[] tagsEntries,
224 javax.portlet.PortletPreferences prefs,
225 boolean addCommunityPermissions, boolean addGuestPermissions,
226 com.liferay.portal.theme.ThemeDisplay themeDisplay)
227 throws com.liferay.portal.PortalException,
228 com.liferay.portal.SystemException {
229 return _mbMessageLocalService.addMessage(uuid, userId, userName,
230 categoryId, threadId, parentMessageId, subject, body, files,
231 anonymous, priority, tagsEntries, prefs, addCommunityPermissions,
232 addGuestPermissions, themeDisplay);
233 }
234
235 public com.liferay.portlet.messageboards.model.MBMessage addMessage(
236 java.lang.String uuid, long userId, java.lang.String userName,
237 long categoryId, long threadId, long parentMessageId,
238 java.lang.String subject, java.lang.String body,
239 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
240 boolean anonymous, double priority, java.lang.String[] tagsEntries,
241 javax.portlet.PortletPreferences prefs,
242 java.lang.Boolean addCommunityPermissions,
243 java.lang.Boolean addGuestPermissions,
244 java.lang.String[] communityPermissions,
245 java.lang.String[] guestPermissions,
246 com.liferay.portal.theme.ThemeDisplay themeDisplay)
247 throws com.liferay.portal.PortalException,
248 com.liferay.portal.SystemException {
249 return _mbMessageLocalService.addMessage(uuid, userId, userName,
250 categoryId, threadId, parentMessageId, subject, body, files,
251 anonymous, priority, tagsEntries, prefs, addCommunityPermissions,
252 addGuestPermissions, communityPermissions, guestPermissions,
253 themeDisplay);
254 }
255
256 public void addMessageResources(long messageId,
257 boolean addCommunityPermissions, boolean addGuestPermissions)
258 throws com.liferay.portal.PortalException,
259 com.liferay.portal.SystemException {
260 _mbMessageLocalService.addMessageResources(messageId,
261 addCommunityPermissions, addGuestPermissions);
262 }
263
264 public void addMessageResources(long messageId,
265 java.lang.String[] communityPermissions,
266 java.lang.String[] guestPermissions)
267 throws com.liferay.portal.PortalException,
268 com.liferay.portal.SystemException {
269 _mbMessageLocalService.addMessageResources(messageId,
270 communityPermissions, guestPermissions);
271 }
272
273 public void addMessageResources(
274 com.liferay.portlet.messageboards.model.MBMessage message,
275 boolean addCommunityPermissions, boolean addGuestPermissions)
276 throws com.liferay.portal.PortalException,
277 com.liferay.portal.SystemException {
278 _mbMessageLocalService.addMessageResources(message,
279 addCommunityPermissions, addGuestPermissions);
280 }
281
282 public void addMessageResources(
283 com.liferay.portlet.messageboards.model.MBMessage message,
284 java.lang.String[] communityPermissions,
285 java.lang.String[] guestPermissions)
286 throws com.liferay.portal.PortalException,
287 com.liferay.portal.SystemException {
288 _mbMessageLocalService.addMessageResources(message,
289 communityPermissions, guestPermissions);
290 }
291
292 public void deleteDiscussionMessage(long messageId)
293 throws com.liferay.portal.PortalException,
294 com.liferay.portal.SystemException {
295 _mbMessageLocalService.deleteDiscussionMessage(messageId);
296 }
297
298 public void deleteDiscussionMessages(java.lang.String className,
299 long classPK)
300 throws com.liferay.portal.PortalException,
301 com.liferay.portal.SystemException {
302 _mbMessageLocalService.deleteDiscussionMessages(className, classPK);
303 }
304
305 public void deleteMessage(long messageId)
306 throws com.liferay.portal.PortalException,
307 com.liferay.portal.SystemException {
308 _mbMessageLocalService.deleteMessage(messageId);
309 }
310
311 public void deleteMessage(
312 com.liferay.portlet.messageboards.model.MBMessage message)
313 throws com.liferay.portal.PortalException,
314 com.liferay.portal.SystemException {
315 _mbMessageLocalService.deleteMessage(message);
316 }
317
318 public int getCategoriesMessagesCount(java.util.List<Long> categoryIds)
319 throws com.liferay.portal.SystemException {
320 return _mbMessageLocalService.getCategoriesMessagesCount(categoryIds);
321 }
322
323 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getCategoryMessages(
324 long categoryId, int start, int end)
325 throws com.liferay.portal.SystemException {
326 return _mbMessageLocalService.getCategoryMessages(categoryId, start, end);
327 }
328
329 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getCategoryMessages(
330 long categoryId, int start, int end,
331 com.liferay.portal.kernel.util.OrderByComparator obc)
332 throws com.liferay.portal.SystemException {
333 return _mbMessageLocalService.getCategoryMessages(categoryId, start,
334 end, obc);
335 }
336
337 public int getCategoryMessagesCount(long categoryId)
338 throws com.liferay.portal.SystemException {
339 return _mbMessageLocalService.getCategoryMessagesCount(categoryId);
340 }
341
342 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getCompanyMessages(
343 long companyId, int start, int end)
344 throws com.liferay.portal.SystemException {
345 return _mbMessageLocalService.getCompanyMessages(companyId, start, end);
346 }
347
348 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getCompanyMessages(
349 long companyId, int start, int end,
350 com.liferay.portal.kernel.util.OrderByComparator obc)
351 throws com.liferay.portal.SystemException {
352 return _mbMessageLocalService.getCompanyMessages(companyId, start, end,
353 obc);
354 }
355
356 public int getCompanyMessagesCount(long companyId)
357 throws com.liferay.portal.SystemException {
358 return _mbMessageLocalService.getCompanyMessagesCount(companyId);
359 }
360
361 public com.liferay.portlet.messageboards.model.MBMessageDisplay getDiscussionMessageDisplay(
362 long userId, java.lang.String className, long classPK)
363 throws com.liferay.portal.PortalException,
364 com.liferay.portal.SystemException {
365 return _mbMessageLocalService.getDiscussionMessageDisplay(userId,
366 className, classPK);
367 }
368
369 public com.liferay.portlet.messageboards.model.MBMessageDisplay getDiscussionMessageDisplay(
370 long userId, java.lang.String className, long classPK,
371 java.lang.String threadView)
372 throws com.liferay.portal.PortalException,
373 com.liferay.portal.SystemException {
374 return _mbMessageLocalService.getDiscussionMessageDisplay(userId,
375 className, classPK, threadView);
376 }
377
378 public int getDiscussionMessagesCount(long classNameId, long classPK)
379 throws com.liferay.portal.SystemException {
380 return _mbMessageLocalService.getDiscussionMessagesCount(classNameId,
381 classPK);
382 }
383
384 public java.util.List<com.liferay.portlet.messageboards.model.MBDiscussion> getDiscussions(
385 java.lang.String className) throws com.liferay.portal.SystemException {
386 return _mbMessageLocalService.getDiscussions(className);
387 }
388
389 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getGroupMessages(
390 long groupId, int start, int end)
391 throws com.liferay.portal.SystemException {
392 return _mbMessageLocalService.getGroupMessages(groupId, start, end);
393 }
394
395 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getGroupMessages(
396 long groupId, int start, int end,
397 com.liferay.portal.kernel.util.OrderByComparator obc)
398 throws com.liferay.portal.SystemException {
399 return _mbMessageLocalService.getGroupMessages(groupId, start, end, obc);
400 }
401
402 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getGroupMessages(
403 long groupId, long userId, int start, int end)
404 throws com.liferay.portal.SystemException {
405 return _mbMessageLocalService.getGroupMessages(groupId, userId, start,
406 end);
407 }
408
409 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getGroupMessages(
410 long groupId, long userId, int start, int end,
411 com.liferay.portal.kernel.util.OrderByComparator obc)
412 throws com.liferay.portal.SystemException {
413 return _mbMessageLocalService.getGroupMessages(groupId, userId, start,
414 end, obc);
415 }
416
417 public int getGroupMessagesCount(long groupId)
418 throws com.liferay.portal.SystemException {
419 return _mbMessageLocalService.getGroupMessagesCount(groupId);
420 }
421
422 public int getGroupMessagesCount(long groupId, long userId)
423 throws com.liferay.portal.SystemException {
424 return _mbMessageLocalService.getGroupMessagesCount(groupId, userId);
425 }
426
427 public com.liferay.portlet.messageboards.model.MBMessage getMessage(
428 long messageId)
429 throws com.liferay.portal.PortalException,
430 com.liferay.portal.SystemException {
431 return _mbMessageLocalService.getMessage(messageId);
432 }
433
434 public com.liferay.portlet.messageboards.model.MBMessageDisplay getMessageDisplay(
435 long messageId)
436 throws com.liferay.portal.PortalException,
437 com.liferay.portal.SystemException {
438 return _mbMessageLocalService.getMessageDisplay(messageId);
439 }
440
441 public com.liferay.portlet.messageboards.model.MBMessageDisplay getMessageDisplay(
442 long messageId, java.lang.String threadView)
443 throws com.liferay.portal.PortalException,
444 com.liferay.portal.SystemException {
445 return _mbMessageLocalService.getMessageDisplay(messageId, threadView);
446 }
447
448 public com.liferay.portlet.messageboards.model.MBMessageDisplay getMessageDisplay(
449 com.liferay.portlet.messageboards.model.MBMessage message)
450 throws com.liferay.portal.PortalException,
451 com.liferay.portal.SystemException {
452 return _mbMessageLocalService.getMessageDisplay(message);
453 }
454
455 public com.liferay.portlet.messageboards.model.MBMessageDisplay getMessageDisplay(
456 com.liferay.portlet.messageboards.model.MBMessage message,
457 java.lang.String threadView)
458 throws com.liferay.portal.PortalException,
459 com.liferay.portal.SystemException {
460 return _mbMessageLocalService.getMessageDisplay(message, threadView);
461 }
462
463 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getMessages(
464 java.lang.String className, long classPK)
465 throws com.liferay.portal.SystemException {
466 return _mbMessageLocalService.getMessages(className, classPK);
467 }
468
469 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getNoAssetMessages()
470 throws com.liferay.portal.SystemException {
471 return _mbMessageLocalService.getNoAssetMessages();
472 }
473
474 public int getPositionInThread(long messageId)
475 throws com.liferay.portal.PortalException,
476 com.liferay.portal.SystemException {
477 return _mbMessageLocalService.getPositionInThread(messageId);
478 }
479
480 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getThreadMessages(
481 long threadId) throws com.liferay.portal.SystemException {
482 return _mbMessageLocalService.getThreadMessages(threadId);
483 }
484
485 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getThreadMessages(
486 long threadId,
487 java.util.Comparator<com.liferay.portlet.messageboards.model.MBMessage> comparator)
488 throws com.liferay.portal.SystemException {
489 return _mbMessageLocalService.getThreadMessages(threadId, comparator);
490 }
491
492 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getThreadMessages(
493 long threadId, int start, int end)
494 throws com.liferay.portal.SystemException {
495 return _mbMessageLocalService.getThreadMessages(threadId, start, end);
496 }
497
498 public int getThreadMessagesCount(long threadId)
499 throws com.liferay.portal.SystemException {
500 return _mbMessageLocalService.getThreadMessagesCount(threadId);
501 }
502
503 public java.util.List<com.liferay.portlet.messageboards.model.MBMessage> getThreadRepliesMessages(
504 long threadId, int start, int end)
505 throws com.liferay.portal.SystemException {
506 return _mbMessageLocalService.getThreadRepliesMessages(threadId, start,
507 end);
508 }
509
510 public void reIndex(long messageId)
511 throws com.liferay.portal.SystemException {
512 _mbMessageLocalService.reIndex(messageId);
513 }
514
515 public void reIndex(
516 com.liferay.portlet.messageboards.model.MBMessage message)
517 throws com.liferay.portal.SystemException {
518 _mbMessageLocalService.reIndex(message);
519 }
520
521 public void subscribeMessage(long userId, long messageId)
522 throws com.liferay.portal.PortalException,
523 com.liferay.portal.SystemException {
524 _mbMessageLocalService.subscribeMessage(userId, messageId);
525 }
526
527 public void unsubscribeMessage(long userId, long messageId)
528 throws com.liferay.portal.PortalException,
529 com.liferay.portal.SystemException {
530 _mbMessageLocalService.unsubscribeMessage(userId, messageId);
531 }
532
533 public com.liferay.portlet.messageboards.model.MBMessage updateDiscussionMessage(
534 long userId, long messageId, java.lang.String subject,
535 java.lang.String body)
536 throws com.liferay.portal.PortalException,
537 com.liferay.portal.SystemException {
538 return _mbMessageLocalService.updateDiscussionMessage(userId,
539 messageId, subject, body);
540 }
541
542 public com.liferay.portlet.messageboards.model.MBMessage updateMessage(
543 long messageId, java.util.Date createDate, java.util.Date modifiedDate)
544 throws com.liferay.portal.PortalException,
545 com.liferay.portal.SystemException {
546 return _mbMessageLocalService.updateMessage(messageId, createDate,
547 modifiedDate);
548 }
549
550 public com.liferay.portlet.messageboards.model.MBMessage updateMessage(
551 long userId, long messageId, java.lang.String subject,
552 java.lang.String body,
553 java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<String, byte[]>> files,
554 java.util.List<String> existingFiles, double priority,
555 java.lang.String[] tagsEntries, javax.portlet.PortletPreferences prefs,
556 com.liferay.portal.theme.ThemeDisplay themeDisplay)
557 throws com.liferay.portal.PortalException,
558 com.liferay.portal.SystemException {
559 return _mbMessageLocalService.updateMessage(userId, messageId, subject,
560 body, files, existingFiles, priority, tagsEntries, prefs,
561 themeDisplay);
562 }
563
564 public com.liferay.portlet.messageboards.model.MBMessage updateMessage(
565 long messageId, java.lang.String body)
566 throws com.liferay.portal.PortalException,
567 com.liferay.portal.SystemException {
568 return _mbMessageLocalService.updateMessage(messageId, body);
569 }
570
571 public void updateTagsAsset(long userId,
572 com.liferay.portlet.messageboards.model.MBMessage message,
573 java.lang.String[] tagsEntries)
574 throws com.liferay.portal.PortalException,
575 com.liferay.portal.SystemException {
576 _mbMessageLocalService.updateTagsAsset(userId, message, tagsEntries);
577 }
578
579 public MBMessageLocalService getWrappedMBMessageLocalService() {
580 return _mbMessageLocalService;
581 }
582
583 private MBMessageLocalService _mbMessageLocalService;
584 }