001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portlet.social.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link SocialRequestInterpreterLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialRequestInterpreterLocalService
024     * @generated
025     */
026    public class SocialRequestInterpreterLocalServiceWrapper
027            implements SocialRequestInterpreterLocalService {
028            public SocialRequestInterpreterLocalServiceWrapper(
029                    SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
030                    _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
031            }
032    
033            /**
034            * Returns the Spring bean ID for this bean.
035            *
036            * @return the Spring bean ID for this bean
037            */
038            public java.lang.String getBeanIdentifier() {
039                    return _socialRequestInterpreterLocalService.getBeanIdentifier();
040            }
041    
042            /**
043            * Sets the Spring bean ID for this bean.
044            *
045            * @param beanIdentifier the Spring bean ID for this bean
046            */
047            public void setBeanIdentifier(java.lang.String beanIdentifier) {
048                    _socialRequestInterpreterLocalService.setBeanIdentifier(beanIdentifier);
049            }
050    
051            public void addRequestInterpreter(
052                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
053                    _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
054            }
055    
056            public void deleteRequestInterpreter(
057                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
058                    _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
059            }
060    
061            public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
062                    com.liferay.portlet.social.model.SocialRequest request,
063                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
064                    return _socialRequestInterpreterLocalService.interpret(request,
065                            themeDisplay);
066            }
067    
068            public void processConfirmation(
069                    com.liferay.portlet.social.model.SocialRequest request,
070                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
071                    _socialRequestInterpreterLocalService.processConfirmation(request,
072                            themeDisplay);
073            }
074    
075            public void processRejection(
076                    com.liferay.portlet.social.model.SocialRequest request,
077                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
078                    _socialRequestInterpreterLocalService.processRejection(request,
079                            themeDisplay);
080            }
081    
082            public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
083                    return _socialRequestInterpreterLocalService;
084            }
085    
086            public void setWrappedSocialRequestInterpreterLocalService(
087                    SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
088                    _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
089            }
090    
091            private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
092    }