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.portlet.documentlibrary.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link DLFileVersionLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       DLFileVersionLocalService
026     * @generated
027     */
028    public class DLFileVersionLocalServiceWrapper
029            implements DLFileVersionLocalService,
030                    ServiceWrapper<DLFileVersionLocalService> {
031            public DLFileVersionLocalServiceWrapper(
032                    DLFileVersionLocalService dlFileVersionLocalService) {
033                    _dlFileVersionLocalService = dlFileVersionLocalService;
034            }
035    
036            /**
037            * Adds the document library file version to the database. Also notifies the appropriate model listeners.
038            *
039            * @param dlFileVersion the document library file version
040            * @return the document library file version that was added
041            * @throws SystemException if a system exception occurred
042            */
043            public com.liferay.portlet.documentlibrary.model.DLFileVersion addDLFileVersion(
044                    com.liferay.portlet.documentlibrary.model.DLFileVersion dlFileVersion)
045                    throws com.liferay.portal.kernel.exception.SystemException {
046                    return _dlFileVersionLocalService.addDLFileVersion(dlFileVersion);
047            }
048    
049            /**
050            * Creates a new document library file version with the primary key. Does not add the document library file version to the database.
051            *
052            * @param fileVersionId the primary key for the new document library file version
053            * @return the new document library file version
054            */
055            public com.liferay.portlet.documentlibrary.model.DLFileVersion createDLFileVersion(
056                    long fileVersionId) {
057                    return _dlFileVersionLocalService.createDLFileVersion(fileVersionId);
058            }
059    
060            /**
061            * Deletes the document library file version with the primary key from the database. Also notifies the appropriate model listeners.
062            *
063            * @param fileVersionId the primary key of the document library file version
064            * @return the document library file version that was removed
065            * @throws PortalException if a document library file version with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            public com.liferay.portlet.documentlibrary.model.DLFileVersion deleteDLFileVersion(
069                    long fileVersionId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _dlFileVersionLocalService.deleteDLFileVersion(fileVersionId);
073            }
074    
075            /**
076            * Deletes the document library file version from the database. Also notifies the appropriate model listeners.
077            *
078            * @param dlFileVersion the document library file version
079            * @return the document library file version that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            public com.liferay.portlet.documentlibrary.model.DLFileVersion deleteDLFileVersion(
083                    com.liferay.portlet.documentlibrary.model.DLFileVersion dlFileVersion)
084                    throws com.liferay.portal.kernel.exception.SystemException {
085                    return _dlFileVersionLocalService.deleteDLFileVersion(dlFileVersion);
086            }
087    
088            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089                    return _dlFileVersionLocalService.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 _dlFileVersionLocalService.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.
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 _dlFileVersionLocalService.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.
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 _dlFileVersionLocalService.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 _dlFileVersionLocalService.dynamicQueryCount(dynamicQuery);
161            }
162    
163            public com.liferay.portlet.documentlibrary.model.DLFileVersion fetchDLFileVersion(
164                    long fileVersionId)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _dlFileVersionLocalService.fetchDLFileVersion(fileVersionId);
167            }
168    
169            /**
170            * Returns the document library file version with the primary key.
171            *
172            * @param fileVersionId the primary key of the document library file version
173            * @return the document library file version
174            * @throws PortalException if a document library file version with the primary key could not be found
175            * @throws SystemException if a system exception occurred
176            */
177            public com.liferay.portlet.documentlibrary.model.DLFileVersion getDLFileVersion(
178                    long fileVersionId)
179                    throws com.liferay.portal.kernel.exception.PortalException,
180                            com.liferay.portal.kernel.exception.SystemException {
181                    return _dlFileVersionLocalService.getDLFileVersion(fileVersionId);
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 _dlFileVersionLocalService.getPersistedModel(primaryKeyObj);
189            }
190    
191            /**
192            * Returns the document library file version with the UUID in the group.
193            *
194            * @param uuid the UUID of document library file version
195            * @param groupId the group id of the document library file version
196            * @return the document library file version
197            * @throws PortalException if a document library file version with the UUID in the group could not be found
198            * @throws SystemException if a system exception occurred
199            */
200            public com.liferay.portlet.documentlibrary.model.DLFileVersion getDLFileVersionByUuidAndGroupId(
201                    java.lang.String uuid, long groupId)
202                    throws com.liferay.portal.kernel.exception.PortalException,
203                            com.liferay.portal.kernel.exception.SystemException {
204                    return _dlFileVersionLocalService.getDLFileVersionByUuidAndGroupId(uuid,
205                            groupId);
206            }
207    
208            /**
209            * Returns a range of all the document library file versions.
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.
213            * </p>
214            *
215            * @param start the lower bound of the range of document library file versions
216            * @param end the upper bound of the range of document library file versions (not inclusive)
217            * @return the range of document library file versions
218            * @throws SystemException if a system exception occurred
219            */
220            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getDLFileVersions(
221                    int start, int end)
222                    throws com.liferay.portal.kernel.exception.SystemException {
223                    return _dlFileVersionLocalService.getDLFileVersions(start, end);
224            }
225    
226            /**
227            * Returns the number of document library file versions.
228            *
229            * @return the number of document library file versions
230            * @throws SystemException if a system exception occurred
231            */
232            public int getDLFileVersionsCount()
233                    throws com.liferay.portal.kernel.exception.SystemException {
234                    return _dlFileVersionLocalService.getDLFileVersionsCount();
235            }
236    
237            /**
238            * Updates the document library file version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
239            *
240            * @param dlFileVersion the document library file version
241            * @return the document library file version that was updated
242            * @throws SystemException if a system exception occurred
243            */
244            public com.liferay.portlet.documentlibrary.model.DLFileVersion updateDLFileVersion(
245                    com.liferay.portlet.documentlibrary.model.DLFileVersion dlFileVersion)
246                    throws com.liferay.portal.kernel.exception.SystemException {
247                    return _dlFileVersionLocalService.updateDLFileVersion(dlFileVersion);
248            }
249    
250            /**
251            * Updates the document library file version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
252            *
253            * @param dlFileVersion the document library file version
254            * @param merge whether to merge the document library file version 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.
255            * @return the document library file version that was updated
256            * @throws SystemException if a system exception occurred
257            */
258            public com.liferay.portlet.documentlibrary.model.DLFileVersion updateDLFileVersion(
259                    com.liferay.portlet.documentlibrary.model.DLFileVersion dlFileVersion,
260                    boolean merge)
261                    throws com.liferay.portal.kernel.exception.SystemException {
262                    return _dlFileVersionLocalService.updateDLFileVersion(dlFileVersion,
263                            merge);
264            }
265    
266            /**
267            * Returns the Spring bean ID for this bean.
268            *
269            * @return the Spring bean ID for this bean
270            */
271            public java.lang.String getBeanIdentifier() {
272                    return _dlFileVersionLocalService.getBeanIdentifier();
273            }
274    
275            /**
276            * Sets the Spring bean ID for this bean.
277            *
278            * @param beanIdentifier the Spring bean ID for this bean
279            */
280            public void setBeanIdentifier(java.lang.String beanIdentifier) {
281                    _dlFileVersionLocalService.setBeanIdentifier(beanIdentifier);
282            }
283    
284            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
285                    long fileVersionId)
286                    throws com.liferay.portal.kernel.exception.PortalException,
287                            com.liferay.portal.kernel.exception.SystemException {
288                    return _dlFileVersionLocalService.getFileVersion(fileVersionId);
289            }
290    
291            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersion(
292                    long fileEntryId, java.lang.String version)
293                    throws com.liferay.portal.kernel.exception.PortalException,
294                            com.liferay.portal.kernel.exception.SystemException {
295                    return _dlFileVersionLocalService.getFileVersion(fileEntryId, version);
296            }
297    
298            public com.liferay.portlet.documentlibrary.model.DLFileVersion getFileVersionByUuidAndGroupId(
299                    java.lang.String uuid, long groupId)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    return _dlFileVersionLocalService.getFileVersionByUuidAndGroupId(uuid,
302                            groupId);
303            }
304    
305            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileVersion> getFileVersions(
306                    long fileEntryId, int status)
307                    throws com.liferay.portal.kernel.exception.SystemException {
308                    return _dlFileVersionLocalService.getFileVersions(fileEntryId, status);
309            }
310    
311            public int getFileVersionsCount(long fileEntryId, int status)
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return _dlFileVersionLocalService.getFileVersionsCount(fileEntryId,
314                            status);
315            }
316    
317            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
318                    long fileEntryId, boolean excludeWorkingCopy)
319                    throws com.liferay.portal.kernel.exception.PortalException,
320                            com.liferay.portal.kernel.exception.SystemException {
321                    return _dlFileVersionLocalService.getLatestFileVersion(fileEntryId,
322                            excludeWorkingCopy);
323            }
324    
325            public com.liferay.portlet.documentlibrary.model.DLFileVersion getLatestFileVersion(
326                    long userId, long fileEntryId)
327                    throws com.liferay.portal.kernel.exception.PortalException,
328                            com.liferay.portal.kernel.exception.SystemException {
329                    return _dlFileVersionLocalService.getLatestFileVersion(userId,
330                            fileEntryId);
331            }
332    
333            /**
334             * @deprecated Renamed to {@link #getWrappedService}
335             */
336            public DLFileVersionLocalService getWrappedDLFileVersionLocalService() {
337                    return _dlFileVersionLocalService;
338            }
339    
340            /**
341             * @deprecated Renamed to {@link #setWrappedService}
342             */
343            public void setWrappedDLFileVersionLocalService(
344                    DLFileVersionLocalService dlFileVersionLocalService) {
345                    _dlFileVersionLocalService = dlFileVersionLocalService;
346            }
347    
348            public DLFileVersionLocalService getWrappedService() {
349                    return _dlFileVersionLocalService;
350            }
351    
352            public void setWrappedService(
353                    DLFileVersionLocalService dlFileVersionLocalService) {
354                    _dlFileVersionLocalService = dlFileVersionLocalService;
355            }
356    
357            private DLFileVersionLocalService _dlFileVersionLocalService;
358    }