1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
19  
20  package com.liferay.portlet.ratings.service.base;
21  
22  import com.liferay.counter.service.CounterLocalService;
23  import com.liferay.counter.service.CounterService;
24  
25  import com.liferay.portal.kernel.annotation.BeanReference;
26  import com.liferay.portal.service.UserLocalService;
27  import com.liferay.portal.service.UserService;
28  import com.liferay.portal.service.base.PrincipalBean;
29  import com.liferay.portal.service.persistence.UserFinder;
30  import com.liferay.portal.service.persistence.UserPersistence;
31  
32  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
33  import com.liferay.portlet.blogs.service.BlogsEntryService;
34  import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
35  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
36  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
37  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
38  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
39  import com.liferay.portlet.ratings.service.RatingsEntryLocalService;
40  import com.liferay.portlet.ratings.service.RatingsEntryService;
41  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
42  import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence;
43  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
44  
45  /**
46   * <a href="RatingsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
47   *
48   * @author Brian Wing Shun Chan
49   *
50   */
51  public abstract class RatingsEntryServiceBaseImpl extends PrincipalBean
52      implements RatingsEntryService {
53      public RatingsEntryLocalService getRatingsEntryLocalService() {
54          return ratingsEntryLocalService;
55      }
56  
57      public void setRatingsEntryLocalService(
58          RatingsEntryLocalService ratingsEntryLocalService) {
59          this.ratingsEntryLocalService = ratingsEntryLocalService;
60      }
61  
62      public RatingsEntryService getRatingsEntryService() {
63          return ratingsEntryService;
64      }
65  
66      public void setRatingsEntryService(RatingsEntryService ratingsEntryService) {
67          this.ratingsEntryService = ratingsEntryService;
68      }
69  
70      public RatingsEntryPersistence getRatingsEntryPersistence() {
71          return ratingsEntryPersistence;
72      }
73  
74      public void setRatingsEntryPersistence(
75          RatingsEntryPersistence ratingsEntryPersistence) {
76          this.ratingsEntryPersistence = ratingsEntryPersistence;
77      }
78  
79      public RatingsStatsLocalService getRatingsStatsLocalService() {
80          return ratingsStatsLocalService;
81      }
82  
83      public void setRatingsStatsLocalService(
84          RatingsStatsLocalService ratingsStatsLocalService) {
85          this.ratingsStatsLocalService = ratingsStatsLocalService;
86      }
87  
88      public RatingsStatsPersistence getRatingsStatsPersistence() {
89          return ratingsStatsPersistence;
90      }
91  
92      public void setRatingsStatsPersistence(
93          RatingsStatsPersistence ratingsStatsPersistence) {
94          this.ratingsStatsPersistence = ratingsStatsPersistence;
95      }
96  
97      public CounterLocalService getCounterLocalService() {
98          return counterLocalService;
99      }
100 
101     public void setCounterLocalService(CounterLocalService counterLocalService) {
102         this.counterLocalService = counterLocalService;
103     }
104 
105     public CounterService getCounterService() {
106         return counterService;
107     }
108 
109     public void setCounterService(CounterService counterService) {
110         this.counterService = counterService;
111     }
112 
113     public UserLocalService getUserLocalService() {
114         return userLocalService;
115     }
116 
117     public void setUserLocalService(UserLocalService userLocalService) {
118         this.userLocalService = userLocalService;
119     }
120 
121     public UserService getUserService() {
122         return userService;
123     }
124 
125     public void setUserService(UserService userService) {
126         this.userService = userService;
127     }
128 
129     public UserPersistence getUserPersistence() {
130         return userPersistence;
131     }
132 
133     public void setUserPersistence(UserPersistence userPersistence) {
134         this.userPersistence = userPersistence;
135     }
136 
137     public UserFinder getUserFinder() {
138         return userFinder;
139     }
140 
141     public void setUserFinder(UserFinder userFinder) {
142         this.userFinder = userFinder;
143     }
144 
145     public BlogsEntryLocalService getBlogsEntryLocalService() {
146         return blogsEntryLocalService;
147     }
148 
149     public void setBlogsEntryLocalService(
150         BlogsEntryLocalService blogsEntryLocalService) {
151         this.blogsEntryLocalService = blogsEntryLocalService;
152     }
153 
154     public BlogsEntryService getBlogsEntryService() {
155         return blogsEntryService;
156     }
157 
158     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
159         this.blogsEntryService = blogsEntryService;
160     }
161 
162     public BlogsEntryPersistence getBlogsEntryPersistence() {
163         return blogsEntryPersistence;
164     }
165 
166     public void setBlogsEntryPersistence(
167         BlogsEntryPersistence blogsEntryPersistence) {
168         this.blogsEntryPersistence = blogsEntryPersistence;
169     }
170 
171     public BlogsEntryFinder getBlogsEntryFinder() {
172         return blogsEntryFinder;
173     }
174 
175     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
176         this.blogsEntryFinder = blogsEntryFinder;
177     }
178 
179     public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
180         return blogsStatsUserLocalService;
181     }
182 
183     public void setBlogsStatsUserLocalService(
184         BlogsStatsUserLocalService blogsStatsUserLocalService) {
185         this.blogsStatsUserLocalService = blogsStatsUserLocalService;
186     }
187 
188     public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
189         return blogsStatsUserPersistence;
190     }
191 
192     public void setBlogsStatsUserPersistence(
193         BlogsStatsUserPersistence blogsStatsUserPersistence) {
194         this.blogsStatsUserPersistence = blogsStatsUserPersistence;
195     }
196 
197     public BlogsStatsUserFinder getBlogsStatsUserFinder() {
198         return blogsStatsUserFinder;
199     }
200 
201     public void setBlogsStatsUserFinder(
202         BlogsStatsUserFinder blogsStatsUserFinder) {
203         this.blogsStatsUserFinder = blogsStatsUserFinder;
204     }
205 
206     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsEntryLocalService.impl")
207     protected RatingsEntryLocalService ratingsEntryLocalService;
208     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsEntryService.impl")
209     protected RatingsEntryService ratingsEntryService;
210     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence.impl")
211     protected RatingsEntryPersistence ratingsEntryPersistence;
212     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
213     protected RatingsStatsLocalService ratingsStatsLocalService;
214     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
215     protected RatingsStatsPersistence ratingsStatsPersistence;
216     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
217     protected CounterLocalService counterLocalService;
218     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
219     protected CounterService counterService;
220     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
221     protected UserLocalService userLocalService;
222     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
223     protected UserService userService;
224     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
225     protected UserPersistence userPersistence;
226     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
227     protected UserFinder userFinder;
228     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
229     protected BlogsEntryLocalService blogsEntryLocalService;
230     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
231     protected BlogsEntryService blogsEntryService;
232     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
233     protected BlogsEntryPersistence blogsEntryPersistence;
234     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
235     protected BlogsEntryFinder blogsEntryFinder;
236     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.impl")
237     protected BlogsStatsUserLocalService blogsStatsUserLocalService;
238     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence.impl")
239     protected BlogsStatsUserPersistence blogsStatsUserPersistence;
240     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder.impl")
241     protected BlogsStatsUserFinder blogsStatsUserFinder;
242 }