1   /**
2    * Copyright (c) 2000-2009 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.ratings.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.kernel.annotation.BeanReference;
29  import com.liferay.portal.service.UserLocalService;
30  import com.liferay.portal.service.UserService;
31  import com.liferay.portal.service.base.PrincipalBean;
32  import com.liferay.portal.service.persistence.UserFinder;
33  import com.liferay.portal.service.persistence.UserPersistence;
34  
35  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
36  import com.liferay.portlet.blogs.service.BlogsEntryService;
37  import com.liferay.portlet.blogs.service.BlogsStatsUserLocalService;
38  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
39  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
40  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
41  import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
42  import com.liferay.portlet.ratings.service.RatingsEntryLocalService;
43  import com.liferay.portlet.ratings.service.RatingsEntryService;
44  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
45  import com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence;
46  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
47  
48  /**
49   * <a href="RatingsEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
50   *
51   * @author Brian Wing Shun Chan
52   *
53   */
54  public abstract class RatingsEntryServiceBaseImpl extends PrincipalBean
55      implements RatingsEntryService {
56      public RatingsEntryLocalService getRatingsEntryLocalService() {
57          return ratingsEntryLocalService;
58      }
59  
60      public void setRatingsEntryLocalService(
61          RatingsEntryLocalService ratingsEntryLocalService) {
62          this.ratingsEntryLocalService = ratingsEntryLocalService;
63      }
64  
65      public RatingsEntryService getRatingsEntryService() {
66          return ratingsEntryService;
67      }
68  
69      public void setRatingsEntryService(RatingsEntryService ratingsEntryService) {
70          this.ratingsEntryService = ratingsEntryService;
71      }
72  
73      public RatingsEntryPersistence getRatingsEntryPersistence() {
74          return ratingsEntryPersistence;
75      }
76  
77      public void setRatingsEntryPersistence(
78          RatingsEntryPersistence ratingsEntryPersistence) {
79          this.ratingsEntryPersistence = ratingsEntryPersistence;
80      }
81  
82      public RatingsStatsLocalService getRatingsStatsLocalService() {
83          return ratingsStatsLocalService;
84      }
85  
86      public void setRatingsStatsLocalService(
87          RatingsStatsLocalService ratingsStatsLocalService) {
88          this.ratingsStatsLocalService = ratingsStatsLocalService;
89      }
90  
91      public RatingsStatsPersistence getRatingsStatsPersistence() {
92          return ratingsStatsPersistence;
93      }
94  
95      public void setRatingsStatsPersistence(
96          RatingsStatsPersistence ratingsStatsPersistence) {
97          this.ratingsStatsPersistence = ratingsStatsPersistence;
98      }
99  
100     public CounterLocalService getCounterLocalService() {
101         return counterLocalService;
102     }
103 
104     public void setCounterLocalService(CounterLocalService counterLocalService) {
105         this.counterLocalService = counterLocalService;
106     }
107 
108     public CounterService getCounterService() {
109         return counterService;
110     }
111 
112     public void setCounterService(CounterService counterService) {
113         this.counterService = counterService;
114     }
115 
116     public UserLocalService getUserLocalService() {
117         return userLocalService;
118     }
119 
120     public void setUserLocalService(UserLocalService userLocalService) {
121         this.userLocalService = userLocalService;
122     }
123 
124     public UserService getUserService() {
125         return userService;
126     }
127 
128     public void setUserService(UserService userService) {
129         this.userService = userService;
130     }
131 
132     public UserPersistence getUserPersistence() {
133         return userPersistence;
134     }
135 
136     public void setUserPersistence(UserPersistence userPersistence) {
137         this.userPersistence = userPersistence;
138     }
139 
140     public UserFinder getUserFinder() {
141         return userFinder;
142     }
143 
144     public void setUserFinder(UserFinder userFinder) {
145         this.userFinder = userFinder;
146     }
147 
148     public BlogsEntryLocalService getBlogsEntryLocalService() {
149         return blogsEntryLocalService;
150     }
151 
152     public void setBlogsEntryLocalService(
153         BlogsEntryLocalService blogsEntryLocalService) {
154         this.blogsEntryLocalService = blogsEntryLocalService;
155     }
156 
157     public BlogsEntryService getBlogsEntryService() {
158         return blogsEntryService;
159     }
160 
161     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
162         this.blogsEntryService = blogsEntryService;
163     }
164 
165     public BlogsEntryPersistence getBlogsEntryPersistence() {
166         return blogsEntryPersistence;
167     }
168 
169     public void setBlogsEntryPersistence(
170         BlogsEntryPersistence blogsEntryPersistence) {
171         this.blogsEntryPersistence = blogsEntryPersistence;
172     }
173 
174     public BlogsEntryFinder getBlogsEntryFinder() {
175         return blogsEntryFinder;
176     }
177 
178     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
179         this.blogsEntryFinder = blogsEntryFinder;
180     }
181 
182     public BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
183         return blogsStatsUserLocalService;
184     }
185 
186     public void setBlogsStatsUserLocalService(
187         BlogsStatsUserLocalService blogsStatsUserLocalService) {
188         this.blogsStatsUserLocalService = blogsStatsUserLocalService;
189     }
190 
191     public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
192         return blogsStatsUserPersistence;
193     }
194 
195     public void setBlogsStatsUserPersistence(
196         BlogsStatsUserPersistence blogsStatsUserPersistence) {
197         this.blogsStatsUserPersistence = blogsStatsUserPersistence;
198     }
199 
200     public BlogsStatsUserFinder getBlogsStatsUserFinder() {
201         return blogsStatsUserFinder;
202     }
203 
204     public void setBlogsStatsUserFinder(
205         BlogsStatsUserFinder blogsStatsUserFinder) {
206         this.blogsStatsUserFinder = blogsStatsUserFinder;
207     }
208 
209     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsEntryLocalService.impl")
210     protected RatingsEntryLocalService ratingsEntryLocalService;
211     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsEntryService.impl")
212     protected RatingsEntryService ratingsEntryService;
213     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsEntryPersistence.impl")
214     protected RatingsEntryPersistence ratingsEntryPersistence;
215     @BeanReference(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
216     protected RatingsStatsLocalService ratingsStatsLocalService;
217     @BeanReference(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
218     protected RatingsStatsPersistence ratingsStatsPersistence;
219     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
220     protected CounterLocalService counterLocalService;
221     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
222     protected CounterService counterService;
223     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
224     protected UserLocalService userLocalService;
225     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
226     protected UserService userService;
227     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
228     protected UserPersistence userPersistence;
229     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
230     protected UserFinder userFinder;
231     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
232     protected BlogsEntryLocalService blogsEntryLocalService;
233     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
234     protected BlogsEntryService blogsEntryService;
235     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
236     protected BlogsEntryPersistence blogsEntryPersistence;
237     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
238     protected BlogsEntryFinder blogsEntryFinder;
239     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.impl")
240     protected BlogsStatsUserLocalService blogsStatsUserLocalService;
241     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence.impl")
242     protected BlogsStatsUserPersistence blogsStatsUserPersistence;
243     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder.impl")
244     protected BlogsStatsUserFinder blogsStatsUserFinder;
245 }