001
014
015 package com.liferay.portlet.documentlibrary.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class DLFileShortcutServiceWrapper implements DLFileShortcutService,
029 ServiceWrapper<DLFileShortcutService> {
030 public DLFileShortcutServiceWrapper(
031 DLFileShortcutService dlFileShortcutService) {
032 _dlFileShortcutService = dlFileShortcutService;
033 }
034
035
040 public java.lang.String getBeanIdentifier() {
041 return _dlFileShortcutService.getBeanIdentifier();
042 }
043
044
049 public void setBeanIdentifier(java.lang.String beanIdentifier) {
050 _dlFileShortcutService.setBeanIdentifier(beanIdentifier);
051 }
052
053 public com.liferay.portlet.documentlibrary.model.DLFileShortcut addFileShortcut(
054 long groupId, long folderId, long toFileEntryId,
055 com.liferay.portal.service.ServiceContext serviceContext)
056 throws com.liferay.portal.kernel.exception.PortalException,
057 com.liferay.portal.kernel.exception.SystemException {
058 return _dlFileShortcutService.addFileShortcut(groupId, folderId,
059 toFileEntryId, serviceContext);
060 }
061
062 public void deleteFileShortcut(long fileShortcutId)
063 throws com.liferay.portal.kernel.exception.PortalException,
064 com.liferay.portal.kernel.exception.SystemException {
065 _dlFileShortcutService.deleteFileShortcut(fileShortcutId);
066 }
067
068 public com.liferay.portlet.documentlibrary.model.DLFileShortcut getFileShortcut(
069 long fileShortcutId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _dlFileShortcutService.getFileShortcut(fileShortcutId);
073 }
074
075 public com.liferay.portlet.documentlibrary.model.DLFileShortcut updateFileShortcut(
076 long fileShortcutId, long folderId, long toFileEntryId,
077 com.liferay.portal.service.ServiceContext serviceContext)
078 throws com.liferay.portal.kernel.exception.PortalException,
079 com.liferay.portal.kernel.exception.SystemException {
080 return _dlFileShortcutService.updateFileShortcut(fileShortcutId,
081 folderId, toFileEntryId, serviceContext);
082 }
083
084
087 public DLFileShortcutService getWrappedDLFileShortcutService() {
088 return _dlFileShortcutService;
089 }
090
091
094 public void setWrappedDLFileShortcutService(
095 DLFileShortcutService dlFileShortcutService) {
096 _dlFileShortcutService = dlFileShortcutService;
097 }
098
099 public DLFileShortcutService getWrappedService() {
100 return _dlFileShortcutService;
101 }
102
103 public void setWrappedService(DLFileShortcutService dlFileShortcutService) {
104 _dlFileShortcutService = dlFileShortcutService;
105 }
106
107 private DLFileShortcutService _dlFileShortcutService;
108 }