1
14
15 package com.liferay.portlet.documentlibrary.service;
16
17
18
34 public class DLFileShortcutServiceWrapper implements DLFileShortcutService {
35 public DLFileShortcutServiceWrapper(
36 DLFileShortcutService dlFileShortcutService) {
37 _dlFileShortcutService = dlFileShortcutService;
38 }
39
40 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
41 long groupId, long folderId, long toFolderId, java.lang.String toName,
42 com.liferay.portal.service.ServiceContext serviceContext)
43 throws com.liferay.portal.kernel.exception.PortalException,
44 com.liferay.portal.kernel.exception.SystemException {
45 return _dlFileShortcutService.addFileShortcut(groupId, folderId,
46 toFolderId, toName, serviceContext);
47 }
48
49 public void deleteFileShortcut(long fileShortcutId)
50 throws com.liferay.portal.kernel.exception.PortalException,
51 com.liferay.portal.kernel.exception.SystemException {
52 _dlFileShortcutService.deleteFileShortcut(fileShortcutId);
53 }
54
55 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
56 long fileShortcutId)
57 throws com.liferay.portal.kernel.exception.PortalException,
58 com.liferay.portal.kernel.exception.SystemException {
59 return _dlFileShortcutService.getFileShortcut(fileShortcutId);
60 }
61
62 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
63 long fileShortcutId, long folderId, long toFolderId,
64 java.lang.String toName,
65 com.liferay.portal.service.ServiceContext serviceContext)
66 throws com.liferay.portal.kernel.exception.PortalException,
67 com.liferay.portal.kernel.exception.SystemException {
68 return _dlFileShortcutService.updateFileShortcut(fileShortcutId,
69 folderId, toFolderId, toName, serviceContext);
70 }
71
72 public DLFileShortcutService getWrappedDLFileShortcutService() {
73 return _dlFileShortcutService;
74 }
75
76 private DLFileShortcutService _dlFileShortcutService;
77 }