001
014
015 package com.liferay.portlet.messageboards.service;
016
017
026 public class MBThreadLocalServiceWrapper implements MBThreadLocalService {
027 public MBThreadLocalServiceWrapper(
028 MBThreadLocalService mbThreadLocalService) {
029 _mbThreadLocalService = mbThreadLocalService;
030 }
031
032
039 public com.liferay.portlet.messageboards.model.MBThread addMBThread(
040 com.liferay.portlet.messageboards.model.MBThread mbThread)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _mbThreadLocalService.addMBThread(mbThread);
043 }
044
045
051 public com.liferay.portlet.messageboards.model.MBThread createMBThread(
052 long threadId) {
053 return _mbThreadLocalService.createMBThread(threadId);
054 }
055
056
063 public void deleteMBThread(long threadId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 _mbThreadLocalService.deleteMBThread(threadId);
067 }
068
069
075 public void deleteMBThread(
076 com.liferay.portlet.messageboards.model.MBThread mbThread)
077 throws com.liferay.portal.kernel.exception.SystemException {
078 _mbThreadLocalService.deleteMBThread(mbThread);
079 }
080
081
088 @SuppressWarnings("rawtypes")
089 public java.util.List dynamicQuery(
090 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
091 throws com.liferay.portal.kernel.exception.SystemException {
092 return _mbThreadLocalService.dynamicQuery(dynamicQuery);
093 }
094
095
108 @SuppressWarnings("rawtypes")
109 public java.util.List dynamicQuery(
110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
111 int end) throws com.liferay.portal.kernel.exception.SystemException {
112 return _mbThreadLocalService.dynamicQuery(dynamicQuery, start, end);
113 }
114
115
129 @SuppressWarnings("rawtypes")
130 public java.util.List dynamicQuery(
131 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
132 int end,
133 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
134 throws com.liferay.portal.kernel.exception.SystemException {
135 return _mbThreadLocalService.dynamicQuery(dynamicQuery, start, end,
136 orderByComparator);
137 }
138
139
146 public long dynamicQueryCount(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
148 throws com.liferay.portal.kernel.exception.SystemException {
149 return _mbThreadLocalService.dynamicQueryCount(dynamicQuery);
150 }
151
152
160 public com.liferay.portlet.messageboards.model.MBThread getMBThread(
161 long threadId)
162 throws com.liferay.portal.kernel.exception.PortalException,
163 com.liferay.portal.kernel.exception.SystemException {
164 return _mbThreadLocalService.getMBThread(threadId);
165 }
166
167
179 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getMBThreads(
180 int start, int end)
181 throws com.liferay.portal.kernel.exception.SystemException {
182 return _mbThreadLocalService.getMBThreads(start, end);
183 }
184
185
191 public int getMBThreadsCount()
192 throws com.liferay.portal.kernel.exception.SystemException {
193 return _mbThreadLocalService.getMBThreadsCount();
194 }
195
196
203 public com.liferay.portlet.messageboards.model.MBThread updateMBThread(
204 com.liferay.portlet.messageboards.model.MBThread mbThread)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _mbThreadLocalService.updateMBThread(mbThread);
207 }
208
209
217 public com.liferay.portlet.messageboards.model.MBThread updateMBThread(
218 com.liferay.portlet.messageboards.model.MBThread mbThread, boolean merge)
219 throws com.liferay.portal.kernel.exception.SystemException {
220 return _mbThreadLocalService.updateMBThread(mbThread, merge);
221 }
222
223 public void deleteThread(long threadId)
224 throws com.liferay.portal.kernel.exception.PortalException,
225 com.liferay.portal.kernel.exception.SystemException {
226 _mbThreadLocalService.deleteThread(threadId);
227 }
228
229 public void deleteThread(
230 com.liferay.portlet.messageboards.model.MBThread thread)
231 throws com.liferay.portal.kernel.exception.PortalException,
232 com.liferay.portal.kernel.exception.SystemException {
233 _mbThreadLocalService.deleteThread(thread);
234 }
235
236 public void deleteThreads(long groupId, long categoryId)
237 throws com.liferay.portal.kernel.exception.PortalException,
238 com.liferay.portal.kernel.exception.SystemException {
239 _mbThreadLocalService.deleteThreads(groupId, categoryId);
240 }
241
242 public int getCategoryThreadsCount(long groupId, long categoryId, int status)
243 throws com.liferay.portal.kernel.exception.SystemException {
244 return _mbThreadLocalService.getCategoryThreadsCount(groupId,
245 categoryId, status);
246 }
247
248 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
249 long groupId, int status, int start, int end)
250 throws com.liferay.portal.kernel.exception.SystemException {
251 return _mbThreadLocalService.getGroupThreads(groupId, status, start, end);
252 }
253
254 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
255 long groupId, long userId, int status, boolean subscribed,
256 boolean includeAnonymous, int start, int end)
257 throws com.liferay.portal.kernel.exception.PortalException,
258 com.liferay.portal.kernel.exception.SystemException {
259 return _mbThreadLocalService.getGroupThreads(groupId, userId, status,
260 subscribed, includeAnonymous, start, end);
261 }
262
263 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
264 long groupId, long userId, int status, boolean subscribed, int start,
265 int end)
266 throws com.liferay.portal.kernel.exception.PortalException,
267 com.liferay.portal.kernel.exception.SystemException {
268 return _mbThreadLocalService.getGroupThreads(groupId, userId, status,
269 subscribed, start, end);
270 }
271
272 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getGroupThreads(
273 long groupId, long userId, int status, int start, int end)
274 throws com.liferay.portal.kernel.exception.PortalException,
275 com.liferay.portal.kernel.exception.SystemException {
276 return _mbThreadLocalService.getGroupThreads(groupId, userId, status,
277 start, end);
278 }
279
280 public int getGroupThreadsCount(long groupId, int status)
281 throws com.liferay.portal.kernel.exception.SystemException {
282 return _mbThreadLocalService.getGroupThreadsCount(groupId, status);
283 }
284
285 public int getGroupThreadsCount(long groupId, long userId, int status)
286 throws com.liferay.portal.kernel.exception.SystemException {
287 return _mbThreadLocalService.getGroupThreadsCount(groupId, userId,
288 status);
289 }
290
291 public int getGroupThreadsCount(long groupId, long userId, int status,
292 boolean subscribed)
293 throws com.liferay.portal.kernel.exception.SystemException {
294 return _mbThreadLocalService.getGroupThreadsCount(groupId, userId,
295 status, subscribed);
296 }
297
298 public int getGroupThreadsCount(long groupId, long userId, int status,
299 boolean subscribed, boolean includeAnonymous)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 return _mbThreadLocalService.getGroupThreadsCount(groupId, userId,
302 status, subscribed, includeAnonymous);
303 }
304
305 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getPriorityThreads(
306 long categoryId, double priority)
307 throws com.liferay.portal.kernel.exception.PortalException,
308 com.liferay.portal.kernel.exception.SystemException {
309 return _mbThreadLocalService.getPriorityThreads(categoryId, priority);
310 }
311
312 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getPriorityThreads(
313 long categoryId, double priority, boolean inherit)
314 throws com.liferay.portal.kernel.exception.PortalException,
315 com.liferay.portal.kernel.exception.SystemException {
316 return _mbThreadLocalService.getPriorityThreads(categoryId, priority,
317 inherit);
318 }
319
320 public com.liferay.portlet.messageboards.model.MBThread getThread(
321 long threadId)
322 throws com.liferay.portal.kernel.exception.PortalException,
323 com.liferay.portal.kernel.exception.SystemException {
324 return _mbThreadLocalService.getThread(threadId);
325 }
326
327 public java.util.List<com.liferay.portlet.messageboards.model.MBThread> getThreads(
328 long groupId, long categoryId, int status, int start, int end)
329 throws com.liferay.portal.kernel.exception.SystemException {
330 return _mbThreadLocalService.getThreads(groupId, categoryId, status,
331 start, end);
332 }
333
334 public int getThreadsCount(long groupId, long categoryId, int status)
335 throws com.liferay.portal.kernel.exception.SystemException {
336 return _mbThreadLocalService.getThreadsCount(groupId, categoryId, status);
337 }
338
339 public com.liferay.portlet.messageboards.model.MBThread moveThread(
340 long groupId, long categoryId, long threadId)
341 throws com.liferay.portal.kernel.exception.PortalException,
342 com.liferay.portal.kernel.exception.SystemException {
343 return _mbThreadLocalService.moveThread(groupId, categoryId, threadId);
344 }
345
346 public com.liferay.portlet.messageboards.model.MBThread splitThread(
347 long messageId, com.liferay.portal.service.ServiceContext serviceContext)
348 throws com.liferay.portal.kernel.exception.PortalException,
349 com.liferay.portal.kernel.exception.SystemException {
350 return _mbThreadLocalService.splitThread(messageId, serviceContext);
351 }
352
353 public com.liferay.portlet.messageboards.model.MBThread updateThread(
354 long threadId, int viewCount)
355 throws com.liferay.portal.kernel.exception.PortalException,
356 com.liferay.portal.kernel.exception.SystemException {
357 return _mbThreadLocalService.updateThread(threadId, viewCount);
358 }
359
360 public MBThreadLocalService getWrappedMBThreadLocalService() {
361 return _mbThreadLocalService;
362 }
363
364 private MBThreadLocalService _mbThreadLocalService;
365 }