001
014
015 package com.liferay.portlet.exportimport.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.service.ServiceWrapper;
020
021
028 @ProviderType
029 public class ExportImportConfigurationServiceWrapper
030 implements ExportImportConfigurationService,
031 ServiceWrapper<ExportImportConfigurationService> {
032 public ExportImportConfigurationServiceWrapper(
033 ExportImportConfigurationService exportImportConfigurationService) {
034 _exportImportConfigurationService = exportImportConfigurationService;
035 }
036
037 @Override
038 public void deleteExportImportConfiguration(
039 long exportImportConfigurationId)
040 throws com.liferay.portal.kernel.exception.PortalException {
041 _exportImportConfigurationService.deleteExportImportConfiguration(exportImportConfigurationId);
042 }
043
044
049 @Override
050 public java.lang.String getBeanIdentifier() {
051 return _exportImportConfigurationService.getBeanIdentifier();
052 }
053
054 @Override
055 public com.liferay.portlet.exportimport.model.ExportImportConfiguration moveExportImportConfigurationToTrash(
056 long exportImportConfigurationId)
057 throws com.liferay.portal.kernel.exception.PortalException {
058 return _exportImportConfigurationService.moveExportImportConfigurationToTrash(exportImportConfigurationId);
059 }
060
061 @Override
062 public com.liferay.portlet.exportimport.model.ExportImportConfiguration restoreExportImportConfigurationFromTrash(
063 long exportImportConfigurationId)
064 throws com.liferay.portal.kernel.exception.PortalException {
065 return _exportImportConfigurationService.restoreExportImportConfigurationFromTrash(exportImportConfigurationId);
066 }
067
068
073 @Override
074 public void setBeanIdentifier(java.lang.String beanIdentifier) {
075 _exportImportConfigurationService.setBeanIdentifier(beanIdentifier);
076 }
077
078
081 @Deprecated
082 public ExportImportConfigurationService getWrappedExportImportConfigurationService() {
083 return _exportImportConfigurationService;
084 }
085
086
089 @Deprecated
090 public void setWrappedExportImportConfigurationService(
091 ExportImportConfigurationService exportImportConfigurationService) {
092 _exportImportConfigurationService = exportImportConfigurationService;
093 }
094
095 @Override
096 public ExportImportConfigurationService getWrappedService() {
097 return _exportImportConfigurationService;
098 }
099
100 @Override
101 public void setWrappedService(
102 ExportImportConfigurationService exportImportConfigurationService) {
103 _exportImportConfigurationService = exportImportConfigurationService;
104 }
105
106 private ExportImportConfigurationService _exportImportConfigurationService;
107 }