001
014
015 package com.liferay.portlet.messageboards.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class MBThreadFlagLocalServiceWrapper implements MBThreadFlagLocalService,
029 ServiceWrapper<MBThreadFlagLocalService> {
030 public MBThreadFlagLocalServiceWrapper(
031 MBThreadFlagLocalService mbThreadFlagLocalService) {
032 _mbThreadFlagLocalService = mbThreadFlagLocalService;
033 }
034
035
042 public com.liferay.portlet.messageboards.model.MBThreadFlag addMBThreadFlag(
043 com.liferay.portlet.messageboards.model.MBThreadFlag mbThreadFlag)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _mbThreadFlagLocalService.addMBThreadFlag(mbThreadFlag);
046 }
047
048
054 public com.liferay.portlet.messageboards.model.MBThreadFlag createMBThreadFlag(
055 long threadFlagId) {
056 return _mbThreadFlagLocalService.createMBThreadFlag(threadFlagId);
057 }
058
059
067 public com.liferay.portlet.messageboards.model.MBThreadFlag deleteMBThreadFlag(
068 long threadFlagId)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _mbThreadFlagLocalService.deleteMBThreadFlag(threadFlagId);
072 }
073
074
081 public com.liferay.portlet.messageboards.model.MBThreadFlag deleteMBThreadFlag(
082 com.liferay.portlet.messageboards.model.MBThreadFlag mbThreadFlag)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _mbThreadFlagLocalService.deleteMBThreadFlag(mbThreadFlag);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _mbThreadFlagLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _mbThreadFlagLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _mbThreadFlagLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _mbThreadFlagLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _mbThreadFlagLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.messageboards.model.MBThreadFlag fetchMBThreadFlag(
163 long threadFlagId)
164 throws com.liferay.portal.kernel.exception.SystemException {
165 return _mbThreadFlagLocalService.fetchMBThreadFlag(threadFlagId);
166 }
167
168
176 public com.liferay.portlet.messageboards.model.MBThreadFlag getMBThreadFlag(
177 long threadFlagId)
178 throws com.liferay.portal.kernel.exception.PortalException,
179 com.liferay.portal.kernel.exception.SystemException {
180 return _mbThreadFlagLocalService.getMBThreadFlag(threadFlagId);
181 }
182
183 public com.liferay.portal.model.PersistedModel getPersistedModel(
184 java.io.Serializable primaryKeyObj)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _mbThreadFlagLocalService.getPersistedModel(primaryKeyObj);
188 }
189
190
202 public java.util.List<com.liferay.portlet.messageboards.model.MBThreadFlag> getMBThreadFlags(
203 int start, int end)
204 throws com.liferay.portal.kernel.exception.SystemException {
205 return _mbThreadFlagLocalService.getMBThreadFlags(start, end);
206 }
207
208
214 public int getMBThreadFlagsCount()
215 throws com.liferay.portal.kernel.exception.SystemException {
216 return _mbThreadFlagLocalService.getMBThreadFlagsCount();
217 }
218
219
226 public com.liferay.portlet.messageboards.model.MBThreadFlag updateMBThreadFlag(
227 com.liferay.portlet.messageboards.model.MBThreadFlag mbThreadFlag)
228 throws com.liferay.portal.kernel.exception.SystemException {
229 return _mbThreadFlagLocalService.updateMBThreadFlag(mbThreadFlag);
230 }
231
232
240 public com.liferay.portlet.messageboards.model.MBThreadFlag updateMBThreadFlag(
241 com.liferay.portlet.messageboards.model.MBThreadFlag mbThreadFlag,
242 boolean merge)
243 throws com.liferay.portal.kernel.exception.SystemException {
244 return _mbThreadFlagLocalService.updateMBThreadFlag(mbThreadFlag, merge);
245 }
246
247
252 public java.lang.String getBeanIdentifier() {
253 return _mbThreadFlagLocalService.getBeanIdentifier();
254 }
255
256
261 public void setBeanIdentifier(java.lang.String beanIdentifier) {
262 _mbThreadFlagLocalService.setBeanIdentifier(beanIdentifier);
263 }
264
265 public void addThreadFlag(long userId,
266 com.liferay.portlet.messageboards.model.MBThread thread)
267 throws com.liferay.portal.kernel.exception.PortalException,
268 com.liferay.portal.kernel.exception.SystemException {
269 _mbThreadFlagLocalService.addThreadFlag(userId, thread);
270 }
271
272 public void deleteThreadFlag(long threadFlagId)
273 throws com.liferay.portal.kernel.exception.PortalException,
274 com.liferay.portal.kernel.exception.SystemException {
275 _mbThreadFlagLocalService.deleteThreadFlag(threadFlagId);
276 }
277
278 public void deleteThreadFlag(
279 com.liferay.portlet.messageboards.model.MBThreadFlag threadFlag)
280 throws com.liferay.portal.kernel.exception.SystemException {
281 _mbThreadFlagLocalService.deleteThreadFlag(threadFlag);
282 }
283
284 public void deleteThreadFlagsByThreadId(long threadId)
285 throws com.liferay.portal.kernel.exception.SystemException {
286 _mbThreadFlagLocalService.deleteThreadFlagsByThreadId(threadId);
287 }
288
289 public void deleteThreadFlagsByUserId(long userId)
290 throws com.liferay.portal.kernel.exception.SystemException {
291 _mbThreadFlagLocalService.deleteThreadFlagsByUserId(userId);
292 }
293
294 public com.liferay.portlet.messageboards.model.MBThreadFlag getThreadFlag(
295 long userId, com.liferay.portlet.messageboards.model.MBThread thread)
296 throws com.liferay.portal.kernel.exception.PortalException,
297 com.liferay.portal.kernel.exception.SystemException {
298 return _mbThreadFlagLocalService.getThreadFlag(userId, thread);
299 }
300
301 public boolean hasThreadFlag(long userId,
302 com.liferay.portlet.messageboards.model.MBThread thread)
303 throws com.liferay.portal.kernel.exception.PortalException,
304 com.liferay.portal.kernel.exception.SystemException {
305 return _mbThreadFlagLocalService.hasThreadFlag(userId, thread);
306 }
307
308
311 public MBThreadFlagLocalService getWrappedMBThreadFlagLocalService() {
312 return _mbThreadFlagLocalService;
313 }
314
315
318 public void setWrappedMBThreadFlagLocalService(
319 MBThreadFlagLocalService mbThreadFlagLocalService) {
320 _mbThreadFlagLocalService = mbThreadFlagLocalService;
321 }
322
323 public MBThreadFlagLocalService getWrappedService() {
324 return _mbThreadFlagLocalService;
325 }
326
327 public void setWrappedService(
328 MBThreadFlagLocalService mbThreadFlagLocalService) {
329 _mbThreadFlagLocalService = mbThreadFlagLocalService;
330 }
331
332 private MBThreadFlagLocalService _mbThreadFlagLocalService;
333 }