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