001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    /**
020     * Provides a wrapper for {@link ExportImportConfigurationService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see ExportImportConfigurationService
024     * @generated
025     */
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            /**
043            * Returns the Spring bean ID for this bean.
044            *
045            * @return the Spring bean ID for this bean
046            */
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            /**
067            * Sets the Spring bean ID for this bean.
068            *
069            * @param beanIdentifier the Spring bean ID for this bean
070            */
071            @Override
072            public void setBeanIdentifier(java.lang.String beanIdentifier) {
073                    _exportImportConfigurationService.setBeanIdentifier(beanIdentifier);
074            }
075    
076            /**
077             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
078             */
079            @Deprecated
080            public ExportImportConfigurationService getWrappedExportImportConfigurationService() {
081                    return _exportImportConfigurationService;
082            }
083    
084            /**
085             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
086             */
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    }