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