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 testAutoSyncHibernateSessionStateOnTxCreation()
088                    throws com.liferay.portal.kernel.exception.SystemException {
089                    _portalService.testAutoSyncHibernateSessionStateOnTxCreation();
090            }
091    
092            public void testCounterIncrement_Rollback()
093                    throws com.liferay.portal.kernel.exception.SystemException {
094                    _portalService.testCounterIncrement_Rollback();
095            }
096    
097            public void testDeleteClassName()
098                    throws com.liferay.portal.kernel.exception.PortalException,
099                            com.liferay.portal.kernel.exception.SystemException {
100                    _portalService.testDeleteClassName();
101            }
102    
103            public int testGetBuildNumber() {
104                    return _portalService.testGetBuildNumber();
105            }
106    
107            public void testGetUserId() {
108                    _portalService.testGetUserId();
109            }
110    
111            public boolean testHasClassName()
112                    throws com.liferay.portal.kernel.exception.SystemException {
113                    return _portalService.testHasClassName();
114            }
115    
116            /**
117             * @deprecated Renamed to {@link #getWrappedService}
118             */
119            public PortalService getWrappedPortalService() {
120                    return _portalService;
121            }
122    
123            /**
124             * @deprecated Renamed to {@link #setWrappedService}
125             */
126            public void setWrappedPortalService(PortalService portalService) {
127                    _portalService = portalService;
128            }
129    
130            public PortalService getWrappedService() {
131                    return _portalService;
132            }
133    
134            public void setWrappedService(PortalService portalService) {
135                    _portalService = portalService;
136            }
137    
138            private PortalService _portalService;
139    }