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