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.softwarecatalog.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.service.ImageLocalService;
29  import com.liferay.portal.service.ResourceLocalService;
30  import com.liferay.portal.service.ResourceService;
31  import com.liferay.portal.service.UserLocalService;
32  import com.liferay.portal.service.UserService;
33  import com.liferay.portal.service.base.PrincipalBean;
34  import com.liferay.portal.service.persistence.ImagePersistence;
35  import com.liferay.portal.service.persistence.ResourceFinder;
36  import com.liferay.portal.service.persistence.ResourcePersistence;
37  import com.liferay.portal.service.persistence.UserFinder;
38  import com.liferay.portal.service.persistence.UserPersistence;
39  
40  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
41  import com.liferay.portlet.messageboards.service.MBMessageService;
42  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
43  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
44  import com.liferay.portlet.ratings.service.RatingsStatsLocalService;
45  import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
46  import com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService;
47  import com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService;
48  import com.liferay.portlet.softwarecatalog.service.SCLicenseLocalService;
49  import com.liferay.portlet.softwarecatalog.service.SCLicenseService;
50  import com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService;
51  import com.liferay.portlet.softwarecatalog.service.SCProductEntryService;
52  import com.liferay.portlet.softwarecatalog.service.SCProductScreenshotLocalService;
53  import com.liferay.portlet.softwarecatalog.service.SCProductVersionLocalService;
54  import com.liferay.portlet.softwarecatalog.service.SCProductVersionService;
55  import com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence;
56  import com.liferay.portlet.softwarecatalog.service.persistence.SCLicensePersistence;
57  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence;
58  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotPersistence;
59  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductVersionPersistence;
60  
61  /**
62   * <a href="SCProductEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
63   *
64   * @author Brian Wing Shun Chan
65   *
66   */
67  public abstract class SCProductEntryServiceBaseImpl extends PrincipalBean
68      implements SCProductEntryService {
69      public SCLicenseLocalService getSCLicenseLocalService() {
70          return scLicenseLocalService;
71      }
72  
73      public void setSCLicenseLocalService(
74          SCLicenseLocalService scLicenseLocalService) {
75          this.scLicenseLocalService = scLicenseLocalService;
76      }
77  
78      public SCLicenseService getSCLicenseService() {
79          return scLicenseService;
80      }
81  
82      public void setSCLicenseService(SCLicenseService scLicenseService) {
83          this.scLicenseService = scLicenseService;
84      }
85  
86      public SCLicensePersistence getSCLicensePersistence() {
87          return scLicensePersistence;
88      }
89  
90      public void setSCLicensePersistence(
91          SCLicensePersistence scLicensePersistence) {
92          this.scLicensePersistence = scLicensePersistence;
93      }
94  
95      public SCFrameworkVersionLocalService getSCFrameworkVersionLocalService() {
96          return scFrameworkVersionLocalService;
97      }
98  
99      public void setSCFrameworkVersionLocalService(
100         SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
101         this.scFrameworkVersionLocalService = scFrameworkVersionLocalService;
102     }
103 
104     public SCFrameworkVersionService getSCFrameworkVersionService() {
105         return scFrameworkVersionService;
106     }
107 
108     public void setSCFrameworkVersionService(
109         SCFrameworkVersionService scFrameworkVersionService) {
110         this.scFrameworkVersionService = scFrameworkVersionService;
111     }
112 
113     public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence() {
114         return scFrameworkVersionPersistence;
115     }
116 
117     public void setSCFrameworkVersionPersistence(
118         SCFrameworkVersionPersistence scFrameworkVersionPersistence) {
119         this.scFrameworkVersionPersistence = scFrameworkVersionPersistence;
120     }
121 
122     public SCProductEntryLocalService getSCProductEntryLocalService() {
123         return scProductEntryLocalService;
124     }
125 
126     public void setSCProductEntryLocalService(
127         SCProductEntryLocalService scProductEntryLocalService) {
128         this.scProductEntryLocalService = scProductEntryLocalService;
129     }
130 
131     public SCProductEntryService getSCProductEntryService() {
132         return scProductEntryService;
133     }
134 
135     public void setSCProductEntryService(
136         SCProductEntryService scProductEntryService) {
137         this.scProductEntryService = scProductEntryService;
138     }
139 
140     public SCProductEntryPersistence getSCProductEntryPersistence() {
141         return scProductEntryPersistence;
142     }
143 
144     public void setSCProductEntryPersistence(
145         SCProductEntryPersistence scProductEntryPersistence) {
146         this.scProductEntryPersistence = scProductEntryPersistence;
147     }
148 
149     public SCProductScreenshotLocalService getSCProductScreenshotLocalService() {
150         return scProductScreenshotLocalService;
151     }
152 
153     public void setSCProductScreenshotLocalService(
154         SCProductScreenshotLocalService scProductScreenshotLocalService) {
155         this.scProductScreenshotLocalService = scProductScreenshotLocalService;
156     }
157 
158     public SCProductScreenshotPersistence getSCProductScreenshotPersistence() {
159         return scProductScreenshotPersistence;
160     }
161 
162     public void setSCProductScreenshotPersistence(
163         SCProductScreenshotPersistence scProductScreenshotPersistence) {
164         this.scProductScreenshotPersistence = scProductScreenshotPersistence;
165     }
166 
167     public SCProductVersionLocalService getSCProductVersionLocalService() {
168         return scProductVersionLocalService;
169     }
170 
171     public void setSCProductVersionLocalService(
172         SCProductVersionLocalService scProductVersionLocalService) {
173         this.scProductVersionLocalService = scProductVersionLocalService;
174     }
175 
176     public SCProductVersionService getSCProductVersionService() {
177         return scProductVersionService;
178     }
179 
180     public void setSCProductVersionService(
181         SCProductVersionService scProductVersionService) {
182         this.scProductVersionService = scProductVersionService;
183     }
184 
185     public SCProductVersionPersistence getSCProductVersionPersistence() {
186         return scProductVersionPersistence;
187     }
188 
189     public void setSCProductVersionPersistence(
190         SCProductVersionPersistence scProductVersionPersistence) {
191         this.scProductVersionPersistence = scProductVersionPersistence;
192     }
193 
194     public CounterLocalService getCounterLocalService() {
195         return counterLocalService;
196     }
197 
198     public void setCounterLocalService(CounterLocalService counterLocalService) {
199         this.counterLocalService = counterLocalService;
200     }
201 
202     public CounterService getCounterService() {
203         return counterService;
204     }
205 
206     public void setCounterService(CounterService counterService) {
207         this.counterService = counterService;
208     }
209 
210     public ImageLocalService getImageLocalService() {
211         return imageLocalService;
212     }
213 
214     public void setImageLocalService(ImageLocalService imageLocalService) {
215         this.imageLocalService = imageLocalService;
216     }
217 
218     public ImagePersistence getImagePersistence() {
219         return imagePersistence;
220     }
221 
222     public void setImagePersistence(ImagePersistence imagePersistence) {
223         this.imagePersistence = imagePersistence;
224     }
225 
226     public ResourceLocalService getResourceLocalService() {
227         return resourceLocalService;
228     }
229 
230     public void setResourceLocalService(
231         ResourceLocalService resourceLocalService) {
232         this.resourceLocalService = resourceLocalService;
233     }
234 
235     public ResourceService getResourceService() {
236         return resourceService;
237     }
238 
239     public void setResourceService(ResourceService resourceService) {
240         this.resourceService = resourceService;
241     }
242 
243     public ResourcePersistence getResourcePersistence() {
244         return resourcePersistence;
245     }
246 
247     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
248         this.resourcePersistence = resourcePersistence;
249     }
250 
251     public ResourceFinder getResourceFinder() {
252         return resourceFinder;
253     }
254 
255     public void setResourceFinder(ResourceFinder resourceFinder) {
256         this.resourceFinder = resourceFinder;
257     }
258 
259     public UserLocalService getUserLocalService() {
260         return userLocalService;
261     }
262 
263     public void setUserLocalService(UserLocalService userLocalService) {
264         this.userLocalService = userLocalService;
265     }
266 
267     public UserService getUserService() {
268         return userService;
269     }
270 
271     public void setUserService(UserService userService) {
272         this.userService = userService;
273     }
274 
275     public UserPersistence getUserPersistence() {
276         return userPersistence;
277     }
278 
279     public void setUserPersistence(UserPersistence userPersistence) {
280         this.userPersistence = userPersistence;
281     }
282 
283     public UserFinder getUserFinder() {
284         return userFinder;
285     }
286 
287     public void setUserFinder(UserFinder userFinder) {
288         this.userFinder = userFinder;
289     }
290 
291     public MBMessageLocalService getMBMessageLocalService() {
292         return mbMessageLocalService;
293     }
294 
295     public void setMBMessageLocalService(
296         MBMessageLocalService mbMessageLocalService) {
297         this.mbMessageLocalService = mbMessageLocalService;
298     }
299 
300     public MBMessageService getMBMessageService() {
301         return mbMessageService;
302     }
303 
304     public void setMBMessageService(MBMessageService mbMessageService) {
305         this.mbMessageService = mbMessageService;
306     }
307 
308     public MBMessagePersistence getMBMessagePersistence() {
309         return mbMessagePersistence;
310     }
311 
312     public void setMBMessagePersistence(
313         MBMessagePersistence mbMessagePersistence) {
314         this.mbMessagePersistence = mbMessagePersistence;
315     }
316 
317     public MBMessageFinder getMBMessageFinder() {
318         return mbMessageFinder;
319     }
320 
321     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
322         this.mbMessageFinder = mbMessageFinder;
323     }
324 
325     public RatingsStatsLocalService getRatingsStatsLocalService() {
326         return ratingsStatsLocalService;
327     }
328 
329     public void setRatingsStatsLocalService(
330         RatingsStatsLocalService ratingsStatsLocalService) {
331         this.ratingsStatsLocalService = ratingsStatsLocalService;
332     }
333 
334     public RatingsStatsPersistence getRatingsStatsPersistence() {
335         return ratingsStatsPersistence;
336     }
337 
338     public void setRatingsStatsPersistence(
339         RatingsStatsPersistence ratingsStatsPersistence) {
340         this.ratingsStatsPersistence = ratingsStatsPersistence;
341     }
342 
343     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCLicenseLocalService.impl")
344     protected SCLicenseLocalService scLicenseLocalService;
345     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCLicenseService.impl")
346     protected SCLicenseService scLicenseService;
347     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCLicensePersistence.impl")
348     protected SCLicensePersistence scLicensePersistence;
349     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService.impl")
350     protected SCFrameworkVersionLocalService scFrameworkVersionLocalService;
351     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService.impl")
352     protected SCFrameworkVersionService scFrameworkVersionService;
353     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence.impl")
354     protected SCFrameworkVersionPersistence scFrameworkVersionPersistence;
355     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService.impl")
356     protected SCProductEntryLocalService scProductEntryLocalService;
357     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCProductEntryService.impl")
358     protected SCProductEntryService scProductEntryService;
359     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence.impl")
360     protected SCProductEntryPersistence scProductEntryPersistence;
361     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCProductScreenshotLocalService.impl")
362     protected SCProductScreenshotLocalService scProductScreenshotLocalService;
363     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotPersistence.impl")
364     protected SCProductScreenshotPersistence scProductScreenshotPersistence;
365     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCProductVersionLocalService.impl")
366     protected SCProductVersionLocalService scProductVersionLocalService;
367     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.SCProductVersionService.impl")
368     protected SCProductVersionService scProductVersionService;
369     @javax.annotation.Resource(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductVersionPersistence.impl")
370     protected SCProductVersionPersistence scProductVersionPersistence;
371     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterLocalService.impl")
372     protected CounterLocalService counterLocalService;
373     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterService.impl")
374     protected CounterService counterService;
375     @javax.annotation.Resource(name = "com.liferay.portal.service.ImageLocalService.impl")
376     protected ImageLocalService imageLocalService;
377     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ImagePersistence.impl")
378     protected ImagePersistence imagePersistence;
379     @javax.annotation.Resource(name = "com.liferay.portal.service.ResourceLocalService.impl")
380     protected ResourceLocalService resourceLocalService;
381     @javax.annotation.Resource(name = "com.liferay.portal.service.ResourceService.impl")
382     protected ResourceService resourceService;
383     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
384     protected ResourcePersistence resourcePersistence;
385     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
386     protected ResourceFinder resourceFinder;
387     @javax.annotation.Resource(name = "com.liferay.portal.service.UserLocalService.impl")
388     protected UserLocalService userLocalService;
389     @javax.annotation.Resource(name = "com.liferay.portal.service.UserService.impl")
390     protected UserService userService;
391     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
392     protected UserPersistence userPersistence;
393     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserFinder.impl")
394     protected UserFinder userFinder;
395     @javax.annotation.Resource(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
396     protected MBMessageLocalService mbMessageLocalService;
397     @javax.annotation.Resource(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
398     protected MBMessageService mbMessageService;
399     @javax.annotation.Resource(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
400     protected MBMessagePersistence mbMessagePersistence;
401     @javax.annotation.Resource(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
402     protected MBMessageFinder mbMessageFinder;
403     @javax.annotation.Resource(name = "com.liferay.portlet.ratings.service.RatingsStatsLocalService.impl")
404     protected RatingsStatsLocalService ratingsStatsLocalService;
405     @javax.annotation.Resource(name = "com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence.impl")
406     protected RatingsStatsPersistence ratingsStatsPersistence;
407 }