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