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 SocialActivityInterpreterLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       SocialActivityInterpreterLocalService
024     * @generated
025     */
026    public class SocialActivityInterpreterLocalServiceWrapper
027            implements SocialActivityInterpreterLocalService {
028            public SocialActivityInterpreterLocalServiceWrapper(
029                    SocialActivityInterpreterLocalService socialActivityInterpreterLocalService) {
030                    _socialActivityInterpreterLocalService = socialActivityInterpreterLocalService;
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 _socialActivityInterpreterLocalService.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                    _socialActivityInterpreterLocalService.setBeanIdentifier(beanIdentifier);
049            }
050    
051            public void addActivityInterpreter(
052                    com.liferay.portlet.social.model.SocialActivityInterpreter activityInterpreter) {
053                    _socialActivityInterpreterLocalService.addActivityInterpreter(activityInterpreter);
054            }
055    
056            public void deleteActivityInterpreter(
057                    com.liferay.portlet.social.model.SocialActivityInterpreter activityInterpreter) {
058                    _socialActivityInterpreterLocalService.deleteActivityInterpreter(activityInterpreter);
059            }
060    
061            public com.liferay.portlet.social.model.SocialActivityFeedEntry interpret(
062                    com.liferay.portlet.social.model.SocialActivity activity,
063                    com.liferay.portal.theme.ThemeDisplay themeDisplay) {
064                    return _socialActivityInterpreterLocalService.interpret(activity,
065                            themeDisplay);
066            }
067    
068            public SocialActivityInterpreterLocalService getWrappedSocialActivityInterpreterLocalService() {
069                    return _socialActivityInterpreterLocalService;
070            }
071    
072            public void setWrappedSocialActivityInterpreterLocalService(
073                    SocialActivityInterpreterLocalService socialActivityInterpreterLocalService) {
074                    _socialActivityInterpreterLocalService = socialActivityInterpreterLocalService;
075            }
076    
077            private SocialActivityInterpreterLocalService _socialActivityInterpreterLocalService;
078    }