001    /**
002     * Copyright (c) 2000-2010 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.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    }