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