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