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