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 folderId, long toFolderId, java.lang.String toName,
42 boolean addCommunityPermissions, boolean addGuestPermissions)
43 throws com.liferay.portal.PortalException,
44 com.liferay.portal.SystemException, java.rmi.RemoteException {
45 return _dlFileShortcutService.addFileShortcut(folderId, toFolderId,
46 toName, addCommunityPermissions, addGuestPermissions);
47 }
48
49 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
50 long folderId, long toFolderId, java.lang.String toName,
51 java.lang.String[] communityPermissions,
52 java.lang.String[] guestPermissions)
53 throws com.liferay.portal.PortalException,
54 com.liferay.portal.SystemException, java.rmi.RemoteException {
55 return _dlFileShortcutService.addFileShortcut(folderId, toFolderId,
56 toName, communityPermissions, guestPermissions);
57 }
58
59 public void deleteFileShortcut(long fileShortcutId)
60 throws com.liferay.portal.PortalException,
61 com.liferay.portal.SystemException, java.rmi.RemoteException {
62 _dlFileShortcutService.deleteFileShortcut(fileShortcutId);
63 }
64
65 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
66 long fileShortcutId)
67 throws com.liferay.portal.PortalException,
68 com.liferay.portal.SystemException, java.rmi.RemoteException {
69 return _dlFileShortcutService.getFileShortcut(fileShortcutId);
70 }
71
72 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
73 long fileShortcutId, long folderId, long toFolderId,
74 java.lang.String toName)
75 throws com.liferay.portal.PortalException,
76 com.liferay.portal.SystemException, java.rmi.RemoteException {
77 return _dlFileShortcutService.updateFileShortcut(fileShortcutId,
78 folderId, toFolderId, toName);
79 }
80
81 public DLFileShortcutService getWrappedDLFileShortcutService() {
82 return _dlFileShortcutService;
83 }
84
85 private DLFileShortcutService _dlFileShortcutService;
86 }