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    /**
019     * <p>
020     * This class is a wrapper for {@link SocialRequestInterpreterLocalService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       SocialRequestInterpreterLocalService
025     * @generated
026     */
027    public class SocialRequestInterpreterLocalServiceWrapper
028            implements SocialRequestInterpreterLocalService {
029            public SocialRequestInterpreterLocalServiceWrapper(
030                    SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
031                    _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
032            }
033    
034            public void addRequestInterpreter(
035                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
036                    _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
037            }
038    
039            public void deleteRequestInterpreter(
040                    com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
041                    _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
042            }
043    
044            public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
045                    com.liferay.portlet.social.model.SocialRequest request,
046                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
047                    return _socialRequestInterpreterLocalService.interpret(request,
048                            themeDisplay);
049            }
050    
051            public void processConfirmation(
052                    com.liferay.portlet.social.model.SocialRequest request,
053                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
054                    _socialRequestInterpreterLocalService.processConfirmation(request,
055                            themeDisplay);
056            }
057    
058            public void processRejection(
059                    com.liferay.portlet.social.model.SocialRequest request,
060                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
061                    _socialRequestInterpreterLocalService.processRejection(request,
062                            themeDisplay);
063            }
064    
065            public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
066                    return _socialRequestInterpreterLocalService;
067            }
068    
069            private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
070    }