001    /**
002     * Copyright (c) 2000-2013 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.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link MembershipRequestLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       MembershipRequestLocalService
024     * @generated
025     */
026    public class MembershipRequestLocalServiceWrapper
027            implements MembershipRequestLocalService,
028                    ServiceWrapper<MembershipRequestLocalService> {
029            public MembershipRequestLocalServiceWrapper(
030                    MembershipRequestLocalService membershipRequestLocalService) {
031                    _membershipRequestLocalService = membershipRequestLocalService;
032            }
033    
034            /**
035            * Adds the membership request to the database. Also notifies the appropriate model listeners.
036            *
037            * @param membershipRequest the membership request
038            * @return the membership request that was added
039            * @throws SystemException if a system exception occurred
040            */
041            public com.liferay.portal.model.MembershipRequest addMembershipRequest(
042                    com.liferay.portal.model.MembershipRequest membershipRequest)
043                    throws com.liferay.portal.kernel.exception.SystemException {
044                    return _membershipRequestLocalService.addMembershipRequest(membershipRequest);
045            }
046    
047            /**
048            * Creates a new membership request with the primary key. Does not add the membership request to the database.
049            *
050            * @param membershipRequestId the primary key for the new membership request
051            * @return the new membership request
052            */
053            public com.liferay.portal.model.MembershipRequest createMembershipRequest(
054                    long membershipRequestId) {
055                    return _membershipRequestLocalService.createMembershipRequest(membershipRequestId);
056            }
057    
058            /**
059            * Deletes the membership request with the primary key from the database. Also notifies the appropriate model listeners.
060            *
061            * @param membershipRequestId the primary key of the membership request
062            * @return the membership request that was removed
063            * @throws PortalException if a membership request with the primary key could not be found
064            * @throws SystemException if a system exception occurred
065            */
066            public com.liferay.portal.model.MembershipRequest deleteMembershipRequest(
067                    long membershipRequestId)
068                    throws com.liferay.portal.kernel.exception.PortalException,
069                            com.liferay.portal.kernel.exception.SystemException {
070                    return _membershipRequestLocalService.deleteMembershipRequest(membershipRequestId);
071            }
072    
073            /**
074            * Deletes the membership request from the database. Also notifies the appropriate model listeners.
075            *
076            * @param membershipRequest the membership request
077            * @return the membership request that was removed
078            * @throws SystemException if a system exception occurred
079            */
080            public com.liferay.portal.model.MembershipRequest deleteMembershipRequest(
081                    com.liferay.portal.model.MembershipRequest membershipRequest)
082                    throws com.liferay.portal.kernel.exception.SystemException {
083                    return _membershipRequestLocalService.deleteMembershipRequest(membershipRequest);
084            }
085    
086            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
087                    return _membershipRequestLocalService.dynamicQuery();
088            }
089    
090            /**
091            * Performs a dynamic query on the database and returns the matching rows.
092            *
093            * @param dynamicQuery the dynamic query
094            * @return the matching rows
095            * @throws SystemException if a system exception occurred
096            */
097            @SuppressWarnings("rawtypes")
098            public java.util.List dynamicQuery(
099                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
100                    throws com.liferay.portal.kernel.exception.SystemException {
101                    return _membershipRequestLocalService.dynamicQuery(dynamicQuery);
102            }
103    
104            /**
105            * Performs a dynamic query on the database and returns a range of the matching rows.
106            *
107            * <p>
108            * 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.
109            * </p>
110            *
111            * @param dynamicQuery the dynamic query
112            * @param start the lower bound of the range of model instances
113            * @param end the upper bound of the range of model instances (not inclusive)
114            * @return the range of matching rows
115            * @throws SystemException if a system exception occurred
116            */
117            @SuppressWarnings("rawtypes")
118            public java.util.List dynamicQuery(
119                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
120                    int end) throws com.liferay.portal.kernel.exception.SystemException {
121                    return _membershipRequestLocalService.dynamicQuery(dynamicQuery, start,
122                            end);
123            }
124    
125            /**
126            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
127            *
128            * <p>
129            * 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.
130            * </p>
131            *
132            * @param dynamicQuery the dynamic query
133            * @param start the lower bound of the range of model instances
134            * @param end the upper bound of the range of model instances (not inclusive)
135            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
136            * @return the ordered range of matching rows
137            * @throws SystemException if a system exception occurred
138            */
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 _membershipRequestLocalService.dynamicQuery(dynamicQuery, start,
146                            end, orderByComparator);
147            }
148    
149            /**
150            * Returns the number of rows that match the dynamic query.
151            *
152            * @param dynamicQuery the dynamic query
153            * @return the number of rows that match the dynamic query
154            * @throws SystemException if a system exception occurred
155            */
156            public long dynamicQueryCount(
157                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158                    throws com.liferay.portal.kernel.exception.SystemException {
159                    return _membershipRequestLocalService.dynamicQueryCount(dynamicQuery);
160            }
161    
162            public com.liferay.portal.model.MembershipRequest fetchMembershipRequest(
163                    long membershipRequestId)
164                    throws com.liferay.portal.kernel.exception.SystemException {
165                    return _membershipRequestLocalService.fetchMembershipRequest(membershipRequestId);
166            }
167    
168            /**
169            * Returns the membership request with the primary key.
170            *
171            * @param membershipRequestId the primary key of the membership request
172            * @return the membership request
173            * @throws PortalException if a membership request with the primary key could not be found
174            * @throws SystemException if a system exception occurred
175            */
176            public com.liferay.portal.model.MembershipRequest getMembershipRequest(
177                    long membershipRequestId)
178                    throws com.liferay.portal.kernel.exception.PortalException,
179                            com.liferay.portal.kernel.exception.SystemException {
180                    return _membershipRequestLocalService.getMembershipRequest(membershipRequestId);
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 _membershipRequestLocalService.getPersistedModel(primaryKeyObj);
188            }
189    
190            /**
191            * Returns a range of all the membership requests.
192            *
193            * <p>
194            * 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.
195            * </p>
196            *
197            * @param start the lower bound of the range of membership requests
198            * @param end the upper bound of the range of membership requests (not inclusive)
199            * @return the range of membership requests
200            * @throws SystemException if a system exception occurred
201            */
202            public java.util.List<com.liferay.portal.model.MembershipRequest> getMembershipRequests(
203                    int start, int end)
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return _membershipRequestLocalService.getMembershipRequests(start, end);
206            }
207    
208            /**
209            * Returns the number of membership requests.
210            *
211            * @return the number of membership requests
212            * @throws SystemException if a system exception occurred
213            */
214            public int getMembershipRequestsCount()
215                    throws com.liferay.portal.kernel.exception.SystemException {
216                    return _membershipRequestLocalService.getMembershipRequestsCount();
217            }
218    
219            /**
220            * Updates the membership request in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
221            *
222            * @param membershipRequest the membership request
223            * @return the membership request that was updated
224            * @throws SystemException if a system exception occurred
225            */
226            public com.liferay.portal.model.MembershipRequest updateMembershipRequest(
227                    com.liferay.portal.model.MembershipRequest membershipRequest)
228                    throws com.liferay.portal.kernel.exception.SystemException {
229                    return _membershipRequestLocalService.updateMembershipRequest(membershipRequest);
230            }
231    
232            /**
233            * Updates the membership request in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
234            *
235            * @param membershipRequest the membership request
236            * @param merge whether to merge the membership request 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.
237            * @return the membership request that was updated
238            * @throws SystemException if a system exception occurred
239            */
240            public com.liferay.portal.model.MembershipRequest updateMembershipRequest(
241                    com.liferay.portal.model.MembershipRequest membershipRequest,
242                    boolean merge)
243                    throws com.liferay.portal.kernel.exception.SystemException {
244                    return _membershipRequestLocalService.updateMembershipRequest(membershipRequest,
245                            merge);
246            }
247    
248            /**
249            * Returns the Spring bean ID for this bean.
250            *
251            * @return the Spring bean ID for this bean
252            */
253            public java.lang.String getBeanIdentifier() {
254                    return _membershipRequestLocalService.getBeanIdentifier();
255            }
256    
257            /**
258            * Sets the Spring bean ID for this bean.
259            *
260            * @param beanIdentifier the Spring bean ID for this bean
261            */
262            public void setBeanIdentifier(java.lang.String beanIdentifier) {
263                    _membershipRequestLocalService.setBeanIdentifier(beanIdentifier);
264            }
265    
266            public com.liferay.portal.model.MembershipRequest addMembershipRequest(
267                    long userId, long groupId, java.lang.String comments,
268                    com.liferay.portal.service.ServiceContext serviceContext)
269                    throws com.liferay.portal.kernel.exception.PortalException,
270                            com.liferay.portal.kernel.exception.SystemException {
271                    return _membershipRequestLocalService.addMembershipRequest(userId,
272                            groupId, comments, serviceContext);
273            }
274    
275            public void deleteMembershipRequests(long groupId)
276                    throws com.liferay.portal.kernel.exception.SystemException {
277                    _membershipRequestLocalService.deleteMembershipRequests(groupId);
278            }
279    
280            public void deleteMembershipRequests(long groupId, int statusId)
281                    throws com.liferay.portal.kernel.exception.SystemException {
282                    _membershipRequestLocalService.deleteMembershipRequests(groupId,
283                            statusId);
284            }
285    
286            public void deleteMembershipRequestsByUserId(long userId)
287                    throws com.liferay.portal.kernel.exception.SystemException {
288                    _membershipRequestLocalService.deleteMembershipRequestsByUserId(userId);
289            }
290    
291            public java.util.List<com.liferay.portal.model.MembershipRequest> getMembershipRequests(
292                    long userId, long groupId, int statusId)
293                    throws com.liferay.portal.kernel.exception.SystemException {
294                    return _membershipRequestLocalService.getMembershipRequests(userId,
295                            groupId, statusId);
296            }
297    
298            public boolean hasMembershipRequest(long userId, long groupId, int statusId)
299                    throws com.liferay.portal.kernel.exception.SystemException {
300                    return _membershipRequestLocalService.hasMembershipRequest(userId,
301                            groupId, statusId);
302            }
303    
304            public java.util.List<com.liferay.portal.model.MembershipRequest> search(
305                    long groupId, int status, int start, int end)
306                    throws com.liferay.portal.kernel.exception.SystemException {
307                    return _membershipRequestLocalService.search(groupId, status, start, end);
308            }
309    
310            public int searchCount(long groupId, int status)
311                    throws com.liferay.portal.kernel.exception.SystemException {
312                    return _membershipRequestLocalService.searchCount(groupId, status);
313            }
314    
315            public void updateStatus(long replierUserId, long membershipRequestId,
316                    java.lang.String replyComments, int statusId, boolean addUserToGroup,
317                    com.liferay.portal.service.ServiceContext serviceContext)
318                    throws com.liferay.portal.kernel.exception.PortalException,
319                            com.liferay.portal.kernel.exception.SystemException {
320                    _membershipRequestLocalService.updateStatus(replierUserId,
321                            membershipRequestId, replyComments, statusId, addUserToGroup,
322                            serviceContext);
323            }
324    
325            /**
326             * @deprecated Renamed to {@link #getWrappedService}
327             */
328            public MembershipRequestLocalService getWrappedMembershipRequestLocalService() {
329                    return _membershipRequestLocalService;
330            }
331    
332            /**
333             * @deprecated Renamed to {@link #setWrappedService}
334             */
335            public void setWrappedMembershipRequestLocalService(
336                    MembershipRequestLocalService membershipRequestLocalService) {
337                    _membershipRequestLocalService = membershipRequestLocalService;
338            }
339    
340            public MembershipRequestLocalService getWrappedService() {
341                    return _membershipRequestLocalService;
342            }
343    
344            public void setWrappedService(
345                    MembershipRequestLocalService membershipRequestLocalService) {
346                    _membershipRequestLocalService = membershipRequestLocalService;
347            }
348    
349            private MembershipRequestLocalService _membershipRequestLocalService;
350    }