001
014
015 package com.liferay.portlet.documentlibrary.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
026 public class DLFileShortcutServiceWrapper implements DLFileShortcutService,
027 ServiceWrapper<DLFileShortcutService> {
028 public DLFileShortcutServiceWrapper(
029 DLFileShortcutService dlFileShortcutService) {
030 _dlFileShortcutService = dlFileShortcutService;
031 }
032
033
038 @Override
039 public java.lang.String getBeanIdentifier() {
040 return _dlFileShortcutService.getBeanIdentifier();
041 }
042
043
048 @Override
049 public void setBeanIdentifier(java.lang.String beanIdentifier) {
050 _dlFileShortcutService.setBeanIdentifier(beanIdentifier);
051 }
052
053 @Override
054 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
055 long groupId, long folderId, long toFileEntryId,
056 com.liferay.portal.service.ServiceContext serviceContext)
057 throws com.liferay.portal.kernel.exception.PortalException,
058 com.liferay.portal.kernel.exception.SystemException {
059 return _dlFileShortcutService.addFileShortcut(groupId, folderId,
060 toFileEntryId, serviceContext);
061 }
062
063 @Override
064 public void deleteFileShortcut(long fileShortcutId)
065 throws com.liferay.portal.kernel.exception.PortalException,
066 com.liferay.portal.kernel.exception.SystemException {
067 _dlFileShortcutService.deleteFileShortcut(fileShortcutId);
068 }
069
070 @Override
071 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
072 long fileShortcutId)
073 throws com.liferay.portal.kernel.exception.PortalException,
074 com.liferay.portal.kernel.exception.SystemException {
075 return _dlFileShortcutService.getFileShortcut(fileShortcutId);
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 com.liferay.portal.kernel.exception.SystemException {
084 return _dlFileShortcutService.updateFileShortcut(fileShortcutId,
085 folderId, toFileEntryId, serviceContext);
086 }
087
088
091 public DLFileShortcutService getWrappedDLFileShortcutService() {
092 return _dlFileShortcutService;
093 }
094
095
098 public void setWrappedDLFileShortcutService(
099 DLFileShortcutService dlFileShortcutService) {
100 _dlFileShortcutService = dlFileShortcutService;
101 }
102
103 @Override
104 public DLFileShortcutService getWrappedService() {
105 return _dlFileShortcutService;
106 }
107
108 @Override
109 public void setWrappedService(DLFileShortcutService dlFileShortcutService) {
110 _dlFileShortcutService = dlFileShortcutService;
111 }
112
113 private DLFileShortcutService _dlFileShortcutService;
114 }