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.softwarecatalog.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.softwarecatalog.service.SCFrameworkVersionLocalService;
36  import com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService;
37  import com.liferay.portlet.softwarecatalog.service.SCLicenseLocalService;
38  import com.liferay.portlet.softwarecatalog.service.SCLicenseService;
39  import com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService;
40  import com.liferay.portlet.softwarecatalog.service.SCProductEntryService;
41  import com.liferay.portlet.softwarecatalog.service.SCProductScreenshotLocalService;
42  import com.liferay.portlet.softwarecatalog.service.SCProductVersionLocalService;
43  import com.liferay.portlet.softwarecatalog.service.SCProductVersionService;
44  import com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence;
45  import com.liferay.portlet.softwarecatalog.service.persistence.SCLicensePersistence;
46  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence;
47  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotPersistence;
48  import com.liferay.portlet.softwarecatalog.service.persistence.SCProductVersionPersistence;
49  
50  /**
51   * <a href="SCProductVersionServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
52   *
53   * @author Brian Wing Shun Chan
54   *
55   */
56  public abstract class SCProductVersionServiceBaseImpl extends PrincipalBean
57      implements SCProductVersionService {
58      public SCLicenseLocalService getSCLicenseLocalService() {
59          return scLicenseLocalService;
60      }
61  
62      public void setSCLicenseLocalService(
63          SCLicenseLocalService scLicenseLocalService) {
64          this.scLicenseLocalService = scLicenseLocalService;
65      }
66  
67      public SCLicenseService getSCLicenseService() {
68          return scLicenseService;
69      }
70  
71      public void setSCLicenseService(SCLicenseService scLicenseService) {
72          this.scLicenseService = scLicenseService;
73      }
74  
75      public SCLicensePersistence getSCLicensePersistence() {
76          return scLicensePersistence;
77      }
78  
79      public void setSCLicensePersistence(
80          SCLicensePersistence scLicensePersistence) {
81          this.scLicensePersistence = scLicensePersistence;
82      }
83  
84      public SCFrameworkVersionLocalService getSCFrameworkVersionLocalService() {
85          return scFrameworkVersionLocalService;
86      }
87  
88      public void setSCFrameworkVersionLocalService(
89          SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
90          this.scFrameworkVersionLocalService = scFrameworkVersionLocalService;
91      }
92  
93      public SCFrameworkVersionService getSCFrameworkVersionService() {
94          return scFrameworkVersionService;
95      }
96  
97      public void setSCFrameworkVersionService(
98          SCFrameworkVersionService scFrameworkVersionService) {
99          this.scFrameworkVersionService = scFrameworkVersionService;
100     }
101 
102     public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence() {
103         return scFrameworkVersionPersistence;
104     }
105 
106     public void setSCFrameworkVersionPersistence(
107         SCFrameworkVersionPersistence scFrameworkVersionPersistence) {
108         this.scFrameworkVersionPersistence = scFrameworkVersionPersistence;
109     }
110 
111     public SCProductEntryLocalService getSCProductEntryLocalService() {
112         return scProductEntryLocalService;
113     }
114 
115     public void setSCProductEntryLocalService(
116         SCProductEntryLocalService scProductEntryLocalService) {
117         this.scProductEntryLocalService = scProductEntryLocalService;
118     }
119 
120     public SCProductEntryService getSCProductEntryService() {
121         return scProductEntryService;
122     }
123 
124     public void setSCProductEntryService(
125         SCProductEntryService scProductEntryService) {
126         this.scProductEntryService = scProductEntryService;
127     }
128 
129     public SCProductEntryPersistence getSCProductEntryPersistence() {
130         return scProductEntryPersistence;
131     }
132 
133     public void setSCProductEntryPersistence(
134         SCProductEntryPersistence scProductEntryPersistence) {
135         this.scProductEntryPersistence = scProductEntryPersistence;
136     }
137 
138     public SCProductScreenshotLocalService getSCProductScreenshotLocalService() {
139         return scProductScreenshotLocalService;
140     }
141 
142     public void setSCProductScreenshotLocalService(
143         SCProductScreenshotLocalService scProductScreenshotLocalService) {
144         this.scProductScreenshotLocalService = scProductScreenshotLocalService;
145     }
146 
147     public SCProductScreenshotPersistence getSCProductScreenshotPersistence() {
148         return scProductScreenshotPersistence;
149     }
150 
151     public void setSCProductScreenshotPersistence(
152         SCProductScreenshotPersistence scProductScreenshotPersistence) {
153         this.scProductScreenshotPersistence = scProductScreenshotPersistence;
154     }
155 
156     public SCProductVersionLocalService getSCProductVersionLocalService() {
157         return scProductVersionLocalService;
158     }
159 
160     public void setSCProductVersionLocalService(
161         SCProductVersionLocalService scProductVersionLocalService) {
162         this.scProductVersionLocalService = scProductVersionLocalService;
163     }
164 
165     public SCProductVersionService getSCProductVersionService() {
166         return scProductVersionService;
167     }
168 
169     public void setSCProductVersionService(
170         SCProductVersionService scProductVersionService) {
171         this.scProductVersionService = scProductVersionService;
172     }
173 
174     public SCProductVersionPersistence getSCProductVersionPersistence() {
175         return scProductVersionPersistence;
176     }
177 
178     public void setSCProductVersionPersistence(
179         SCProductVersionPersistence scProductVersionPersistence) {
180         this.scProductVersionPersistence = scProductVersionPersistence;
181     }
182 
183     public CounterLocalService getCounterLocalService() {
184         return counterLocalService;
185     }
186 
187     public void setCounterLocalService(CounterLocalService counterLocalService) {
188         this.counterLocalService = counterLocalService;
189     }
190 
191     public CounterService getCounterService() {
192         return counterService;
193     }
194 
195     public void setCounterService(CounterService counterService) {
196         this.counterService = counterService;
197     }
198 
199     public UserLocalService getUserLocalService() {
200         return userLocalService;
201     }
202 
203     public void setUserLocalService(UserLocalService userLocalService) {
204         this.userLocalService = userLocalService;
205     }
206 
207     public UserService getUserService() {
208         return userService;
209     }
210 
211     public void setUserService(UserService userService) {
212         this.userService = userService;
213     }
214 
215     public UserPersistence getUserPersistence() {
216         return userPersistence;
217     }
218 
219     public void setUserPersistence(UserPersistence userPersistence) {
220         this.userPersistence = userPersistence;
221     }
222 
223     public UserFinder getUserFinder() {
224         return userFinder;
225     }
226 
227     public void setUserFinder(UserFinder userFinder) {
228         this.userFinder = userFinder;
229     }
230 
231     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCLicenseLocalService.impl")
232     protected SCLicenseLocalService scLicenseLocalService;
233     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCLicenseService.impl")
234     protected SCLicenseService scLicenseService;
235     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCLicensePersistence.impl")
236     protected SCLicensePersistence scLicensePersistence;
237     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService.impl")
238     protected SCFrameworkVersionLocalService scFrameworkVersionLocalService;
239     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService.impl")
240     protected SCFrameworkVersionService scFrameworkVersionService;
241     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence.impl")
242     protected SCFrameworkVersionPersistence scFrameworkVersionPersistence;
243     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService.impl")
244     protected SCProductEntryLocalService scProductEntryLocalService;
245     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCProductEntryService.impl")
246     protected SCProductEntryService scProductEntryService;
247     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence.impl")
248     protected SCProductEntryPersistence scProductEntryPersistence;
249     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCProductScreenshotLocalService.impl")
250     protected SCProductScreenshotLocalService scProductScreenshotLocalService;
251     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductScreenshotPersistence.impl")
252     protected SCProductScreenshotPersistence scProductScreenshotPersistence;
253     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCProductVersionLocalService.impl")
254     protected SCProductVersionLocalService scProductVersionLocalService;
255     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.SCProductVersionService.impl")
256     protected SCProductVersionService scProductVersionService;
257     @BeanReference(name = "com.liferay.portlet.softwarecatalog.service.persistence.SCProductVersionPersistence.impl")
258     protected SCProductVersionPersistence scProductVersionPersistence;
259     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
260     protected CounterLocalService counterLocalService;
261     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
262     protected CounterService counterService;
263     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
264     protected UserLocalService userLocalService;
265     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
266     protected UserService userService;
267     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
268     protected UserPersistence userPersistence;
269     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
270     protected UserFinder userFinder;
271 }