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