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            public java.lang.String getAutoDeployDirectory()
033                    throws com.liferay.portal.kernel.exception.SystemException {
034                    return _portalService.getAutoDeployDirectory();
035            }
036    
037            public int getBuildNumber() {
038                    return _portalService.getBuildNumber();
039            }
040    
041            public void testAddClassName_Rollback(java.lang.String classNameValue)
042                    throws com.liferay.portal.kernel.exception.SystemException {
043                    _portalService.testAddClassName_Rollback(classNameValue);
044            }
045    
046            public void testAddClassName_Success(java.lang.String classNameValue)
047                    throws com.liferay.portal.kernel.exception.SystemException {
048                    _portalService.testAddClassName_Success(classNameValue);
049            }
050    
051            public void testAddClassNameAndTestTransactionPortletBar_PortalRollback(
052                    java.lang.String transactionPortletBarText)
053                    throws com.liferay.portal.kernel.exception.SystemException {
054                    _portalService.testAddClassNameAndTestTransactionPortletBar_PortalRollback(transactionPortletBarText);
055            }
056    
057            public void testAddClassNameAndTestTransactionPortletBar_PortletRollback(
058                    java.lang.String transactionPortletBarText)
059                    throws com.liferay.portal.kernel.exception.SystemException {
060                    _portalService.testAddClassNameAndTestTransactionPortletBar_PortletRollback(transactionPortletBarText);
061            }
062    
063            public void testAddClassNameAndTestTransactionPortletBar_Success(
064                    java.lang.String transactionPortletBarText)
065                    throws com.liferay.portal.kernel.exception.SystemException {
066                    _portalService.testAddClassNameAndTestTransactionPortletBar_Success(transactionPortletBarText);
067            }
068    
069            public void testCounterIncrement_Rollback()
070                    throws com.liferay.portal.kernel.exception.SystemException {
071                    _portalService.testCounterIncrement_Rollback();
072            }
073    
074            public void testDeleteClassName()
075                    throws com.liferay.portal.kernel.exception.PortalException,
076                            com.liferay.portal.kernel.exception.SystemException {
077                    _portalService.testDeleteClassName();
078            }
079    
080            public void testGetUserId() {
081                    _portalService.testGetUserId();
082            }
083    
084            public boolean testHasClassName()
085                    throws com.liferay.portal.kernel.exception.SystemException {
086                    return _portalService.testHasClassName();
087            }
088    
089            /**
090             * @deprecated Renamed to {@link #getWrappedService}
091             */
092            public PortalService getWrappedPortalService() {
093                    return _portalService;
094            }
095    
096            /**
097             * @deprecated Renamed to {@link #setWrappedService}
098             */
099            public void setWrappedPortalService(PortalService portalService) {
100                    _portalService = portalService;
101            }
102    
103            public PortalService getWrappedService() {
104                    return _portalService;
105            }
106    
107            public void setWrappedService(PortalService portalService) {
108                    _portalService = portalService;
109            }
110    
111            private PortalService _portalService;
112    }