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.tags.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.service.UserLocalService;
29  import com.liferay.portal.service.UserService;
30  import com.liferay.portal.service.base.PrincipalBean;
31  import com.liferay.portal.service.persistence.UserFinder;
32  import com.liferay.portal.service.persistence.UserPersistence;
33  
34  import com.liferay.portlet.tags.service.TagsAssetLocalService;
35  import com.liferay.portlet.tags.service.TagsAssetService;
36  import com.liferay.portlet.tags.service.TagsEntryLocalService;
37  import com.liferay.portlet.tags.service.TagsEntryService;
38  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
39  import com.liferay.portlet.tags.service.TagsPropertyService;
40  import com.liferay.portlet.tags.service.TagsSourceLocalService;
41  import com.liferay.portlet.tags.service.TagsSourceService;
42  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
43  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
44  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
45  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
46  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
47  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
48  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
49  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
50  
51  /**
52   * <a href="TagsPropertyServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
53   *
54   * @author Brian Wing Shun Chan
55   *
56   */
57  public abstract class TagsPropertyServiceBaseImpl extends PrincipalBean
58      implements TagsPropertyService {
59      public TagsAssetLocalService getTagsAssetLocalService() {
60          return tagsAssetLocalService;
61      }
62  
63      public void setTagsAssetLocalService(
64          TagsAssetLocalService tagsAssetLocalService) {
65          this.tagsAssetLocalService = tagsAssetLocalService;
66      }
67  
68      public TagsAssetService getTagsAssetService() {
69          return tagsAssetService;
70      }
71  
72      public void setTagsAssetService(TagsAssetService tagsAssetService) {
73          this.tagsAssetService = tagsAssetService;
74      }
75  
76      public TagsAssetPersistence getTagsAssetPersistence() {
77          return tagsAssetPersistence;
78      }
79  
80      public void setTagsAssetPersistence(
81          TagsAssetPersistence tagsAssetPersistence) {
82          this.tagsAssetPersistence = tagsAssetPersistence;
83      }
84  
85      public TagsAssetFinder getTagsAssetFinder() {
86          return tagsAssetFinder;
87      }
88  
89      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
90          this.tagsAssetFinder = tagsAssetFinder;
91      }
92  
93      public TagsEntryLocalService getTagsEntryLocalService() {
94          return tagsEntryLocalService;
95      }
96  
97      public void setTagsEntryLocalService(
98          TagsEntryLocalService tagsEntryLocalService) {
99          this.tagsEntryLocalService = tagsEntryLocalService;
100     }
101 
102     public TagsEntryService getTagsEntryService() {
103         return tagsEntryService;
104     }
105 
106     public void setTagsEntryService(TagsEntryService tagsEntryService) {
107         this.tagsEntryService = tagsEntryService;
108     }
109 
110     public TagsEntryPersistence getTagsEntryPersistence() {
111         return tagsEntryPersistence;
112     }
113 
114     public void setTagsEntryPersistence(
115         TagsEntryPersistence tagsEntryPersistence) {
116         this.tagsEntryPersistence = tagsEntryPersistence;
117     }
118 
119     public TagsEntryFinder getTagsEntryFinder() {
120         return tagsEntryFinder;
121     }
122 
123     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
124         this.tagsEntryFinder = tagsEntryFinder;
125     }
126 
127     public TagsPropertyLocalService getTagsPropertyLocalService() {
128         return tagsPropertyLocalService;
129     }
130 
131     public void setTagsPropertyLocalService(
132         TagsPropertyLocalService tagsPropertyLocalService) {
133         this.tagsPropertyLocalService = tagsPropertyLocalService;
134     }
135 
136     public TagsPropertyService getTagsPropertyService() {
137         return tagsPropertyService;
138     }
139 
140     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
141         this.tagsPropertyService = tagsPropertyService;
142     }
143 
144     public TagsPropertyPersistence getTagsPropertyPersistence() {
145         return tagsPropertyPersistence;
146     }
147 
148     public void setTagsPropertyPersistence(
149         TagsPropertyPersistence tagsPropertyPersistence) {
150         this.tagsPropertyPersistence = tagsPropertyPersistence;
151     }
152 
153     public TagsPropertyFinder getTagsPropertyFinder() {
154         return tagsPropertyFinder;
155     }
156 
157     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
158         this.tagsPropertyFinder = tagsPropertyFinder;
159     }
160 
161     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
162         return tagsPropertyKeyFinder;
163     }
164 
165     public void setTagsPropertyKeyFinder(
166         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
167         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
168     }
169 
170     public TagsSourceLocalService getTagsSourceLocalService() {
171         return tagsSourceLocalService;
172     }
173 
174     public void setTagsSourceLocalService(
175         TagsSourceLocalService tagsSourceLocalService) {
176         this.tagsSourceLocalService = tagsSourceLocalService;
177     }
178 
179     public TagsSourceService getTagsSourceService() {
180         return tagsSourceService;
181     }
182 
183     public void setTagsSourceService(TagsSourceService tagsSourceService) {
184         this.tagsSourceService = tagsSourceService;
185     }
186 
187     public TagsSourcePersistence getTagsSourcePersistence() {
188         return tagsSourcePersistence;
189     }
190 
191     public void setTagsSourcePersistence(
192         TagsSourcePersistence tagsSourcePersistence) {
193         this.tagsSourcePersistence = tagsSourcePersistence;
194     }
195 
196     public CounterLocalService getCounterLocalService() {
197         return counterLocalService;
198     }
199 
200     public void setCounterLocalService(CounterLocalService counterLocalService) {
201         this.counterLocalService = counterLocalService;
202     }
203 
204     public CounterService getCounterService() {
205         return counterService;
206     }
207 
208     public void setCounterService(CounterService counterService) {
209         this.counterService = counterService;
210     }
211 
212     public UserLocalService getUserLocalService() {
213         return userLocalService;
214     }
215 
216     public void setUserLocalService(UserLocalService userLocalService) {
217         this.userLocalService = userLocalService;
218     }
219 
220     public UserService getUserService() {
221         return userService;
222     }
223 
224     public void setUserService(UserService userService) {
225         this.userService = userService;
226     }
227 
228     public UserPersistence getUserPersistence() {
229         return userPersistence;
230     }
231 
232     public void setUserPersistence(UserPersistence userPersistence) {
233         this.userPersistence = userPersistence;
234     }
235 
236     public UserFinder getUserFinder() {
237         return userFinder;
238     }
239 
240     public void setUserFinder(UserFinder userFinder) {
241         this.userFinder = userFinder;
242     }
243 
244     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
245     protected TagsAssetLocalService tagsAssetLocalService;
246     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
247     protected TagsAssetService tagsAssetService;
248     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
249     protected TagsAssetPersistence tagsAssetPersistence;
250     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
251     protected TagsAssetFinder tagsAssetFinder;
252     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
253     protected TagsEntryLocalService tagsEntryLocalService;
254     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
255     protected TagsEntryService tagsEntryService;
256     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
257     protected TagsEntryPersistence tagsEntryPersistence;
258     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
259     protected TagsEntryFinder tagsEntryFinder;
260     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
261     protected TagsPropertyLocalService tagsPropertyLocalService;
262     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
263     protected TagsPropertyService tagsPropertyService;
264     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
265     protected TagsPropertyPersistence tagsPropertyPersistence;
266     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
267     protected TagsPropertyFinder tagsPropertyFinder;
268     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
269     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
270     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
271     protected TagsSourceLocalService tagsSourceLocalService;
272     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
273     protected TagsSourceService tagsSourceService;
274     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
275     protected TagsSourcePersistence tagsSourcePersistence;
276     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterLocalService.impl")
277     protected CounterLocalService counterLocalService;
278     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterService.impl")
279     protected CounterService counterService;
280     @javax.annotation.Resource(name = "com.liferay.portal.service.UserLocalService.impl")
281     protected UserLocalService userLocalService;
282     @javax.annotation.Resource(name = "com.liferay.portal.service.UserService.impl")
283     protected UserService userService;
284     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
285     protected UserPersistence userPersistence;
286     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserFinder.impl")
287     protected UserFinder userFinder;
288 }