1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    *
5    *
6    *
7    * The contents of this file are subject to the terms of the Liferay Enterprise
8    * Subscription License ("License"). You may not use this file except in
9    * compliance with the License. You can obtain a copy of the License by
10   * contacting Liferay, Inc. See the License for the specific language governing
11   * permissions and limitations under the License, including but not limited to
12   * distribution rights 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.journal.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.PortalException;
29  import com.liferay.portal.SystemException;
30  import com.liferay.portal.kernel.annotation.BeanReference;
31  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
32  import com.liferay.portal.service.GroupLocalService;
33  import com.liferay.portal.service.GroupService;
34  import com.liferay.portal.service.LayoutLocalService;
35  import com.liferay.portal.service.LayoutService;
36  import com.liferay.portal.service.PortletPreferencesLocalService;
37  import com.liferay.portal.service.PortletPreferencesService;
38  import com.liferay.portal.service.ResourceLocalService;
39  import com.liferay.portal.service.ResourceService;
40  import com.liferay.portal.service.UserLocalService;
41  import com.liferay.portal.service.UserService;
42  import com.liferay.portal.service.persistence.GroupFinder;
43  import com.liferay.portal.service.persistence.GroupPersistence;
44  import com.liferay.portal.service.persistence.LayoutFinder;
45  import com.liferay.portal.service.persistence.LayoutPersistence;
46  import com.liferay.portal.service.persistence.PortletPreferencesFinder;
47  import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
48  import com.liferay.portal.service.persistence.ResourceFinder;
49  import com.liferay.portal.service.persistence.ResourcePersistence;
50  import com.liferay.portal.service.persistence.UserFinder;
51  import com.liferay.portal.service.persistence.UserPersistence;
52  import com.liferay.portal.util.PortalUtil;
53  
54  import com.liferay.portlet.journal.model.JournalContentSearch;
55  import com.liferay.portlet.journal.service.JournalArticleImageLocalService;
56  import com.liferay.portlet.journal.service.JournalArticleLocalService;
57  import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
58  import com.liferay.portlet.journal.service.JournalArticleService;
59  import com.liferay.portlet.journal.service.JournalContentSearchLocalService;
60  import com.liferay.portlet.journal.service.JournalFeedLocalService;
61  import com.liferay.portlet.journal.service.JournalFeedService;
62  import com.liferay.portlet.journal.service.JournalStructureLocalService;
63  import com.liferay.portlet.journal.service.JournalStructureService;
64  import com.liferay.portlet.journal.service.JournalTemplateLocalService;
65  import com.liferay.portlet.journal.service.JournalTemplateService;
66  import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
67  import com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence;
68  import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
69  import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
70  import com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence;
71  import com.liferay.portlet.journal.service.persistence.JournalFeedFinder;
72  import com.liferay.portlet.journal.service.persistence.JournalFeedPersistence;
73  import com.liferay.portlet.journal.service.persistence.JournalStructureFinder;
74  import com.liferay.portlet.journal.service.persistence.JournalStructurePersistence;
75  import com.liferay.portlet.journal.service.persistence.JournalTemplateFinder;
76  import com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence;
77  
78  import java.util.List;
79  
80  /**
81   * <a href="JournalContentSearchLocalServiceBaseImpl.java.html"><b><i>View
82   * Source</i></b></a>
83   *
84   * @author Brian Wing Shun Chan
85   */
86  public abstract class JournalContentSearchLocalServiceBaseImpl
87      implements JournalContentSearchLocalService {
88      public JournalContentSearch addJournalContentSearch(
89          JournalContentSearch journalContentSearch) throws SystemException {
90          journalContentSearch.setNew(true);
91  
92          return journalContentSearchPersistence.update(journalContentSearch,
93              false);
94      }
95  
96      public JournalContentSearch createJournalContentSearch(long contentSearchId) {
97          return journalContentSearchPersistence.create(contentSearchId);
98      }
99  
100     public void deleteJournalContentSearch(long contentSearchId)
101         throws PortalException, SystemException {
102         journalContentSearchPersistence.remove(contentSearchId);
103     }
104 
105     public void deleteJournalContentSearch(
106         JournalContentSearch journalContentSearch) throws SystemException {
107         journalContentSearchPersistence.remove(journalContentSearch);
108     }
109 
110     public List<Object> dynamicQuery(DynamicQuery dynamicQuery)
111         throws SystemException {
112         return journalContentSearchPersistence.findWithDynamicQuery(dynamicQuery);
113     }
114 
115     public List<Object> dynamicQuery(DynamicQuery dynamicQuery, int start,
116         int end) throws SystemException {
117         return journalContentSearchPersistence.findWithDynamicQuery(dynamicQuery,
118             start, end);
119     }
120 
121     public JournalContentSearch getJournalContentSearch(long contentSearchId)
122         throws PortalException, SystemException {
123         return journalContentSearchPersistence.findByPrimaryKey(contentSearchId);
124     }
125 
126     public List<JournalContentSearch> getJournalContentSearchs(int start,
127         int end) throws SystemException {
128         return journalContentSearchPersistence.findAll(start, end);
129     }
130 
131     public int getJournalContentSearchsCount() throws SystemException {
132         return journalContentSearchPersistence.countAll();
133     }
134 
135     public JournalContentSearch updateJournalContentSearch(
136         JournalContentSearch journalContentSearch) throws SystemException {
137         journalContentSearch.setNew(false);
138 
139         return journalContentSearchPersistence.update(journalContentSearch, true);
140     }
141 
142     public JournalContentSearch updateJournalContentSearch(
143         JournalContentSearch journalContentSearch, boolean merge)
144         throws SystemException {
145         journalContentSearch.setNew(false);
146 
147         return journalContentSearchPersistence.update(journalContentSearch,
148             merge);
149     }
150 
151     public JournalArticleLocalService getJournalArticleLocalService() {
152         return journalArticleLocalService;
153     }
154 
155     public void setJournalArticleLocalService(
156         JournalArticleLocalService journalArticleLocalService) {
157         this.journalArticleLocalService = journalArticleLocalService;
158     }
159 
160     public JournalArticleService getJournalArticleService() {
161         return journalArticleService;
162     }
163 
164     public void setJournalArticleService(
165         JournalArticleService journalArticleService) {
166         this.journalArticleService = journalArticleService;
167     }
168 
169     public JournalArticlePersistence getJournalArticlePersistence() {
170         return journalArticlePersistence;
171     }
172 
173     public void setJournalArticlePersistence(
174         JournalArticlePersistence journalArticlePersistence) {
175         this.journalArticlePersistence = journalArticlePersistence;
176     }
177 
178     public JournalArticleFinder getJournalArticleFinder() {
179         return journalArticleFinder;
180     }
181 
182     public void setJournalArticleFinder(
183         JournalArticleFinder journalArticleFinder) {
184         this.journalArticleFinder = journalArticleFinder;
185     }
186 
187     public JournalArticleImageLocalService getJournalArticleImageLocalService() {
188         return journalArticleImageLocalService;
189     }
190 
191     public void setJournalArticleImageLocalService(
192         JournalArticleImageLocalService journalArticleImageLocalService) {
193         this.journalArticleImageLocalService = journalArticleImageLocalService;
194     }
195 
196     public JournalArticleImagePersistence getJournalArticleImagePersistence() {
197         return journalArticleImagePersistence;
198     }
199 
200     public void setJournalArticleImagePersistence(
201         JournalArticleImagePersistence journalArticleImagePersistence) {
202         this.journalArticleImagePersistence = journalArticleImagePersistence;
203     }
204 
205     public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
206         return journalArticleResourceLocalService;
207     }
208 
209     public void setJournalArticleResourceLocalService(
210         JournalArticleResourceLocalService journalArticleResourceLocalService) {
211         this.journalArticleResourceLocalService = journalArticleResourceLocalService;
212     }
213 
214     public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
215         return journalArticleResourcePersistence;
216     }
217 
218     public void setJournalArticleResourcePersistence(
219         JournalArticleResourcePersistence journalArticleResourcePersistence) {
220         this.journalArticleResourcePersistence = journalArticleResourcePersistence;
221     }
222 
223     public JournalContentSearchLocalService getJournalContentSearchLocalService() {
224         return journalContentSearchLocalService;
225     }
226 
227     public void setJournalContentSearchLocalService(
228         JournalContentSearchLocalService journalContentSearchLocalService) {
229         this.journalContentSearchLocalService = journalContentSearchLocalService;
230     }
231 
232     public JournalContentSearchPersistence getJournalContentSearchPersistence() {
233         return journalContentSearchPersistence;
234     }
235 
236     public void setJournalContentSearchPersistence(
237         JournalContentSearchPersistence journalContentSearchPersistence) {
238         this.journalContentSearchPersistence = journalContentSearchPersistence;
239     }
240 
241     public JournalFeedLocalService getJournalFeedLocalService() {
242         return journalFeedLocalService;
243     }
244 
245     public void setJournalFeedLocalService(
246         JournalFeedLocalService journalFeedLocalService) {
247         this.journalFeedLocalService = journalFeedLocalService;
248     }
249 
250     public JournalFeedService getJournalFeedService() {
251         return journalFeedService;
252     }
253 
254     public void setJournalFeedService(JournalFeedService journalFeedService) {
255         this.journalFeedService = journalFeedService;
256     }
257 
258     public JournalFeedPersistence getJournalFeedPersistence() {
259         return journalFeedPersistence;
260     }
261 
262     public void setJournalFeedPersistence(
263         JournalFeedPersistence journalFeedPersistence) {
264         this.journalFeedPersistence = journalFeedPersistence;
265     }
266 
267     public JournalFeedFinder getJournalFeedFinder() {
268         return journalFeedFinder;
269     }
270 
271     public void setJournalFeedFinder(JournalFeedFinder journalFeedFinder) {
272         this.journalFeedFinder = journalFeedFinder;
273     }
274 
275     public JournalStructureLocalService getJournalStructureLocalService() {
276         return journalStructureLocalService;
277     }
278 
279     public void setJournalStructureLocalService(
280         JournalStructureLocalService journalStructureLocalService) {
281         this.journalStructureLocalService = journalStructureLocalService;
282     }
283 
284     public JournalStructureService getJournalStructureService() {
285         return journalStructureService;
286     }
287 
288     public void setJournalStructureService(
289         JournalStructureService journalStructureService) {
290         this.journalStructureService = journalStructureService;
291     }
292 
293     public JournalStructurePersistence getJournalStructurePersistence() {
294         return journalStructurePersistence;
295     }
296 
297     public void setJournalStructurePersistence(
298         JournalStructurePersistence journalStructurePersistence) {
299         this.journalStructurePersistence = journalStructurePersistence;
300     }
301 
302     public JournalStructureFinder getJournalStructureFinder() {
303         return journalStructureFinder;
304     }
305 
306     public void setJournalStructureFinder(
307         JournalStructureFinder journalStructureFinder) {
308         this.journalStructureFinder = journalStructureFinder;
309     }
310 
311     public JournalTemplateLocalService getJournalTemplateLocalService() {
312         return journalTemplateLocalService;
313     }
314 
315     public void setJournalTemplateLocalService(
316         JournalTemplateLocalService journalTemplateLocalService) {
317         this.journalTemplateLocalService = journalTemplateLocalService;
318     }
319 
320     public JournalTemplateService getJournalTemplateService() {
321         return journalTemplateService;
322     }
323 
324     public void setJournalTemplateService(
325         JournalTemplateService journalTemplateService) {
326         this.journalTemplateService = journalTemplateService;
327     }
328 
329     public JournalTemplatePersistence getJournalTemplatePersistence() {
330         return journalTemplatePersistence;
331     }
332 
333     public void setJournalTemplatePersistence(
334         JournalTemplatePersistence journalTemplatePersistence) {
335         this.journalTemplatePersistence = journalTemplatePersistence;
336     }
337 
338     public JournalTemplateFinder getJournalTemplateFinder() {
339         return journalTemplateFinder;
340     }
341 
342     public void setJournalTemplateFinder(
343         JournalTemplateFinder journalTemplateFinder) {
344         this.journalTemplateFinder = journalTemplateFinder;
345     }
346 
347     public CounterLocalService getCounterLocalService() {
348         return counterLocalService;
349     }
350 
351     public void setCounterLocalService(CounterLocalService counterLocalService) {
352         this.counterLocalService = counterLocalService;
353     }
354 
355     public CounterService getCounterService() {
356         return counterService;
357     }
358 
359     public void setCounterService(CounterService counterService) {
360         this.counterService = counterService;
361     }
362 
363     public GroupLocalService getGroupLocalService() {
364         return groupLocalService;
365     }
366 
367     public void setGroupLocalService(GroupLocalService groupLocalService) {
368         this.groupLocalService = groupLocalService;
369     }
370 
371     public GroupService getGroupService() {
372         return groupService;
373     }
374 
375     public void setGroupService(GroupService groupService) {
376         this.groupService = groupService;
377     }
378 
379     public GroupPersistence getGroupPersistence() {
380         return groupPersistence;
381     }
382 
383     public void setGroupPersistence(GroupPersistence groupPersistence) {
384         this.groupPersistence = groupPersistence;
385     }
386 
387     public GroupFinder getGroupFinder() {
388         return groupFinder;
389     }
390 
391     public void setGroupFinder(GroupFinder groupFinder) {
392         this.groupFinder = groupFinder;
393     }
394 
395     public LayoutLocalService getLayoutLocalService() {
396         return layoutLocalService;
397     }
398 
399     public void setLayoutLocalService(LayoutLocalService layoutLocalService) {
400         this.layoutLocalService = layoutLocalService;
401     }
402 
403     public LayoutService getLayoutService() {
404         return layoutService;
405     }
406 
407     public void setLayoutService(LayoutService layoutService) {
408         this.layoutService = layoutService;
409     }
410 
411     public LayoutPersistence getLayoutPersistence() {
412         return layoutPersistence;
413     }
414 
415     public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
416         this.layoutPersistence = layoutPersistence;
417     }
418 
419     public LayoutFinder getLayoutFinder() {
420         return layoutFinder;
421     }
422 
423     public void setLayoutFinder(LayoutFinder layoutFinder) {
424         this.layoutFinder = layoutFinder;
425     }
426 
427     public PortletPreferencesLocalService getPortletPreferencesLocalService() {
428         return portletPreferencesLocalService;
429     }
430 
431     public void setPortletPreferencesLocalService(
432         PortletPreferencesLocalService portletPreferencesLocalService) {
433         this.portletPreferencesLocalService = portletPreferencesLocalService;
434     }
435 
436     public PortletPreferencesService getPortletPreferencesService() {
437         return portletPreferencesService;
438     }
439 
440     public void setPortletPreferencesService(
441         PortletPreferencesService portletPreferencesService) {
442         this.portletPreferencesService = portletPreferencesService;
443     }
444 
445     public PortletPreferencesPersistence getPortletPreferencesPersistence() {
446         return portletPreferencesPersistence;
447     }
448 
449     public void setPortletPreferencesPersistence(
450         PortletPreferencesPersistence portletPreferencesPersistence) {
451         this.portletPreferencesPersistence = portletPreferencesPersistence;
452     }
453 
454     public PortletPreferencesFinder getPortletPreferencesFinder() {
455         return portletPreferencesFinder;
456     }
457 
458     public void setPortletPreferencesFinder(
459         PortletPreferencesFinder portletPreferencesFinder) {
460         this.portletPreferencesFinder = portletPreferencesFinder;
461     }
462 
463     public ResourceLocalService getResourceLocalService() {
464         return resourceLocalService;
465     }
466 
467     public void setResourceLocalService(
468         ResourceLocalService resourceLocalService) {
469         this.resourceLocalService = resourceLocalService;
470     }
471 
472     public ResourceService getResourceService() {
473         return resourceService;
474     }
475 
476     public void setResourceService(ResourceService resourceService) {
477         this.resourceService = resourceService;
478     }
479 
480     public ResourcePersistence getResourcePersistence() {
481         return resourcePersistence;
482     }
483 
484     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
485         this.resourcePersistence = resourcePersistence;
486     }
487 
488     public ResourceFinder getResourceFinder() {
489         return resourceFinder;
490     }
491 
492     public void setResourceFinder(ResourceFinder resourceFinder) {
493         this.resourceFinder = resourceFinder;
494     }
495 
496     public UserLocalService getUserLocalService() {
497         return userLocalService;
498     }
499 
500     public void setUserLocalService(UserLocalService userLocalService) {
501         this.userLocalService = userLocalService;
502     }
503 
504     public UserService getUserService() {
505         return userService;
506     }
507 
508     public void setUserService(UserService userService) {
509         this.userService = userService;
510     }
511 
512     public UserPersistence getUserPersistence() {
513         return userPersistence;
514     }
515 
516     public void setUserPersistence(UserPersistence userPersistence) {
517         this.userPersistence = userPersistence;
518     }
519 
520     public UserFinder getUserFinder() {
521         return userFinder;
522     }
523 
524     public void setUserFinder(UserFinder userFinder) {
525         this.userFinder = userFinder;
526     }
527 
528     protected void runSQL(String sql) throws SystemException {
529         try {
530             PortalUtil.runSQL(sql);
531         }
532         catch (Exception e) {
533             throw new SystemException(e);
534         }
535     }
536 
537     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleLocalService.impl")
538     protected JournalArticleLocalService journalArticleLocalService;
539     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleService.impl")
540     protected JournalArticleService journalArticleService;
541     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticlePersistence.impl")
542     protected JournalArticlePersistence journalArticlePersistence;
543     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleFinder.impl")
544     protected JournalArticleFinder journalArticleFinder;
545     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleImageLocalService.impl")
546     protected JournalArticleImageLocalService journalArticleImageLocalService;
547     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleImagePersistence.impl")
548     protected JournalArticleImagePersistence journalArticleImagePersistence;
549     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleResourceLocalService.impl")
550     protected JournalArticleResourceLocalService journalArticleResourceLocalService;
551     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence.impl")
552     protected JournalArticleResourcePersistence journalArticleResourcePersistence;
553     @BeanReference(name = "com.liferay.portlet.journal.service.JournalContentSearchLocalService.impl")
554     protected JournalContentSearchLocalService journalContentSearchLocalService;
555     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalContentSearchPersistence.impl")
556     protected JournalContentSearchPersistence journalContentSearchPersistence;
557     @BeanReference(name = "com.liferay.portlet.journal.service.JournalFeedLocalService.impl")
558     protected JournalFeedLocalService journalFeedLocalService;
559     @BeanReference(name = "com.liferay.portlet.journal.service.JournalFeedService.impl")
560     protected JournalFeedService journalFeedService;
561     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalFeedPersistence.impl")
562     protected JournalFeedPersistence journalFeedPersistence;
563     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalFeedFinder.impl")
564     protected JournalFeedFinder journalFeedFinder;
565     @BeanReference(name = "com.liferay.portlet.journal.service.JournalStructureLocalService.impl")
566     protected JournalStructureLocalService journalStructureLocalService;
567     @BeanReference(name = "com.liferay.portlet.journal.service.JournalStructureService.impl")
568     protected JournalStructureService journalStructureService;
569     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalStructurePersistence.impl")
570     protected JournalStructurePersistence journalStructurePersistence;
571     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalStructureFinder.impl")
572     protected JournalStructureFinder journalStructureFinder;
573     @BeanReference(name = "com.liferay.portlet.journal.service.JournalTemplateLocalService.impl")
574     protected JournalTemplateLocalService journalTemplateLocalService;
575     @BeanReference(name = "com.liferay.portlet.journal.service.JournalTemplateService.impl")
576     protected JournalTemplateService journalTemplateService;
577     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalTemplatePersistence.impl")
578     protected JournalTemplatePersistence journalTemplatePersistence;
579     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalTemplateFinder.impl")
580     protected JournalTemplateFinder journalTemplateFinder;
581     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
582     protected CounterLocalService counterLocalService;
583     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
584     protected CounterService counterService;
585     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
586     protected GroupLocalService groupLocalService;
587     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
588     protected GroupService groupService;
589     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
590     protected GroupPersistence groupPersistence;
591     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
592     protected GroupFinder groupFinder;
593     @BeanReference(name = "com.liferay.portal.service.LayoutLocalService.impl")
594     protected LayoutLocalService layoutLocalService;
595     @BeanReference(name = "com.liferay.portal.service.LayoutService.impl")
596     protected LayoutService layoutService;
597     @BeanReference(name = "com.liferay.portal.service.persistence.LayoutPersistence.impl")
598     protected LayoutPersistence layoutPersistence;
599     @BeanReference(name = "com.liferay.portal.service.persistence.LayoutFinder.impl")
600     protected LayoutFinder layoutFinder;
601     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesLocalService.impl")
602     protected PortletPreferencesLocalService portletPreferencesLocalService;
603     @BeanReference(name = "com.liferay.portal.service.PortletPreferencesService.impl")
604     protected PortletPreferencesService portletPreferencesService;
605     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesPersistence.impl")
606     protected PortletPreferencesPersistence portletPreferencesPersistence;
607     @BeanReference(name = "com.liferay.portal.service.persistence.PortletPreferencesFinder.impl")
608     protected PortletPreferencesFinder portletPreferencesFinder;
609     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
610     protected ResourceLocalService resourceLocalService;
611     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
612     protected ResourceService resourceService;
613     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
614     protected ResourcePersistence resourcePersistence;
615     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
616     protected ResourceFinder resourceFinder;
617     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
618     protected UserLocalService userLocalService;
619     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
620     protected UserService userService;
621     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
622     protected UserPersistence userPersistence;
623     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
624     protected UserFinder userFinder;
625 }