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.bookmarks.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.ResourceLocalService;
30  import com.liferay.portal.service.ResourceService;
31  import com.liferay.portal.service.UserLocalService;
32  import com.liferay.portal.service.UserService;
33  import com.liferay.portal.service.base.PrincipalBean;
34  import com.liferay.portal.service.persistence.ResourceFinder;
35  import com.liferay.portal.service.persistence.ResourcePersistence;
36  import com.liferay.portal.service.persistence.UserFinder;
37  import com.liferay.portal.service.persistence.UserPersistence;
38  
39  import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
40  import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
41  import com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService;
42  import com.liferay.portlet.bookmarks.service.BookmarksFolderService;
43  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
44  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
45  import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
46  import com.liferay.portlet.tags.service.TagsAssetLocalService;
47  import com.liferay.portlet.tags.service.TagsAssetService;
48  import com.liferay.portlet.tags.service.TagsEntryLocalService;
49  import com.liferay.portlet.tags.service.TagsEntryService;
50  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
51  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
52  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
53  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
54  
55  /**
56   * <a href="BookmarksEntryServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
57   *
58   * @author Brian Wing Shun Chan
59   *
60   */
61  public abstract class BookmarksEntryServiceBaseImpl extends PrincipalBean
62      implements BookmarksEntryService {
63      public BookmarksEntryLocalService getBookmarksEntryLocalService() {
64          return bookmarksEntryLocalService;
65      }
66  
67      public void setBookmarksEntryLocalService(
68          BookmarksEntryLocalService bookmarksEntryLocalService) {
69          this.bookmarksEntryLocalService = bookmarksEntryLocalService;
70      }
71  
72      public BookmarksEntryService getBookmarksEntryService() {
73          return bookmarksEntryService;
74      }
75  
76      public void setBookmarksEntryService(
77          BookmarksEntryService bookmarksEntryService) {
78          this.bookmarksEntryService = bookmarksEntryService;
79      }
80  
81      public BookmarksEntryPersistence getBookmarksEntryPersistence() {
82          return bookmarksEntryPersistence;
83      }
84  
85      public void setBookmarksEntryPersistence(
86          BookmarksEntryPersistence bookmarksEntryPersistence) {
87          this.bookmarksEntryPersistence = bookmarksEntryPersistence;
88      }
89  
90      public BookmarksEntryFinder getBookmarksEntryFinder() {
91          return bookmarksEntryFinder;
92      }
93  
94      public void setBookmarksEntryFinder(
95          BookmarksEntryFinder bookmarksEntryFinder) {
96          this.bookmarksEntryFinder = bookmarksEntryFinder;
97      }
98  
99      public BookmarksFolderLocalService getBookmarksFolderLocalService() {
100         return bookmarksFolderLocalService;
101     }
102 
103     public void setBookmarksFolderLocalService(
104         BookmarksFolderLocalService bookmarksFolderLocalService) {
105         this.bookmarksFolderLocalService = bookmarksFolderLocalService;
106     }
107 
108     public BookmarksFolderService getBookmarksFolderService() {
109         return bookmarksFolderService;
110     }
111 
112     public void setBookmarksFolderService(
113         BookmarksFolderService bookmarksFolderService) {
114         this.bookmarksFolderService = bookmarksFolderService;
115     }
116 
117     public BookmarksFolderPersistence getBookmarksFolderPersistence() {
118         return bookmarksFolderPersistence;
119     }
120 
121     public void setBookmarksFolderPersistence(
122         BookmarksFolderPersistence bookmarksFolderPersistence) {
123         this.bookmarksFolderPersistence = bookmarksFolderPersistence;
124     }
125 
126     public CounterLocalService getCounterLocalService() {
127         return counterLocalService;
128     }
129 
130     public void setCounterLocalService(CounterLocalService counterLocalService) {
131         this.counterLocalService = counterLocalService;
132     }
133 
134     public CounterService getCounterService() {
135         return counterService;
136     }
137 
138     public void setCounterService(CounterService counterService) {
139         this.counterService = counterService;
140     }
141 
142     public ResourceLocalService getResourceLocalService() {
143         return resourceLocalService;
144     }
145 
146     public void setResourceLocalService(
147         ResourceLocalService resourceLocalService) {
148         this.resourceLocalService = resourceLocalService;
149     }
150 
151     public ResourceService getResourceService() {
152         return resourceService;
153     }
154 
155     public void setResourceService(ResourceService resourceService) {
156         this.resourceService = resourceService;
157     }
158 
159     public ResourcePersistence getResourcePersistence() {
160         return resourcePersistence;
161     }
162 
163     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
164         this.resourcePersistence = resourcePersistence;
165     }
166 
167     public ResourceFinder getResourceFinder() {
168         return resourceFinder;
169     }
170 
171     public void setResourceFinder(ResourceFinder resourceFinder) {
172         this.resourceFinder = resourceFinder;
173     }
174 
175     public UserLocalService getUserLocalService() {
176         return userLocalService;
177     }
178 
179     public void setUserLocalService(UserLocalService userLocalService) {
180         this.userLocalService = userLocalService;
181     }
182 
183     public UserService getUserService() {
184         return userService;
185     }
186 
187     public void setUserService(UserService userService) {
188         this.userService = userService;
189     }
190 
191     public UserPersistence getUserPersistence() {
192         return userPersistence;
193     }
194 
195     public void setUserPersistence(UserPersistence userPersistence) {
196         this.userPersistence = userPersistence;
197     }
198 
199     public UserFinder getUserFinder() {
200         return userFinder;
201     }
202 
203     public void setUserFinder(UserFinder userFinder) {
204         this.userFinder = userFinder;
205     }
206 
207     public TagsAssetLocalService getTagsAssetLocalService() {
208         return tagsAssetLocalService;
209     }
210 
211     public void setTagsAssetLocalService(
212         TagsAssetLocalService tagsAssetLocalService) {
213         this.tagsAssetLocalService = tagsAssetLocalService;
214     }
215 
216     public TagsAssetService getTagsAssetService() {
217         return tagsAssetService;
218     }
219 
220     public void setTagsAssetService(TagsAssetService tagsAssetService) {
221         this.tagsAssetService = tagsAssetService;
222     }
223 
224     public TagsAssetPersistence getTagsAssetPersistence() {
225         return tagsAssetPersistence;
226     }
227 
228     public void setTagsAssetPersistence(
229         TagsAssetPersistence tagsAssetPersistence) {
230         this.tagsAssetPersistence = tagsAssetPersistence;
231     }
232 
233     public TagsAssetFinder getTagsAssetFinder() {
234         return tagsAssetFinder;
235     }
236 
237     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
238         this.tagsAssetFinder = tagsAssetFinder;
239     }
240 
241     public TagsEntryLocalService getTagsEntryLocalService() {
242         return tagsEntryLocalService;
243     }
244 
245     public void setTagsEntryLocalService(
246         TagsEntryLocalService tagsEntryLocalService) {
247         this.tagsEntryLocalService = tagsEntryLocalService;
248     }
249 
250     public TagsEntryService getTagsEntryService() {
251         return tagsEntryService;
252     }
253 
254     public void setTagsEntryService(TagsEntryService tagsEntryService) {
255         this.tagsEntryService = tagsEntryService;
256     }
257 
258     public TagsEntryPersistence getTagsEntryPersistence() {
259         return tagsEntryPersistence;
260     }
261 
262     public void setTagsEntryPersistence(
263         TagsEntryPersistence tagsEntryPersistence) {
264         this.tagsEntryPersistence = tagsEntryPersistence;
265     }
266 
267     public TagsEntryFinder getTagsEntryFinder() {
268         return tagsEntryFinder;
269     }
270 
271     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
272         this.tagsEntryFinder = tagsEntryFinder;
273     }
274 
275     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.impl")
276     protected BookmarksEntryLocalService bookmarksEntryLocalService;
277     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryService.impl")
278     protected BookmarksEntryService bookmarksEntryService;
279     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence.impl")
280     protected BookmarksEntryPersistence bookmarksEntryPersistence;
281     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder.impl")
282     protected BookmarksEntryFinder bookmarksEntryFinder;
283     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.impl")
284     protected BookmarksFolderLocalService bookmarksFolderLocalService;
285     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksFolderService.impl")
286     protected BookmarksFolderService bookmarksFolderService;
287     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence.impl")
288     protected BookmarksFolderPersistence bookmarksFolderPersistence;
289     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
290     protected CounterLocalService counterLocalService;
291     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
292     protected CounterService counterService;
293     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
294     protected ResourceLocalService resourceLocalService;
295     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
296     protected ResourceService resourceService;
297     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
298     protected ResourcePersistence resourcePersistence;
299     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
300     protected ResourceFinder resourceFinder;
301     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
302     protected UserLocalService userLocalService;
303     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
304     protected UserService userService;
305     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
306     protected UserPersistence userPersistence;
307     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
308     protected UserFinder userFinder;
309     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
310     protected TagsAssetLocalService tagsAssetLocalService;
311     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
312     protected TagsAssetService tagsAssetService;
313     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
314     protected TagsAssetPersistence tagsAssetPersistence;
315     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
316     protected TagsAssetFinder tagsAssetFinder;
317     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
318     protected TagsEntryLocalService tagsEntryLocalService;
319     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
320     protected TagsEntryService tagsEntryService;
321     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
322     protected TagsEntryPersistence tagsEntryPersistence;
323     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
324     protected TagsEntryFinder tagsEntryFinder;
325 }