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 aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link DLFileShortcutLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see DLFileShortcutLocalService
026     * @generated
027     */
028    @ProviderType
029    public class DLFileShortcutLocalServiceWrapper
030            implements DLFileShortcutLocalService,
031                    ServiceWrapper<DLFileShortcutLocalService> {
032            public DLFileShortcutLocalServiceWrapper(
033                    DLFileShortcutLocalService dlFileShortcutLocalService) {
034                    _dlFileShortcutLocalService = dlFileShortcutLocalService;
035            }
036    
037            /**
038            * Adds the document library file shortcut to the database. Also notifies the appropriate model listeners.
039            *
040            * @param dlFileShortcut the document library file shortcut
041            * @return the document library file shortcut that was added
042            * @throws SystemException if a system exception occurred
043            */
044            @Override
045            public com.liferay.portlet.documentlibrary.model.DLFileShortcut addDLFileShortcut(
046                    com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
047                    throws com.liferay.portal.kernel.exception.SystemException {
048                    return _dlFileShortcutLocalService.addDLFileShortcut(dlFileShortcut);
049            }
050    
051            /**
052            * Creates a new document library file shortcut with the primary key. Does not add the document library file shortcut to the database.
053            *
054            * @param fileShortcutId the primary key for the new document library file shortcut
055            * @return the new document library file shortcut
056            */
057            @Override
058            public com.liferay.portlet.documentlibrary.model.DLFileShortcut createDLFileShortcut(
059                    long fileShortcutId) {
060                    return _dlFileShortcutLocalService.createDLFileShortcut(fileShortcutId);
061            }
062    
063            /**
064            * Deletes the document library file shortcut with the primary key from the database. Also notifies the appropriate model listeners.
065            *
066            * @param fileShortcutId the primary key of the document library file shortcut
067            * @return the document library file shortcut that was removed
068            * @throws PortalException if a document library file shortcut with the primary key could not be found
069            * @throws SystemException if a system exception occurred
070            */
071            @Override
072            public com.liferay.portlet.documentlibrary.model.DLFileShortcut deleteDLFileShortcut(
073                    long fileShortcutId)
074                    throws com.liferay.portal.kernel.exception.PortalException,
075                            com.liferay.portal.kernel.exception.SystemException {
076                    return _dlFileShortcutLocalService.deleteDLFileShortcut(fileShortcutId);
077            }
078    
079            /**
080            * Deletes the document library file shortcut from the database. Also notifies the appropriate model listeners.
081            *
082            * @param dlFileShortcut the document library file shortcut
083            * @return the document library file shortcut that was removed
084            * @throws SystemException if a system exception occurred
085            */
086            @Override
087            public com.liferay.portlet.documentlibrary.model.DLFileShortcut deleteDLFileShortcut(
088                    com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
089                    throws com.liferay.portal.kernel.exception.SystemException {
090                    return _dlFileShortcutLocalService.deleteDLFileShortcut(dlFileShortcut);
091            }
092    
093            @Override
094            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
095                    return _dlFileShortcutLocalService.dynamicQuery();
096            }
097    
098            /**
099            * Performs a dynamic query on the database and returns the matching rows.
100            *
101            * @param dynamicQuery the dynamic query
102            * @return the matching rows
103            * @throws SystemException if a system exception occurred
104            */
105            @Override
106            @SuppressWarnings("rawtypes")
107            public java.util.List dynamicQuery(
108                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
109                    throws com.liferay.portal.kernel.exception.SystemException {
110                    return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery);
111            }
112    
113            /**
114            * Performs a dynamic query on the database and returns a range of the matching rows.
115            *
116            * <p>
117            * 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.documentlibrary.model.impl.DLFileShortcutModelImpl}. 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.
118            * </p>
119            *
120            * @param dynamicQuery the dynamic query
121            * @param start the lower bound of the range of model instances
122            * @param end the upper bound of the range of model instances (not inclusive)
123            * @return the range of matching rows
124            * @throws SystemException if a system exception occurred
125            */
126            @Override
127            @SuppressWarnings("rawtypes")
128            public java.util.List dynamicQuery(
129                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
130                    int end) throws com.liferay.portal.kernel.exception.SystemException {
131                    return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery, start, end);
132            }
133    
134            /**
135            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
136            *
137            * <p>
138            * 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.documentlibrary.model.impl.DLFileShortcutModelImpl}. 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.
139            * </p>
140            *
141            * @param dynamicQuery the dynamic query
142            * @param start the lower bound of the range of model instances
143            * @param end the upper bound of the range of model instances (not inclusive)
144            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
145            * @return the ordered range of matching rows
146            * @throws SystemException if a system exception occurred
147            */
148            @Override
149            @SuppressWarnings("rawtypes")
150            public java.util.List dynamicQuery(
151                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
152                    int end,
153                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
154                    throws com.liferay.portal.kernel.exception.SystemException {
155                    return _dlFileShortcutLocalService.dynamicQuery(dynamicQuery, start,
156                            end, orderByComparator);
157            }
158    
159            /**
160            * Returns the number of rows that match the dynamic query.
161            *
162            * @param dynamicQuery the dynamic query
163            * @return the number of rows that match the dynamic query
164            * @throws SystemException if a system exception occurred
165            */
166            @Override
167            public long dynamicQueryCount(
168                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
169                    throws com.liferay.portal.kernel.exception.SystemException {
170                    return _dlFileShortcutLocalService.dynamicQueryCount(dynamicQuery);
171            }
172    
173            /**
174            * Returns the number of rows that match the dynamic query.
175            *
176            * @param dynamicQuery the dynamic query
177            * @param projection the projection to apply to the query
178            * @return the number of rows that match the dynamic query
179            * @throws SystemException if a system exception occurred
180            */
181            @Override
182            public long dynamicQueryCount(
183                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
184                    com.liferay.portal.kernel.dao.orm.Projection projection)
185                    throws com.liferay.portal.kernel.exception.SystemException {
186                    return _dlFileShortcutLocalService.dynamicQueryCount(dynamicQuery,
187                            projection);
188            }
189    
190            @Override
191            public com.liferay.portlet.documentlibrary.model.DLFileShortcut fetchDLFileShortcut(
192                    long fileShortcutId)
193                    throws com.liferay.portal.kernel.exception.SystemException {
194                    return _dlFileShortcutLocalService.fetchDLFileShortcut(fileShortcutId);
195            }
196    
197            /**
198            * Returns the document library file shortcut with the matching UUID and company.
199            *
200            * @param uuid the document library file shortcut's UUID
201            * @param companyId the primary key of the company
202            * @return the matching document library file shortcut, or <code>null</code> if a matching document library file shortcut could not be found
203            * @throws SystemException if a system exception occurred
204            */
205            @Override
206            public com.liferay.portlet.documentlibrary.model.DLFileShortcut fetchDLFileShortcutByUuidAndCompanyId(
207                    java.lang.String uuid, long companyId)
208                    throws com.liferay.portal.kernel.exception.SystemException {
209                    return _dlFileShortcutLocalService.fetchDLFileShortcutByUuidAndCompanyId(uuid,
210                            companyId);
211            }
212    
213            /**
214            * Returns the document library file shortcut matching the UUID and group.
215            *
216            * @param uuid the document library file shortcut's UUID
217            * @param groupId the primary key of the group
218            * @return the matching document library file shortcut, or <code>null</code> if a matching document library file shortcut could not be found
219            * @throws SystemException if a system exception occurred
220            */
221            @Override
222            public com.liferay.portlet.documentlibrary.model.DLFileShortcut fetchDLFileShortcutByUuidAndGroupId(
223                    java.lang.String uuid, long groupId)
224                    throws com.liferay.portal.kernel.exception.SystemException {
225                    return _dlFileShortcutLocalService.fetchDLFileShortcutByUuidAndGroupId(uuid,
226                            groupId);
227            }
228    
229            /**
230            * Returns the document library file shortcut with the primary key.
231            *
232            * @param fileShortcutId the primary key of the document library file shortcut
233            * @return the document library file shortcut
234            * @throws PortalException if a document library file shortcut with the primary key could not be found
235            * @throws SystemException if a system exception occurred
236            */
237            @Override
238            public com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcut(
239                    long fileShortcutId)
240                    throws com.liferay.portal.kernel.exception.PortalException,
241                            com.liferay.portal.kernel.exception.SystemException {
242                    return _dlFileShortcutLocalService.getDLFileShortcut(fileShortcutId);
243            }
244    
245            @Override
246            public com.liferay.portal.model.PersistedModel getPersistedModel(
247                    java.io.Serializable primaryKeyObj)
248                    throws com.liferay.portal.kernel.exception.PortalException,
249                            com.liferay.portal.kernel.exception.SystemException {
250                    return _dlFileShortcutLocalService.getPersistedModel(primaryKeyObj);
251            }
252    
253            /**
254            * Returns the document library file shortcut with the matching UUID and company.
255            *
256            * @param uuid the document library file shortcut's UUID
257            * @param companyId the primary key of the company
258            * @return the matching document library file shortcut
259            * @throws PortalException if a matching document library file shortcut could not be found
260            * @throws SystemException if a system exception occurred
261            */
262            @Override
263            public com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcutByUuidAndCompanyId(
264                    java.lang.String uuid, long companyId)
265                    throws com.liferay.portal.kernel.exception.PortalException,
266                            com.liferay.portal.kernel.exception.SystemException {
267                    return _dlFileShortcutLocalService.getDLFileShortcutByUuidAndCompanyId(uuid,
268                            companyId);
269            }
270    
271            /**
272            * Returns the document library file shortcut matching the UUID and group.
273            *
274            * @param uuid the document library file shortcut's UUID
275            * @param groupId the primary key of the group
276            * @return the matching document library file shortcut
277            * @throws PortalException if a matching document library file shortcut could not be found
278            * @throws SystemException if a system exception occurred
279            */
280            @Override
281            public com.liferay.portlet.documentlibrary.model.DLFileShortcut getDLFileShortcutByUuidAndGroupId(
282                    java.lang.String uuid, long groupId)
283                    throws com.liferay.portal.kernel.exception.PortalException,
284                            com.liferay.portal.kernel.exception.SystemException {
285                    return _dlFileShortcutLocalService.getDLFileShortcutByUuidAndGroupId(uuid,
286                            groupId);
287            }
288    
289            /**
290            * Returns a range of all the document library file shortcuts.
291            *
292            * <p>
293            * 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.documentlibrary.model.impl.DLFileShortcutModelImpl}. 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.
294            * </p>
295            *
296            * @param start the lower bound of the range of document library file shortcuts
297            * @param end the upper bound of the range of document library file shortcuts (not inclusive)
298            * @return the range of document library file shortcuts
299            * @throws SystemException if a system exception occurred
300            */
301            @Override
302            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileShortcut> getDLFileShortcuts(
303                    int start, int end)
304                    throws com.liferay.portal.kernel.exception.SystemException {
305                    return _dlFileShortcutLocalService.getDLFileShortcuts(start, end);
306            }
307    
308            /**
309            * Returns the number of document library file shortcuts.
310            *
311            * @return the number of document library file shortcuts
312            * @throws SystemException if a system exception occurred
313            */
314            @Override
315            public int getDLFileShortcutsCount()
316                    throws com.liferay.portal.kernel.exception.SystemException {
317                    return _dlFileShortcutLocalService.getDLFileShortcutsCount();
318            }
319    
320            /**
321            * Updates the document library file shortcut in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
322            *
323            * @param dlFileShortcut the document library file shortcut
324            * @return the document library file shortcut that was updated
325            * @throws SystemException if a system exception occurred
326            */
327            @Override
328            public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateDLFileShortcut(
329                    com.liferay.portlet.documentlibrary.model.DLFileShortcut dlFileShortcut)
330                    throws com.liferay.portal.kernel.exception.SystemException {
331                    return _dlFileShortcutLocalService.updateDLFileShortcut(dlFileShortcut);
332            }
333    
334            /**
335            * Returns the Spring bean ID for this bean.
336            *
337            * @return the Spring bean ID for this bean
338            */
339            @Override
340            public java.lang.String getBeanIdentifier() {
341                    return _dlFileShortcutLocalService.getBeanIdentifier();
342            }
343    
344            /**
345            * Sets the Spring bean ID for this bean.
346            *
347            * @param beanIdentifier the Spring bean ID for this bean
348            */
349            @Override
350            public void setBeanIdentifier(java.lang.String beanIdentifier) {
351                    _dlFileShortcutLocalService.setBeanIdentifier(beanIdentifier);
352            }
353    
354            @Override
355            public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
356                    long userId, long groupId, long folderId, long toFileEntryId,
357                    com.liferay.portal.service.ServiceContext serviceContext)
358                    throws com.liferay.portal.kernel.exception.PortalException,
359                            com.liferay.portal.kernel.exception.SystemException {
360                    return _dlFileShortcutLocalService.addFileShortcut(userId, groupId,
361                            folderId, toFileEntryId, serviceContext);
362            }
363    
364            @Override
365            public void addFileShortcutResources(
366                    com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
367                    boolean addGroupPermissions, boolean addGuestPermissions)
368                    throws com.liferay.portal.kernel.exception.PortalException,
369                            com.liferay.portal.kernel.exception.SystemException {
370                    _dlFileShortcutLocalService.addFileShortcutResources(fileShortcut,
371                            addGroupPermissions, addGuestPermissions);
372            }
373    
374            @Override
375            public void addFileShortcutResources(
376                    com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
377                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
378                    throws com.liferay.portal.kernel.exception.PortalException,
379                            com.liferay.portal.kernel.exception.SystemException {
380                    _dlFileShortcutLocalService.addFileShortcutResources(fileShortcut,
381                            groupPermissions, guestPermissions);
382            }
383    
384            @Override
385            public void addFileShortcutResources(long fileShortcutId,
386                    boolean addGroupPermissions, boolean addGuestPermissions)
387                    throws com.liferay.portal.kernel.exception.PortalException,
388                            com.liferay.portal.kernel.exception.SystemException {
389                    _dlFileShortcutLocalService.addFileShortcutResources(fileShortcutId,
390                            addGroupPermissions, addGuestPermissions);
391            }
392    
393            @Override
394            public void addFileShortcutResources(long fileShortcutId,
395                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
396                    throws com.liferay.portal.kernel.exception.PortalException,
397                            com.liferay.portal.kernel.exception.SystemException {
398                    _dlFileShortcutLocalService.addFileShortcutResources(fileShortcutId,
399                            groupPermissions, guestPermissions);
400            }
401    
402            @Override
403            public void deleteFileShortcut(
404                    com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut)
405                    throws com.liferay.portal.kernel.exception.PortalException,
406                            com.liferay.portal.kernel.exception.SystemException {
407                    _dlFileShortcutLocalService.deleteFileShortcut(fileShortcut);
408            }
409    
410            @Override
411            public void deleteFileShortcut(long fileShortcutId)
412                    throws com.liferay.portal.kernel.exception.PortalException,
413                            com.liferay.portal.kernel.exception.SystemException {
414                    _dlFileShortcutLocalService.deleteFileShortcut(fileShortcutId);
415            }
416    
417            @Override
418            public void deleteFileShortcuts(long toFileEntryId)
419                    throws com.liferay.portal.kernel.exception.PortalException,
420                            com.liferay.portal.kernel.exception.SystemException {
421                    _dlFileShortcutLocalService.deleteFileShortcuts(toFileEntryId);
422            }
423    
424            @Override
425            public void deleteFileShortcuts(long groupId, long folderId)
426                    throws com.liferay.portal.kernel.exception.PortalException,
427                            com.liferay.portal.kernel.exception.SystemException {
428                    _dlFileShortcutLocalService.deleteFileShortcuts(groupId, folderId);
429            }
430    
431            @Override
432            public void deleteFileShortcuts(long groupId, long folderId,
433                    boolean includeTrashedEntries)
434                    throws com.liferay.portal.kernel.exception.PortalException,
435                            com.liferay.portal.kernel.exception.SystemException {
436                    _dlFileShortcutLocalService.deleteFileShortcuts(groupId, folderId,
437                            includeTrashedEntries);
438            }
439    
440            @Override
441            public void disableFileShortcuts(long toFileEntryId)
442                    throws com.liferay.portal.kernel.exception.SystemException {
443                    _dlFileShortcutLocalService.disableFileShortcuts(toFileEntryId);
444            }
445    
446            @Override
447            public void enableFileShortcuts(long toFileEntryId)
448                    throws com.liferay.portal.kernel.exception.SystemException {
449                    _dlFileShortcutLocalService.enableFileShortcuts(toFileEntryId);
450            }
451    
452            @Override
453            public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
454                    long fileShortcutId)
455                    throws com.liferay.portal.kernel.exception.PortalException,
456                            com.liferay.portal.kernel.exception.SystemException {
457                    return _dlFileShortcutLocalService.getFileShortcut(fileShortcutId);
458            }
459    
460            @Override
461            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileShortcut> getFileShortcuts(
462                    long groupId, long folderId, boolean active, int status, int start,
463                    int end) throws com.liferay.portal.kernel.exception.SystemException {
464                    return _dlFileShortcutLocalService.getFileShortcuts(groupId, folderId,
465                            active, status, start, end);
466            }
467    
468            @Override
469            public int getFileShortcutsCount(long groupId, long folderId,
470                    boolean active, int status)
471                    throws com.liferay.portal.kernel.exception.SystemException {
472                    return _dlFileShortcutLocalService.getFileShortcutsCount(groupId,
473                            folderId, active, status);
474            }
475    
476            @Override
477            public void rebuildTree(long companyId)
478                    throws com.liferay.portal.kernel.exception.PortalException,
479                            com.liferay.portal.kernel.exception.SystemException {
480                    _dlFileShortcutLocalService.rebuildTree(companyId);
481            }
482    
483            @Override
484            public void setTreePaths(long folderId, java.lang.String treePath)
485                    throws com.liferay.portal.kernel.exception.PortalException,
486                            com.liferay.portal.kernel.exception.SystemException {
487                    _dlFileShortcutLocalService.setTreePaths(folderId, treePath);
488            }
489    
490            @Override
491            public void updateAsset(long userId,
492                    com.liferay.portlet.documentlibrary.model.DLFileShortcut fileShortcut,
493                    long[] assetCategoryIds, java.lang.String[] assetTagNames)
494                    throws com.liferay.portal.kernel.exception.PortalException,
495                            com.liferay.portal.kernel.exception.SystemException {
496                    _dlFileShortcutLocalService.updateAsset(userId, fileShortcut,
497                            assetCategoryIds, assetTagNames);
498            }
499    
500            @Override
501            public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
502                    long userId, long fileShortcutId, long folderId, long toFileEntryId,
503                    com.liferay.portal.service.ServiceContext serviceContext)
504                    throws com.liferay.portal.kernel.exception.PortalException,
505                            com.liferay.portal.kernel.exception.SystemException {
506                    return _dlFileShortcutLocalService.updateFileShortcut(userId,
507                            fileShortcutId, folderId, toFileEntryId, serviceContext);
508            }
509    
510            @Override
511            public void updateFileShortcuts(long oldToFileEntryId, long newToFileEntryId)
512                    throws com.liferay.portal.kernel.exception.SystemException {
513                    _dlFileShortcutLocalService.updateFileShortcuts(oldToFileEntryId,
514                            newToFileEntryId);
515            }
516    
517            @Override
518            public void updateStatus(long userId, long fileShortcutId, int status,
519                    com.liferay.portal.service.ServiceContext serviceContext)
520                    throws com.liferay.portal.kernel.exception.PortalException,
521                            com.liferay.portal.kernel.exception.SystemException {
522                    _dlFileShortcutLocalService.updateStatus(userId, fileShortcutId,
523                            status, serviceContext);
524            }
525    
526            /**
527             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
528             */
529            public DLFileShortcutLocalService getWrappedDLFileShortcutLocalService() {
530                    return _dlFileShortcutLocalService;
531            }
532    
533            /**
534             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
535             */
536            public void setWrappedDLFileShortcutLocalService(
537                    DLFileShortcutLocalService dlFileShortcutLocalService) {
538                    _dlFileShortcutLocalService = dlFileShortcutLocalService;
539            }
540    
541            @Override
542            public DLFileShortcutLocalService getWrappedService() {
543                    return _dlFileShortcutLocalService;
544            }
545    
546            @Override
547            public void setWrappedService(
548                    DLFileShortcutLocalService dlFileShortcutLocalService) {
549                    _dlFileShortcutLocalService = dlFileShortcutLocalService;
550            }
551    
552            private DLFileShortcutLocalService _dlFileShortcutLocalService;
553    }