001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.messageboards.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link MBMessageFlagLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       MBMessageFlagLocalService
024     * @generated
025     */
026    public class MBMessageFlagLocalServiceWrapper
027            implements MBMessageFlagLocalService {
028            public MBMessageFlagLocalServiceWrapper(
029                    MBMessageFlagLocalService mbMessageFlagLocalService) {
030                    _mbMessageFlagLocalService = mbMessageFlagLocalService;
031            }
032    
033            /**
034            * Adds the message boards message flag to the database. Also notifies the appropriate model listeners.
035            *
036            * @param mbMessageFlag the message boards message flag to add
037            * @return the message boards message flag that was added
038            * @throws SystemException if a system exception occurred
039            */
040            public com.liferay.portlet.messageboards.model.MBMessageFlag addMBMessageFlag(
041                    com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag)
042                    throws com.liferay.portal.kernel.exception.SystemException {
043                    return _mbMessageFlagLocalService.addMBMessageFlag(mbMessageFlag);
044            }
045    
046            /**
047            * Creates a new message boards message flag with the primary key. Does not add the message boards message flag to the database.
048            *
049            * @param messageFlagId the primary key for the new message boards message flag
050            * @return the new message boards message flag
051            */
052            public com.liferay.portlet.messageboards.model.MBMessageFlag createMBMessageFlag(
053                    long messageFlagId) {
054                    return _mbMessageFlagLocalService.createMBMessageFlag(messageFlagId);
055            }
056    
057            /**
058            * Deletes the message boards message flag with the primary key from the database. Also notifies the appropriate model listeners.
059            *
060            * @param messageFlagId the primary key of the message boards message flag to delete
061            * @throws PortalException if a message boards message flag with the primary key could not be found
062            * @throws SystemException if a system exception occurred
063            */
064            public void deleteMBMessageFlag(long messageFlagId)
065                    throws com.liferay.portal.kernel.exception.PortalException,
066                            com.liferay.portal.kernel.exception.SystemException {
067                    _mbMessageFlagLocalService.deleteMBMessageFlag(messageFlagId);
068            }
069    
070            /**
071            * Deletes the message boards message flag from the database. Also notifies the appropriate model listeners.
072            *
073            * @param mbMessageFlag the message boards message flag to delete
074            * @throws SystemException if a system exception occurred
075            */
076            public void deleteMBMessageFlag(
077                    com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag)
078                    throws com.liferay.portal.kernel.exception.SystemException {
079                    _mbMessageFlagLocalService.deleteMBMessageFlag(mbMessageFlag);
080            }
081    
082            /**
083            * Performs a dynamic query on the database and returns the matching rows.
084            *
085            * @param dynamicQuery the dynamic query to search with
086            * @return the matching rows
087            * @throws SystemException if a system exception occurred
088            */
089            @SuppressWarnings("rawtypes")
090            public java.util.List dynamicQuery(
091                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
092                    throws com.liferay.portal.kernel.exception.SystemException {
093                    return _mbMessageFlagLocalService.dynamicQuery(dynamicQuery);
094            }
095    
096            /**
097            * Performs a dynamic query on the database and returns a range of the matching rows.
098            *
099            * <p>
100            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
101            * </p>
102            *
103            * @param dynamicQuery the dynamic query to search with
104            * @param start the lower bound of the range of model instances to return
105            * @param end the upper bound of the range of model instances to return (not inclusive)
106            * @return the range of matching rows
107            * @throws SystemException if a system exception occurred
108            */
109            @SuppressWarnings("rawtypes")
110            public java.util.List dynamicQuery(
111                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
112                    int end) throws com.liferay.portal.kernel.exception.SystemException {
113                    return _mbMessageFlagLocalService.dynamicQuery(dynamicQuery, start, end);
114            }
115    
116            /**
117            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
118            *
119            * <p>
120            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
121            * </p>
122            *
123            * @param dynamicQuery the dynamic query to search with
124            * @param start the lower bound of the range of model instances to return
125            * @param end the upper bound of the range of model instances to return (not inclusive)
126            * @param orderByComparator the comparator to order the results by
127            * @return the ordered range of matching rows
128            * @throws SystemException if a system exception occurred
129            */
130            @SuppressWarnings("rawtypes")
131            public java.util.List dynamicQuery(
132                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
133                    int end,
134                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
135                    throws com.liferay.portal.kernel.exception.SystemException {
136                    return _mbMessageFlagLocalService.dynamicQuery(dynamicQuery, start,
137                            end, orderByComparator);
138            }
139    
140            /**
141            * Counts the number of rows that match the dynamic query.
142            *
143            * @param dynamicQuery the dynamic query to search with
144            * @return the number of rows that match the dynamic query
145            * @throws SystemException if a system exception occurred
146            */
147            public long dynamicQueryCount(
148                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
149                    throws com.liferay.portal.kernel.exception.SystemException {
150                    return _mbMessageFlagLocalService.dynamicQueryCount(dynamicQuery);
151            }
152    
153            /**
154            * Gets the message boards message flag with the primary key.
155            *
156            * @param messageFlagId the primary key of the message boards message flag to get
157            * @return the message boards message flag
158            * @throws PortalException if a message boards message flag with the primary key could not be found
159            * @throws SystemException if a system exception occurred
160            */
161            public com.liferay.portlet.messageboards.model.MBMessageFlag getMBMessageFlag(
162                    long messageFlagId)
163                    throws com.liferay.portal.kernel.exception.PortalException,
164                            com.liferay.portal.kernel.exception.SystemException {
165                    return _mbMessageFlagLocalService.getMBMessageFlag(messageFlagId);
166            }
167    
168            /**
169            * Gets a range of all the message boards message flags.
170            *
171            * <p>
172            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
173            * </p>
174            *
175            * @param start the lower bound of the range of message boards message flags to return
176            * @param end the upper bound of the range of message boards message flags to return (not inclusive)
177            * @return the range of message boards message flags
178            * @throws SystemException if a system exception occurred
179            */
180            public java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> getMBMessageFlags(
181                    int start, int end)
182                    throws com.liferay.portal.kernel.exception.SystemException {
183                    return _mbMessageFlagLocalService.getMBMessageFlags(start, end);
184            }
185    
186            /**
187            * Gets the number of message boards message flags.
188            *
189            * @return the number of message boards message flags
190            * @throws SystemException if a system exception occurred
191            */
192            public int getMBMessageFlagsCount()
193                    throws com.liferay.portal.kernel.exception.SystemException {
194                    return _mbMessageFlagLocalService.getMBMessageFlagsCount();
195            }
196    
197            /**
198            * Updates the message boards message flag in the database. Also notifies the appropriate model listeners.
199            *
200            * @param mbMessageFlag the message boards message flag to update
201            * @return the message boards message flag that was updated
202            * @throws SystemException if a system exception occurred
203            */
204            public com.liferay.portlet.messageboards.model.MBMessageFlag updateMBMessageFlag(
205                    com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag)
206                    throws com.liferay.portal.kernel.exception.SystemException {
207                    return _mbMessageFlagLocalService.updateMBMessageFlag(mbMessageFlag);
208            }
209    
210            /**
211            * Updates the message boards message flag in the database. Also notifies the appropriate model listeners.
212            *
213            * @param mbMessageFlag the message boards message flag to update
214            * @param merge whether to merge the message boards message flag with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
215            * @return the message boards message flag that was updated
216            * @throws SystemException if a system exception occurred
217            */
218            public com.liferay.portlet.messageboards.model.MBMessageFlag updateMBMessageFlag(
219                    com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag,
220                    boolean merge)
221                    throws com.liferay.portal.kernel.exception.SystemException {
222                    return _mbMessageFlagLocalService.updateMBMessageFlag(mbMessageFlag,
223                            merge);
224            }
225    
226            public void addReadFlags(long userId,
227                    com.liferay.portlet.messageboards.model.MBThread thread)
228                    throws com.liferay.portal.kernel.exception.PortalException,
229                            com.liferay.portal.kernel.exception.SystemException {
230                    _mbMessageFlagLocalService.addReadFlags(userId, thread);
231            }
232    
233            public void addQuestionFlag(long messageId)
234                    throws com.liferay.portal.kernel.exception.PortalException,
235                            com.liferay.portal.kernel.exception.SystemException {
236                    _mbMessageFlagLocalService.addQuestionFlag(messageId);
237            }
238    
239            public void deleteAnswerFlags(long threadId, long messageId)
240                    throws com.liferay.portal.kernel.exception.SystemException {
241                    _mbMessageFlagLocalService.deleteAnswerFlags(threadId, messageId);
242            }
243    
244            public void deleteFlags(long userId)
245                    throws com.liferay.portal.kernel.exception.SystemException {
246                    _mbMessageFlagLocalService.deleteFlags(userId);
247            }
248    
249            public void deleteFlags(long messageId, int flag)
250                    throws com.liferay.portal.kernel.exception.SystemException {
251                    _mbMessageFlagLocalService.deleteFlags(messageId, flag);
252            }
253    
254            public void deleteQuestionAndAnswerFlags(long threadId)
255                    throws com.liferay.portal.kernel.exception.SystemException {
256                    _mbMessageFlagLocalService.deleteQuestionAndAnswerFlags(threadId);
257            }
258    
259            public void deleteThreadFlags(long threadId)
260                    throws com.liferay.portal.kernel.exception.SystemException {
261                    _mbMessageFlagLocalService.deleteThreadFlags(threadId);
262            }
263    
264            public com.liferay.portlet.messageboards.model.MBMessageFlag getReadFlag(
265                    long userId, com.liferay.portlet.messageboards.model.MBThread thread)
266                    throws com.liferay.portal.kernel.exception.PortalException,
267                            com.liferay.portal.kernel.exception.SystemException {
268                    return _mbMessageFlagLocalService.getReadFlag(userId, thread);
269            }
270    
271            public boolean hasAnswerFlag(long messageId)
272                    throws com.liferay.portal.kernel.exception.SystemException {
273                    return _mbMessageFlagLocalService.hasAnswerFlag(messageId);
274            }
275    
276            public boolean hasQuestionFlag(long messageId)
277                    throws com.liferay.portal.kernel.exception.SystemException {
278                    return _mbMessageFlagLocalService.hasQuestionFlag(messageId);
279            }
280    
281            public boolean hasReadFlag(long userId,
282                    com.liferay.portlet.messageboards.model.MBThread thread)
283                    throws com.liferay.portal.kernel.exception.PortalException,
284                            com.liferay.portal.kernel.exception.SystemException {
285                    return _mbMessageFlagLocalService.hasReadFlag(userId, thread);
286            }
287    
288            public MBMessageFlagLocalService getWrappedMBMessageFlagLocalService() {
289                    return _mbMessageFlagLocalService;
290            }
291    
292            private MBMessageFlagLocalService _mbMessageFlagLocalService;
293    }