1   /**
2    * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.social.service.base;
24  
25  import com.liferay.portlet.social.service.SocialActivityInterpreterLocalService;
26  import com.liferay.portlet.social.service.SocialActivityLocalService;
27  import com.liferay.portlet.social.service.SocialRelationLocalService;
28  import com.liferay.portlet.social.service.SocialRequestInterpreterLocalService;
29  import com.liferay.portlet.social.service.SocialRequestLocalService;
30  import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
31  import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
32  import com.liferay.portlet.social.service.persistence.SocialRelationPersistence;
33  import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
34  
35  /**
36   * <a href="SocialActivityInterpreterLocalServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
37   *
38   * @author Brian Wing Shun Chan
39   *
40   */
41  public abstract class SocialActivityInterpreterLocalServiceBaseImpl
42      implements SocialActivityInterpreterLocalService {
43      public SocialActivityLocalService getSocialActivityLocalService() {
44          return socialActivityLocalService;
45      }
46  
47      public void setSocialActivityLocalService(
48          SocialActivityLocalService socialActivityLocalService) {
49          this.socialActivityLocalService = socialActivityLocalService;
50      }
51  
52      public SocialActivityPersistence getSocialActivityPersistence() {
53          return socialActivityPersistence;
54      }
55  
56      public void setSocialActivityPersistence(
57          SocialActivityPersistence socialActivityPersistence) {
58          this.socialActivityPersistence = socialActivityPersistence;
59      }
60  
61      public SocialActivityFinder getSocialActivityFinder() {
62          return socialActivityFinder;
63      }
64  
65      public void setSocialActivityFinder(
66          SocialActivityFinder socialActivityFinder) {
67          this.socialActivityFinder = socialActivityFinder;
68      }
69  
70      public SocialActivityInterpreterLocalService getSocialActivityInterpreterLocalService() {
71          return socialActivityInterpreterLocalService;
72      }
73  
74      public void setSocialActivityInterpreterLocalService(
75          SocialActivityInterpreterLocalService socialActivityInterpreterLocalService) {
76          this.socialActivityInterpreterLocalService = socialActivityInterpreterLocalService;
77      }
78  
79      public SocialRelationLocalService getSocialRelationLocalService() {
80          return socialRelationLocalService;
81      }
82  
83      public void setSocialRelationLocalService(
84          SocialRelationLocalService socialRelationLocalService) {
85          this.socialRelationLocalService = socialRelationLocalService;
86      }
87  
88      public SocialRelationPersistence getSocialRelationPersistence() {
89          return socialRelationPersistence;
90      }
91  
92      public void setSocialRelationPersistence(
93          SocialRelationPersistence socialRelationPersistence) {
94          this.socialRelationPersistence = socialRelationPersistence;
95      }
96  
97      public SocialRequestLocalService getSocialRequestLocalService() {
98          return socialRequestLocalService;
99      }
100 
101     public void setSocialRequestLocalService(
102         SocialRequestLocalService socialRequestLocalService) {
103         this.socialRequestLocalService = socialRequestLocalService;
104     }
105 
106     public SocialRequestPersistence getSocialRequestPersistence() {
107         return socialRequestPersistence;
108     }
109 
110     public void setSocialRequestPersistence(
111         SocialRequestPersistence socialRequestPersistence) {
112         this.socialRequestPersistence = socialRequestPersistence;
113     }
114 
115     public SocialRequestInterpreterLocalService getSocialRequestInterpreterLocalService() {
116         return socialRequestInterpreterLocalService;
117     }
118 
119     public void setSocialRequestInterpreterLocalService(
120         SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
121         this.socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
122     }
123 
124     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.SocialActivityLocalService.impl")
125     protected SocialActivityLocalService socialActivityLocalService;
126     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.persistence.SocialActivityPersistence.impl")
127     protected SocialActivityPersistence socialActivityPersistence;
128     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.persistence.SocialActivityFinder.impl")
129     protected SocialActivityFinder socialActivityFinder;
130     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.SocialActivityInterpreterLocalService.impl")
131     protected SocialActivityInterpreterLocalService socialActivityInterpreterLocalService;
132     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.SocialRelationLocalService.impl")
133     protected SocialRelationLocalService socialRelationLocalService;
134     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.persistence.SocialRelationPersistence.impl")
135     protected SocialRelationPersistence socialRelationPersistence;
136     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.SocialRequestLocalService.impl")
137     protected SocialRequestLocalService socialRequestLocalService;
138     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.persistence.SocialRequestPersistence.impl")
139     protected SocialRequestPersistence socialRequestPersistence;
140     @javax.annotation.Resource(name = "com.liferay.portlet.social.service.SocialRequestInterpreterLocalService.impl")
141     protected SocialRequestInterpreterLocalService socialRequestInterpreterLocalService;
142 }