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.imagegallery.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.service.ImageLocalService;
29  import com.liferay.portal.service.LayoutLocalService;
30  import com.liferay.portal.service.LayoutService;
31  import com.liferay.portal.service.ResourceLocalService;
32  import com.liferay.portal.service.ResourceService;
33  import com.liferay.portal.service.UserLocalService;
34  import com.liferay.portal.service.UserService;
35  import com.liferay.portal.service.base.PrincipalBean;
36  import com.liferay.portal.service.persistence.ImagePersistence;
37  import com.liferay.portal.service.persistence.LayoutFinder;
38  import com.liferay.portal.service.persistence.LayoutPersistence;
39  import com.liferay.portal.service.persistence.ResourceFinder;
40  import com.liferay.portal.service.persistence.ResourcePersistence;
41  import com.liferay.portal.service.persistence.UserFinder;
42  import com.liferay.portal.service.persistence.UserPersistence;
43  
44  import com.liferay.portlet.imagegallery.service.IGFolderLocalService;
45  import com.liferay.portlet.imagegallery.service.IGFolderService;
46  import com.liferay.portlet.imagegallery.service.IGImageLocalService;
47  import com.liferay.portlet.imagegallery.service.IGImageService;
48  import com.liferay.portlet.imagegallery.service.persistence.IGFolderPersistence;
49  import com.liferay.portlet.imagegallery.service.persistence.IGImageFinder;
50  import com.liferay.portlet.imagegallery.service.persistence.IGImagePersistence;
51  import com.liferay.portlet.tags.service.TagsEntryLocalService;
52  import com.liferay.portlet.tags.service.TagsEntryService;
53  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
54  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
55  
56  /**
57   * <a href="IGFolderServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
58   *
59   * @author Brian Wing Shun Chan
60   *
61   */
62  public abstract class IGFolderServiceBaseImpl extends PrincipalBean
63      implements IGFolderService {
64      public IGFolderLocalService getIGFolderLocalService() {
65          return igFolderLocalService;
66      }
67  
68      public void setIGFolderLocalService(
69          IGFolderLocalService igFolderLocalService) {
70          this.igFolderLocalService = igFolderLocalService;
71      }
72  
73      public IGFolderService getIGFolderService() {
74          return igFolderService;
75      }
76  
77      public void setIGFolderService(IGFolderService igFolderService) {
78          this.igFolderService = igFolderService;
79      }
80  
81      public IGFolderPersistence getIGFolderPersistence() {
82          return igFolderPersistence;
83      }
84  
85      public void setIGFolderPersistence(IGFolderPersistence igFolderPersistence) {
86          this.igFolderPersistence = igFolderPersistence;
87      }
88  
89      public IGImageLocalService getIGImageLocalService() {
90          return igImageLocalService;
91      }
92  
93      public void setIGImageLocalService(IGImageLocalService igImageLocalService) {
94          this.igImageLocalService = igImageLocalService;
95      }
96  
97      public IGImageService getIGImageService() {
98          return igImageService;
99      }
100 
101     public void setIGImageService(IGImageService igImageService) {
102         this.igImageService = igImageService;
103     }
104 
105     public IGImagePersistence getIGImagePersistence() {
106         return igImagePersistence;
107     }
108 
109     public void setIGImagePersistence(IGImagePersistence igImagePersistence) {
110         this.igImagePersistence = igImagePersistence;
111     }
112 
113     public IGImageFinder getIGImageFinder() {
114         return igImageFinder;
115     }
116 
117     public void setIGImageFinder(IGImageFinder igImageFinder) {
118         this.igImageFinder = igImageFinder;
119     }
120 
121     public CounterLocalService getCounterLocalService() {
122         return counterLocalService;
123     }
124 
125     public void setCounterLocalService(CounterLocalService counterLocalService) {
126         this.counterLocalService = counterLocalService;
127     }
128 
129     public CounterService getCounterService() {
130         return counterService;
131     }
132 
133     public void setCounterService(CounterService counterService) {
134         this.counterService = counterService;
135     }
136 
137     public ImageLocalService getImageLocalService() {
138         return imageLocalService;
139     }
140 
141     public void setImageLocalService(ImageLocalService imageLocalService) {
142         this.imageLocalService = imageLocalService;
143     }
144 
145     public ImagePersistence getImagePersistence() {
146         return imagePersistence;
147     }
148 
149     public void setImagePersistence(ImagePersistence imagePersistence) {
150         this.imagePersistence = imagePersistence;
151     }
152 
153     public LayoutLocalService getLayoutLocalService() {
154         return layoutLocalService;
155     }
156 
157     public void setLayoutLocalService(LayoutLocalService layoutLocalService) {
158         this.layoutLocalService = layoutLocalService;
159     }
160 
161     public LayoutService getLayoutService() {
162         return layoutService;
163     }
164 
165     public void setLayoutService(LayoutService layoutService) {
166         this.layoutService = layoutService;
167     }
168 
169     public LayoutPersistence getLayoutPersistence() {
170         return layoutPersistence;
171     }
172 
173     public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
174         this.layoutPersistence = layoutPersistence;
175     }
176 
177     public LayoutFinder getLayoutFinder() {
178         return layoutFinder;
179     }
180 
181     public void setLayoutFinder(LayoutFinder layoutFinder) {
182         this.layoutFinder = layoutFinder;
183     }
184 
185     public ResourceLocalService getResourceLocalService() {
186         return resourceLocalService;
187     }
188 
189     public void setResourceLocalService(
190         ResourceLocalService resourceLocalService) {
191         this.resourceLocalService = resourceLocalService;
192     }
193 
194     public ResourceService getResourceService() {
195         return resourceService;
196     }
197 
198     public void setResourceService(ResourceService resourceService) {
199         this.resourceService = resourceService;
200     }
201 
202     public ResourcePersistence getResourcePersistence() {
203         return resourcePersistence;
204     }
205 
206     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
207         this.resourcePersistence = resourcePersistence;
208     }
209 
210     public ResourceFinder getResourceFinder() {
211         return resourceFinder;
212     }
213 
214     public void setResourceFinder(ResourceFinder resourceFinder) {
215         this.resourceFinder = resourceFinder;
216     }
217 
218     public UserLocalService getUserLocalService() {
219         return userLocalService;
220     }
221 
222     public void setUserLocalService(UserLocalService userLocalService) {
223         this.userLocalService = userLocalService;
224     }
225 
226     public UserService getUserService() {
227         return userService;
228     }
229 
230     public void setUserService(UserService userService) {
231         this.userService = userService;
232     }
233 
234     public UserPersistence getUserPersistence() {
235         return userPersistence;
236     }
237 
238     public void setUserPersistence(UserPersistence userPersistence) {
239         this.userPersistence = userPersistence;
240     }
241 
242     public UserFinder getUserFinder() {
243         return userFinder;
244     }
245 
246     public void setUserFinder(UserFinder userFinder) {
247         this.userFinder = userFinder;
248     }
249 
250     public TagsEntryLocalService getTagsEntryLocalService() {
251         return tagsEntryLocalService;
252     }
253 
254     public void setTagsEntryLocalService(
255         TagsEntryLocalService tagsEntryLocalService) {
256         this.tagsEntryLocalService = tagsEntryLocalService;
257     }
258 
259     public TagsEntryService getTagsEntryService() {
260         return tagsEntryService;
261     }
262 
263     public void setTagsEntryService(TagsEntryService tagsEntryService) {
264         this.tagsEntryService = tagsEntryService;
265     }
266 
267     public TagsEntryPersistence getTagsEntryPersistence() {
268         return tagsEntryPersistence;
269     }
270 
271     public void setTagsEntryPersistence(
272         TagsEntryPersistence tagsEntryPersistence) {
273         this.tagsEntryPersistence = tagsEntryPersistence;
274     }
275 
276     public TagsEntryFinder getTagsEntryFinder() {
277         return tagsEntryFinder;
278     }
279 
280     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
281         this.tagsEntryFinder = tagsEntryFinder;
282     }
283 
284     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.IGFolderLocalService.impl")
285     protected IGFolderLocalService igFolderLocalService;
286     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.IGFolderService.impl")
287     protected IGFolderService igFolderService;
288     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.persistence.IGFolderPersistence.impl")
289     protected IGFolderPersistence igFolderPersistence;
290     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.IGImageLocalService.impl")
291     protected IGImageLocalService igImageLocalService;
292     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.IGImageService.impl")
293     protected IGImageService igImageService;
294     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.persistence.IGImagePersistence.impl")
295     protected IGImagePersistence igImagePersistence;
296     @javax.annotation.Resource(name = "com.liferay.portlet.imagegallery.service.persistence.IGImageFinder.impl")
297     protected IGImageFinder igImageFinder;
298     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterLocalService.impl")
299     protected CounterLocalService counterLocalService;
300     @javax.annotation.Resource(name = "com.liferay.counter.service.CounterService.impl")
301     protected CounterService counterService;
302     @javax.annotation.Resource(name = "com.liferay.portal.service.ImageLocalService.impl")
303     protected ImageLocalService imageLocalService;
304     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ImagePersistence.impl")
305     protected ImagePersistence imagePersistence;
306     @javax.annotation.Resource(name = "com.liferay.portal.service.LayoutLocalService.impl")
307     protected LayoutLocalService layoutLocalService;
308     @javax.annotation.Resource(name = "com.liferay.portal.service.LayoutService.impl")
309     protected LayoutService layoutService;
310     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.LayoutPersistence.impl")
311     protected LayoutPersistence layoutPersistence;
312     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.LayoutFinder.impl")
313     protected LayoutFinder layoutFinder;
314     @javax.annotation.Resource(name = "com.liferay.portal.service.ResourceLocalService.impl")
315     protected ResourceLocalService resourceLocalService;
316     @javax.annotation.Resource(name = "com.liferay.portal.service.ResourceService.impl")
317     protected ResourceService resourceService;
318     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
319     protected ResourcePersistence resourcePersistence;
320     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
321     protected ResourceFinder resourceFinder;
322     @javax.annotation.Resource(name = "com.liferay.portal.service.UserLocalService.impl")
323     protected UserLocalService userLocalService;
324     @javax.annotation.Resource(name = "com.liferay.portal.service.UserService.impl")
325     protected UserService userService;
326     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
327     protected UserPersistence userPersistence;
328     @javax.annotation.Resource(name = "com.liferay.portal.service.persistence.UserFinder.impl")
329     protected UserFinder userFinder;
330     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
331     protected TagsEntryLocalService tagsEntryLocalService;
332     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
333     protected TagsEntryService tagsEntryService;
334     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
335     protected TagsEntryPersistence tagsEntryPersistence;
336     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
337     protected TagsEntryFinder tagsEntryFinder;
338 }