1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.social.service;
16  
17  
18  /**
19   * <a href="SocialRequestInterpreterLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link SocialRequestInterpreterLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       SocialRequestInterpreterLocalService
32   * @generated
33   */
34  public class SocialRequestInterpreterLocalServiceWrapper
35      implements SocialRequestInterpreterLocalService {
36      public SocialRequestInterpreterLocalServiceWrapper(
37          SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
38          _socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
39      }
40  
41      public void addRequestInterpreter(
42          com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
43          _socialRequestInterpreterLocalService.addRequestInterpreter(requestInterpreter);
44      }
45  
46      public void deleteRequestInterpreter(
47          com.liferay.portlet.social.model.SocialRequestInterpreter requestInterpreter) {
48          _socialRequestInterpreterLocalService.deleteRequestInterpreter(requestInterpreter);
49      }
50  
51      public com.liferay.portlet.social.model.SocialRequestFeedEntry interpret(
52          com.liferay.portlet.social.model.SocialRequest request,
53          com.liferay.portal.theme.ThemeDisplay themeDisplay) {
54          return _socialRequestInterpreterLocalService.interpret(request,
55              themeDisplay);
56      }
57  
58      public void processConfirmation(
59          com.liferay.portlet.social.model.SocialRequest request,
60          com.liferay.portal.theme.ThemeDisplay themeDisplay) {
61          _socialRequestInterpreterLocalService.processConfirmation(request,
62              themeDisplay);
63      }
64  
65      public void processRejection(
66          com.liferay.portlet.social.model.SocialRequest request,
67          com.liferay.portal.theme.ThemeDisplay themeDisplay) {
68          _socialRequestInterpreterLocalService.processRejection(request,
69              themeDisplay);
70      }
71  
72      public SocialRequestInterpreterLocalService getWrappedSocialRequestInterpreterLocalService() {
73          return _socialRequestInterpreterLocalService;
74      }
75  
76      private SocialRequestInterpreterLocalService _socialRequestInterpreterLocalService;
77  }