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