1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.messageboards.service;
16  
17  
18  /**
19   * <a href="MBBanLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link MBBanLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       MBBanLocalService
32   * @generated
33   */
34  public class MBBanLocalServiceWrapper implements MBBanLocalService {
35      public MBBanLocalServiceWrapper(MBBanLocalService mbBanLocalService) {
36          _mbBanLocalService = mbBanLocalService;
37      }
38  
39      public com.liferay.portlet.messageboards.model.MBBan addMBBan(
40          com.liferay.portlet.messageboards.model.MBBan mbBan)
41          throws com.liferay.portal.kernel.exception.SystemException {
42          return _mbBanLocalService.addMBBan(mbBan);
43      }
44  
45      public com.liferay.portlet.messageboards.model.MBBan createMBBan(long banId) {
46          return _mbBanLocalService.createMBBan(banId);
47      }
48  
49      public void deleteMBBan(long banId)
50          throws com.liferay.portal.kernel.exception.PortalException,
51              com.liferay.portal.kernel.exception.SystemException {
52          _mbBanLocalService.deleteMBBan(banId);
53      }
54  
55      public void deleteMBBan(com.liferay.portlet.messageboards.model.MBBan mbBan)
56          throws com.liferay.portal.kernel.exception.SystemException {
57          _mbBanLocalService.deleteMBBan(mbBan);
58      }
59  
60      public java.util.List<Object> dynamicQuery(
61          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
62          throws com.liferay.portal.kernel.exception.SystemException {
63          return _mbBanLocalService.dynamicQuery(dynamicQuery);
64      }
65  
66      public java.util.List<Object> dynamicQuery(
67          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
68          int end) throws com.liferay.portal.kernel.exception.SystemException {
69          return _mbBanLocalService.dynamicQuery(dynamicQuery, start, end);
70      }
71  
72      public java.util.List<Object> dynamicQuery(
73          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74          int end,
75          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
76          throws com.liferay.portal.kernel.exception.SystemException {
77          return _mbBanLocalService.dynamicQuery(dynamicQuery, start, end,
78              orderByComparator);
79      }
80  
81      public int dynamicQueryCount(
82          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
83          throws com.liferay.portal.kernel.exception.SystemException {
84          return _mbBanLocalService.dynamicQueryCount(dynamicQuery);
85      }
86  
87      public com.liferay.portlet.messageboards.model.MBBan getMBBan(long banId)
88          throws com.liferay.portal.kernel.exception.PortalException,
89              com.liferay.portal.kernel.exception.SystemException {
90          return _mbBanLocalService.getMBBan(banId);
91      }
92  
93      public java.util.List<com.liferay.portlet.messageboards.model.MBBan> getMBBans(
94          int start, int end)
95          throws com.liferay.portal.kernel.exception.SystemException {
96          return _mbBanLocalService.getMBBans(start, end);
97      }
98  
99      public int getMBBansCount()
100         throws com.liferay.portal.kernel.exception.SystemException {
101         return _mbBanLocalService.getMBBansCount();
102     }
103 
104     public com.liferay.portlet.messageboards.model.MBBan updateMBBan(
105         com.liferay.portlet.messageboards.model.MBBan mbBan)
106         throws com.liferay.portal.kernel.exception.SystemException {
107         return _mbBanLocalService.updateMBBan(mbBan);
108     }
109 
110     public com.liferay.portlet.messageboards.model.MBBan updateMBBan(
111         com.liferay.portlet.messageboards.model.MBBan mbBan, boolean merge)
112         throws com.liferay.portal.kernel.exception.SystemException {
113         return _mbBanLocalService.updateMBBan(mbBan, merge);
114     }
115 
116     public com.liferay.portlet.messageboards.model.MBBan addBan(long userId,
117         long banUserId, com.liferay.portal.service.ServiceContext serviceContext)
118         throws com.liferay.portal.kernel.exception.PortalException,
119             com.liferay.portal.kernel.exception.SystemException {
120         return _mbBanLocalService.addBan(userId, banUserId, serviceContext);
121     }
122 
123     public void checkBan(long groupId, long banUserId)
124         throws com.liferay.portal.kernel.exception.PortalException,
125             com.liferay.portal.kernel.exception.SystemException {
126         _mbBanLocalService.checkBan(groupId, banUserId);
127     }
128 
129     public void deleteBan(long banUserId,
130         com.liferay.portal.service.ServiceContext serviceContext)
131         throws com.liferay.portal.kernel.exception.SystemException {
132         _mbBanLocalService.deleteBan(banUserId, serviceContext);
133     }
134 
135     public void deleteBansByBanUserId(long banUserId)
136         throws com.liferay.portal.kernel.exception.SystemException {
137         _mbBanLocalService.deleteBansByBanUserId(banUserId);
138     }
139 
140     public void deleteBansByGroupId(long groupId)
141         throws com.liferay.portal.kernel.exception.SystemException {
142         _mbBanLocalService.deleteBansByGroupId(groupId);
143     }
144 
145     public void expireBans()
146         throws com.liferay.portal.kernel.exception.SystemException {
147         _mbBanLocalService.expireBans();
148     }
149 
150     public java.util.List<com.liferay.portlet.messageboards.model.MBBan> getBans(
151         long groupId, int start, int end)
152         throws com.liferay.portal.kernel.exception.SystemException {
153         return _mbBanLocalService.getBans(groupId, start, end);
154     }
155 
156     public int getBansCount(long groupId)
157         throws com.liferay.portal.kernel.exception.SystemException {
158         return _mbBanLocalService.getBansCount(groupId);
159     }
160 
161     public boolean hasBan(long groupId, long banUserId)
162         throws com.liferay.portal.kernel.exception.SystemException {
163         return _mbBanLocalService.hasBan(groupId, banUserId);
164     }
165 
166     public MBBanLocalService getWrappedMBBanLocalService() {
167         return _mbBanLocalService;
168     }
169 
170     private MBBanLocalService _mbBanLocalService;
171 }