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