001
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
028 @ProviderType
029 public class DLFileShortcutServiceWrapper implements DLFileShortcutService,
030 ServiceWrapper<DLFileShortcutService> {
031 public DLFileShortcutServiceWrapper(
032 DLFileShortcutService dlFileShortcutService) {
033 _dlFileShortcutService = dlFileShortcutService;
034 }
035
036 @Override
037 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
038 long groupId, long folderId, long toFileEntryId,
039 com.liferay.portal.service.ServiceContext serviceContext)
040 throws com.liferay.portal.kernel.exception.PortalException {
041 return _dlFileShortcutService.addFileShortcut(groupId, folderId,
042 toFileEntryId, serviceContext);
043 }
044
045 @Override
046 public void deleteFileShortcut(long fileShortcutId)
047 throws com.liferay.portal.kernel.exception.PortalException {
048 _dlFileShortcutService.deleteFileShortcut(fileShortcutId);
049 }
050
051
056 @Override
057 public java.lang.String getBeanIdentifier() {
058 return _dlFileShortcutService.getBeanIdentifier();
059 }
060
061 @Override
062 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
063 long fileShortcutId)
064 throws com.liferay.portal.kernel.exception.PortalException {
065 return _dlFileShortcutService.getFileShortcut(fileShortcutId);
066 }
067
068
073 @Override
074 public void setBeanIdentifier(java.lang.String beanIdentifier) {
075 _dlFileShortcutService.setBeanIdentifier(beanIdentifier);
076 }
077
078 @Override
079 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
080 long fileShortcutId, long folderId, long toFileEntryId,
081 com.liferay.portal.service.ServiceContext serviceContext)
082 throws com.liferay.portal.kernel.exception.PortalException {
083 return _dlFileShortcutService.updateFileShortcut(fileShortcutId,
084 folderId, toFileEntryId, serviceContext);
085 }
086
087
090 @Deprecated
091 public DLFileShortcutService getWrappedDLFileShortcutService() {
092 return _dlFileShortcutService;
093 }
094
095
098 @Deprecated
099 public void setWrappedDLFileShortcutService(
100 DLFileShortcutService dlFileShortcutService) {
101 _dlFileShortcutService = dlFileShortcutService;
102 }
103
104 @Override
105 public DLFileShortcutService getWrappedService() {
106 return _dlFileShortcutService;
107 }
108
109 @Override
110 public void setWrappedService(DLFileShortcutService dlFileShortcutService) {
111 _dlFileShortcutService = dlFileShortcutService;
112 }
113
114 private DLFileShortcutService _dlFileShortcutService;
115 }