001    /**
002     * Copyright (c) 2000-2012 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    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link MBMailingListLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       MBMailingListLocalService
026     * @generated
027     */
028    public class MBMailingListLocalServiceWrapper
029            implements MBMailingListLocalService,
030                    ServiceWrapper<MBMailingListLocalService> {
031            public MBMailingListLocalServiceWrapper(
032                    MBMailingListLocalService mbMailingListLocalService) {
033                    _mbMailingListLocalService = mbMailingListLocalService;
034            }
035    
036            /**
037            * Adds the message boards mailing list to the database. Also notifies the appropriate model listeners.
038            *
039            * @param mbMailingList the message boards mailing list
040            * @return the message boards mailing list that was added
041            * @throws SystemException if a system exception occurred
042            */
043            public com.liferay.portlet.messageboards.model.MBMailingList addMBMailingList(
044                    com.liferay.portlet.messageboards.model.MBMailingList mbMailingList)
045                    throws com.liferay.portal.kernel.exception.SystemException {
046                    return _mbMailingListLocalService.addMBMailingList(mbMailingList);
047            }
048    
049            /**
050            * Creates a new message boards mailing list with the primary key. Does not add the message boards mailing list to the database.
051            *
052            * @param mailingListId the primary key for the new message boards mailing list
053            * @return the new message boards mailing list
054            */
055            public com.liferay.portlet.messageboards.model.MBMailingList createMBMailingList(
056                    long mailingListId) {
057                    return _mbMailingListLocalService.createMBMailingList(mailingListId);
058            }
059    
060            /**
061            * Deletes the message boards mailing list with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param mailingListId the primary key of the message boards mailing list
064            * @return the message boards mailing list that was removed
065            * @throws PortalException if a message boards mailing list with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            public com.liferay.portlet.messageboards.model.MBMailingList deleteMBMailingList(
069                    long mailingListId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _mbMailingListLocalService.deleteMBMailingList(mailingListId);
073            }
074    
075            /**
076            * Deletes the message boards mailing list from the database. Also notifies the appropriate model listeners.
077            *
078            * @param mbMailingList the message boards mailing list
079            * @return the message boards mailing list that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            public com.liferay.portlet.messageboards.model.MBMailingList deleteMBMailingList(
083                    com.liferay.portlet.messageboards.model.MBMailingList mbMailingList)
084                    throws com.liferay.portal.kernel.exception.SystemException {
085                    return _mbMailingListLocalService.deleteMBMailingList(mbMailingList);
086            }
087    
088            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089                    return _mbMailingListLocalService.dynamicQuery();
090            }
091    
092            /**
093            * Performs a dynamic query on the database and returns the matching rows.
094            *
095            * @param dynamicQuery the dynamic query
096            * @return the matching rows
097            * @throws SystemException if a system exception occurred
098            */
099            @SuppressWarnings("rawtypes")
100            public java.util.List dynamicQuery(
101                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102                    throws com.liferay.portal.kernel.exception.SystemException {
103                    return _mbMailingListLocalService.dynamicQuery(dynamicQuery);
104            }
105    
106            /**
107            * Performs a dynamic query on the database and returns a range of the matching rows.
108            *
109            * <p>
110            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
111            * </p>
112            *
113            * @param dynamicQuery the dynamic query
114            * @param start the lower bound of the range of model instances
115            * @param end the upper bound of the range of model instances (not inclusive)
116            * @return the range of matching rows
117            * @throws SystemException if a system exception occurred
118            */
119            @SuppressWarnings("rawtypes")
120            public java.util.List dynamicQuery(
121                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122                    int end) throws com.liferay.portal.kernel.exception.SystemException {
123                    return _mbMailingListLocalService.dynamicQuery(dynamicQuery, start, end);
124            }
125    
126            /**
127            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
128            *
129            * <p>
130            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
131            * </p>
132            *
133            * @param dynamicQuery the dynamic query
134            * @param start the lower bound of the range of model instances
135            * @param end the upper bound of the range of model instances (not inclusive)
136            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
137            * @return the ordered range of matching rows
138            * @throws SystemException if a system exception occurred
139            */
140            @SuppressWarnings("rawtypes")
141            public java.util.List dynamicQuery(
142                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143                    int end,
144                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145                    throws com.liferay.portal.kernel.exception.SystemException {
146                    return _mbMailingListLocalService.dynamicQuery(dynamicQuery, start,
147                            end, orderByComparator);
148            }
149    
150            /**
151            * Returns the number of rows that match the dynamic query.
152            *
153            * @param dynamicQuery the dynamic query
154            * @return the number of rows that match the dynamic query
155            * @throws SystemException if a system exception occurred
156            */
157            public long dynamicQueryCount(
158                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159                    throws com.liferay.portal.kernel.exception.SystemException {
160                    return _mbMailingListLocalService.dynamicQueryCount(dynamicQuery);
161            }
162    
163            public com.liferay.portlet.messageboards.model.MBMailingList fetchMBMailingList(
164                    long mailingListId)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _mbMailingListLocalService.fetchMBMailingList(mailingListId);
167            }
168    
169            /**
170            * Returns the message boards mailing list with the primary key.
171            *
172            * @param mailingListId the primary key of the message boards mailing list
173            * @return the message boards mailing list
174            * @throws PortalException if a message boards mailing list with the primary key could not be found
175            * @throws SystemException if a system exception occurred
176            */
177            public com.liferay.portlet.messageboards.model.MBMailingList getMBMailingList(
178                    long mailingListId)
179                    throws com.liferay.portal.kernel.exception.PortalException,
180                            com.liferay.portal.kernel.exception.SystemException {
181                    return _mbMailingListLocalService.getMBMailingList(mailingListId);
182            }
183    
184            public com.liferay.portal.model.PersistedModel getPersistedModel(
185                    java.io.Serializable primaryKeyObj)
186                    throws com.liferay.portal.kernel.exception.PortalException,
187                            com.liferay.portal.kernel.exception.SystemException {
188                    return _mbMailingListLocalService.getPersistedModel(primaryKeyObj);
189            }
190    
191            /**
192            * Returns the message boards mailing list with the UUID in the group.
193            *
194            * @param uuid the UUID of message boards mailing list
195            * @param groupId the group id of the message boards mailing list
196            * @return the message boards mailing list
197            * @throws PortalException if a message boards mailing list with the UUID in the group could not be found
198            * @throws SystemException if a system exception occurred
199            */
200            public com.liferay.portlet.messageboards.model.MBMailingList getMBMailingListByUuidAndGroupId(
201                    java.lang.String uuid, long groupId)
202                    throws com.liferay.portal.kernel.exception.PortalException,
203                            com.liferay.portal.kernel.exception.SystemException {
204                    return _mbMailingListLocalService.getMBMailingListByUuidAndGroupId(uuid,
205                            groupId);
206            }
207    
208            /**
209            * Returns a range of all the message boards mailing lists.
210            *
211            * <p>
212            * 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. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.messageboards.model.impl.MBMailingListModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
213            * </p>
214            *
215            * @param start the lower bound of the range of message boards mailing lists
216            * @param end the upper bound of the range of message boards mailing lists (not inclusive)
217            * @return the range of message boards mailing lists
218            * @throws SystemException if a system exception occurred
219            */
220            public java.util.List<com.liferay.portlet.messageboards.model.MBMailingList> getMBMailingLists(
221                    int start, int end)
222                    throws com.liferay.portal.kernel.exception.SystemException {
223                    return _mbMailingListLocalService.getMBMailingLists(start, end);
224            }
225    
226            /**
227            * Returns the number of message boards mailing lists.
228            *
229            * @return the number of message boards mailing lists
230            * @throws SystemException if a system exception occurred
231            */
232            public int getMBMailingListsCount()
233                    throws com.liferay.portal.kernel.exception.SystemException {
234                    return _mbMailingListLocalService.getMBMailingListsCount();
235            }
236    
237            /**
238            * Updates the message boards mailing list in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
239            *
240            * @param mbMailingList the message boards mailing list
241            * @return the message boards mailing list that was updated
242            * @throws SystemException if a system exception occurred
243            */
244            public com.liferay.portlet.messageboards.model.MBMailingList updateMBMailingList(
245                    com.liferay.portlet.messageboards.model.MBMailingList mbMailingList)
246                    throws com.liferay.portal.kernel.exception.SystemException {
247                    return _mbMailingListLocalService.updateMBMailingList(mbMailingList);
248            }
249    
250            /**
251            * Returns the Spring bean ID for this bean.
252            *
253            * @return the Spring bean ID for this bean
254            */
255            public java.lang.String getBeanIdentifier() {
256                    return _mbMailingListLocalService.getBeanIdentifier();
257            }
258    
259            /**
260            * Sets the Spring bean ID for this bean.
261            *
262            * @param beanIdentifier the Spring bean ID for this bean
263            */
264            public void setBeanIdentifier(java.lang.String beanIdentifier) {
265                    _mbMailingListLocalService.setBeanIdentifier(beanIdentifier);
266            }
267    
268            public com.liferay.portlet.messageboards.model.MBMailingList addMailingList(
269                    long userId, long groupId, long categoryId,
270                    java.lang.String emailAddress, java.lang.String inProtocol,
271                    java.lang.String inServerName, int inServerPort, boolean inUseSSL,
272                    java.lang.String inUserName, java.lang.String inPassword,
273                    int inReadInterval, java.lang.String outEmailAddress,
274                    boolean outCustom, java.lang.String outServerName, int outServerPort,
275                    boolean outUseSSL, java.lang.String outUserName,
276                    java.lang.String outPassword, boolean allowAnonymous, boolean active,
277                    com.liferay.portal.service.ServiceContext serviceContext)
278                    throws com.liferay.portal.kernel.exception.PortalException,
279                            com.liferay.portal.kernel.exception.SystemException {
280                    return _mbMailingListLocalService.addMailingList(userId, groupId,
281                            categoryId, emailAddress, inProtocol, inServerName, inServerPort,
282                            inUseSSL, inUserName, inPassword, inReadInterval, outEmailAddress,
283                            outCustom, outServerName, outServerPort, outUseSSL, outUserName,
284                            outPassword, allowAnonymous, active, serviceContext);
285            }
286    
287            public void deleteCategoryMailingList(long groupId, long categoryId)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    _mbMailingListLocalService.deleteCategoryMailingList(groupId, categoryId);
291            }
292    
293            public void deleteMailingList(long mailingListId)
294                    throws com.liferay.portal.kernel.exception.PortalException,
295                            com.liferay.portal.kernel.exception.SystemException {
296                    _mbMailingListLocalService.deleteMailingList(mailingListId);
297            }
298    
299            public void deleteMailingList(
300                    com.liferay.portlet.messageboards.model.MBMailingList mailingList)
301                    throws com.liferay.portal.kernel.exception.PortalException,
302                            com.liferay.portal.kernel.exception.SystemException {
303                    _mbMailingListLocalService.deleteMailingList(mailingList);
304            }
305    
306            public com.liferay.portlet.messageboards.model.MBMailingList getCategoryMailingList(
307                    long groupId, long categoryId)
308                    throws com.liferay.portal.kernel.exception.PortalException,
309                            com.liferay.portal.kernel.exception.SystemException {
310                    return _mbMailingListLocalService.getCategoryMailingList(groupId,
311                            categoryId);
312            }
313    
314            public com.liferay.portlet.messageboards.model.MBMailingList updateMailingList(
315                    long mailingListId, java.lang.String emailAddress,
316                    java.lang.String inProtocol, java.lang.String inServerName,
317                    int inServerPort, boolean inUseSSL, java.lang.String inUserName,
318                    java.lang.String inPassword, int inReadInterval,
319                    java.lang.String outEmailAddress, boolean outCustom,
320                    java.lang.String outServerName, int outServerPort, boolean outUseSSL,
321                    java.lang.String outUserName, java.lang.String outPassword,
322                    boolean allowAnonymous, boolean active,
323                    com.liferay.portal.service.ServiceContext serviceContext)
324                    throws com.liferay.portal.kernel.exception.PortalException,
325                            com.liferay.portal.kernel.exception.SystemException {
326                    return _mbMailingListLocalService.updateMailingList(mailingListId,
327                            emailAddress, inProtocol, inServerName, inServerPort, inUseSSL,
328                            inUserName, inPassword, inReadInterval, outEmailAddress, outCustom,
329                            outServerName, outServerPort, outUseSSL, outUserName, outPassword,
330                            allowAnonymous, active, serviceContext);
331            }
332    
333            /**
334             * @deprecated Renamed to {@link #getWrappedService}
335             */
336            public MBMailingListLocalService getWrappedMBMailingListLocalService() {
337                    return _mbMailingListLocalService;
338            }
339    
340            /**
341             * @deprecated Renamed to {@link #setWrappedService}
342             */
343            public void setWrappedMBMailingListLocalService(
344                    MBMailingListLocalService mbMailingListLocalService) {
345                    _mbMailingListLocalService = mbMailingListLocalService;
346            }
347    
348            public MBMailingListLocalService getWrappedService() {
349                    return _mbMailingListLocalService;
350            }
351    
352            public void setWrappedService(
353                    MBMailingListLocalService mbMailingListLocalService) {
354                    _mbMailingListLocalService = mbMailingListLocalService;
355            }
356    
357            private MBMailingListLocalService _mbMailingListLocalService;
358    }