001    /**
002     * Copyright (c) 2000-2010 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            public void addRequestInterpreter(
034                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
035                    _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
036            }
037    
038            public void deleteRequestInterpreter(
039                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
040                    _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
041            }
042    
043            public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
044                    com.liferay.portlet.social.model.SocialRequest request,
045                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
046                    return _socialRequestInterpreterLocalService.interpret(request,
047                            themeDisplay);
048            }
049    
050            public void processConfirmation(
051                    com.liferay.portlet.social.model.SocialRequest request,
052                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
053                    _socialRequestInterpreterLocalService.processConfirmation(request,
054                            themeDisplay);
055            }
056    
057            public void processRejection(
058                    com.liferay.portlet.social.model.SocialRequest request,
059                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
060                    _socialRequestInterpreterLocalService.processRejection(request,
061                            themeDisplay);
062            }
063    
064            public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
065                    return _socialRequestInterpreterLocalService;
066            }
067    
068            private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
069    }