001    /**
002     * Copyright (c) 2000-2012 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    /**
018     * <p>
019     * This class is a wrapper for {@link PortalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       PortalService
024     * @generated
025     */
026    public class PortalServiceWrapper implements PortalService,
027            ServiceWrapper<PortalService> {
028            public PortalServiceWrapper(PortalService portalService) {
029                    _portalService = portalService;
030            }
031    
032            /**
033            * Returns the Spring bean ID for this bean.
034            *
035            * @return the Spring bean ID for this bean
036            */
037            public java.lang.String getBeanIdentifier() {
038                    return _portalService.getBeanIdentifier();
039            }
040    
041            /**
042            * Sets the Spring bean ID for this bean.
043            *
044            * @param beanIdentifier the Spring bean ID for this bean
045            */
046            public void setBeanIdentifier(java.lang.String beanIdentifier) {
047                    _portalService.setBeanIdentifier(beanIdentifier);
048            }
049    
050            public java.lang.String getAutoDeployDirectory()
051                    throws com.liferay.portal.kernel.exception.SystemException {
052                    return _portalService.getAutoDeployDirectory();
053            }
054    
055            public int getBuildNumber() {
056                    return _portalService.getBuildNumber();
057            }
058    
059            public void testAddClassName_Rollback(java.lang.String classNameValue)
060                    throws com.liferay.portal.kernel.exception.SystemException {
061                    _portalService.testAddClassName_Rollback(classNameValue);
062            }
063    
064            public void testAddClassName_Success(java.lang.String classNameValue)
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    _portalService.testAddClassName_Success(classNameValue);
067            }
068    
069            public void testAddClassNameAndTestTransactionPortletBar_PortalRollback(
070                    java.lang.String transactionPortletBarText)
071                    throws com.liferay.portal.kernel.exception.SystemException {
072                    _portalService.testAddClassNameAndTestTransactionPortletBar_PortalRollback(transactionPortletBarText);
073            }
074    
075            public void testAddClassNameAndTestTransactionPortletBar_PortletRollback(
076                    java.lang.String transactionPortletBarText)
077                    throws com.liferay.portal.kernel.exception.SystemException {
078                    _portalService.testAddClassNameAndTestTransactionPortletBar_PortletRollback(transactionPortletBarText);
079            }
080    
081            public void testAddClassNameAndTestTransactionPortletBar_Success(
082                    java.lang.String transactionPortletBarText)
083                    throws com.liferay.portal.kernel.exception.SystemException {
084                    _portalService.testAddClassNameAndTestTransactionPortletBar_Success(transactionPortletBarText);
085            }
086    
087            public void testCounterIncrement_Rollback()
088                    throws com.liferay.portal.kernel.exception.SystemException {
089                    _portalService.testCounterIncrement_Rollback();
090            }
091    
092            public void testDeleteClassName()
093                    throws com.liferay.portal.kernel.exception.PortalException,
094                            com.liferay.portal.kernel.exception.SystemException {
095                    _portalService.testDeleteClassName();
096            }
097    
098            public int testGetBuildNumber() {
099                    return _portalService.testGetBuildNumber();
100            }
101    
102            public void testGetUserId() {
103                    _portalService.testGetUserId();
104            }
105    
106            public boolean testHasClassName()
107                    throws com.liferay.portal.kernel.exception.SystemException {
108                    return _portalService.testHasClassName();
109            }
110    
111            /**
112             * @deprecated Renamed to {@link #getWrappedService}
113             */
114            public PortalService getWrappedPortalService() {
115                    return _portalService;
116            }
117    
118            /**
119             * @deprecated Renamed to {@link #setWrappedService}
120             */
121            public void setWrappedPortalService(PortalService portalService) {
122                    _portalService = portalService;
123            }
124    
125            public PortalService getWrappedService() {
126                    return _portalService;
127            }
128    
129            public void setWrappedService(PortalService portalService) {
130                    _portalService = portalService;
131            }
132    
133            private PortalService _portalService;
134    }