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 SocialActivityInterpreterLocalService}.
021     * </p>
022     *
023     * @author    Brian Wing Shun Chan
024     * @see       SocialActivityInterpreterLocalService
025     * @generated
026     */
027    public class SocialActivityInterpreterLocalServiceWrapper
028            implements SocialActivityInterpreterLocalService {
029            public SocialActivityInterpreterLocalServiceWrapper(
030                    SocialActivityInterpreterLocalService socialActivityInterpreterLocalService) {
031                    _socialActivityInterpreterLocalService = socialActivityInterpreterLocalService;
032            }
033    
034            public void addActivityInterpreter(
035                    com.liferay.portlet.social.model.SocialActivityInterpreter activityInterpreter) {
036                    _socialActivityInterpreterLocalService.addActivityInterpreter(activityInterpreter);
037            }
038    
039            public void deleteActivityInterpreter(
040                    com.liferay.portlet.social.model.SocialActivityInterpreter activityInterpreter) {
041                    _socialActivityInterpreterLocalService.deleteActivityInterpreter(activityInterpreter);
042            }
043    
044            public com.liferay.portlet.social.model.SocialActivityFeedEntry interpret(
045                    com.liferay.portlet.social.model.SocialActivity activity,
046                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
047                    return _socialActivityInterpreterLocalService.interpret(activity,
048                            themeDisplay);
049            }
050    
051            public SocialActivityInterpreterLocalService getWrappedSocialActivityInterpreterLocalService() {
052                    return _socialActivityInterpreterLocalService;
053            }
054    
055            private SocialActivityInterpreterLocalService _socialActivityInterpreterLocalService;
056    }