001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.bookmarks.service.base;
016    
017    import com.liferay.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.bean.IdentifiableBean;
019    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.GroupFinder;
024    import com.liferay.portal.service.persistence.GroupPersistence;
025    import com.liferay.portal.service.persistence.SubscriptionPersistence;
026    import com.liferay.portal.service.persistence.UserFinder;
027    import com.liferay.portal.service.persistence.UserPersistence;
028    
029    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
030    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
031    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
032    import com.liferay.portlet.bookmarks.model.BookmarksFolder;
033    import com.liferay.portlet.bookmarks.service.BookmarksFolderService;
034    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
035    import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
036    import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderFinder;
037    import com.liferay.portlet.bookmarks.service.persistence.BookmarksFolderPersistence;
038    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
039    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
040    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
041    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
042    
043    import javax.sql.DataSource;
044    
045    /**
046     * Provides the base implementation for the bookmarks folder remote service.
047     *
048     * <p>
049     * This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in {@link com.liferay.portlet.bookmarks.service.impl.BookmarksFolderServiceImpl}.
050     * </p>
051     *
052     * @author Brian Wing Shun Chan
053     * @see com.liferay.portlet.bookmarks.service.impl.BookmarksFolderServiceImpl
054     * @see com.liferay.portlet.bookmarks.service.BookmarksFolderServiceUtil
055     * @generated
056     */
057    public abstract class BookmarksFolderServiceBaseImpl extends BaseServiceImpl
058            implements BookmarksFolderService, IdentifiableBean {
059            /*
060             * NOTE FOR DEVELOPERS:
061             *
062             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.bookmarks.service.BookmarksFolderServiceUtil} to access the bookmarks folder remote service.
063             */
064    
065            /**
066             * Returns the bookmarks entry local service.
067             *
068             * @return the bookmarks entry local service
069             */
070            public com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService getBookmarksEntryLocalService() {
071                    return bookmarksEntryLocalService;
072            }
073    
074            /**
075             * Sets the bookmarks entry local service.
076             *
077             * @param bookmarksEntryLocalService the bookmarks entry local service
078             */
079            public void setBookmarksEntryLocalService(
080                    com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService) {
081                    this.bookmarksEntryLocalService = bookmarksEntryLocalService;
082            }
083    
084            /**
085             * Returns the bookmarks entry remote service.
086             *
087             * @return the bookmarks entry remote service
088             */
089            public com.liferay.portlet.bookmarks.service.BookmarksEntryService getBookmarksEntryService() {
090                    return bookmarksEntryService;
091            }
092    
093            /**
094             * Sets the bookmarks entry remote service.
095             *
096             * @param bookmarksEntryService the bookmarks entry remote service
097             */
098            public void setBookmarksEntryService(
099                    com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService) {
100                    this.bookmarksEntryService = bookmarksEntryService;
101            }
102    
103            /**
104             * Returns the bookmarks entry persistence.
105             *
106             * @return the bookmarks entry persistence
107             */
108            public BookmarksEntryPersistence getBookmarksEntryPersistence() {
109                    return bookmarksEntryPersistence;
110            }
111    
112            /**
113             * Sets the bookmarks entry persistence.
114             *
115             * @param bookmarksEntryPersistence the bookmarks entry persistence
116             */
117            public void setBookmarksEntryPersistence(
118                    BookmarksEntryPersistence bookmarksEntryPersistence) {
119                    this.bookmarksEntryPersistence = bookmarksEntryPersistence;
120            }
121    
122            /**
123             * Returns the bookmarks entry finder.
124             *
125             * @return the bookmarks entry finder
126             */
127            public BookmarksEntryFinder getBookmarksEntryFinder() {
128                    return bookmarksEntryFinder;
129            }
130    
131            /**
132             * Sets the bookmarks entry finder.
133             *
134             * @param bookmarksEntryFinder the bookmarks entry finder
135             */
136            public void setBookmarksEntryFinder(
137                    BookmarksEntryFinder bookmarksEntryFinder) {
138                    this.bookmarksEntryFinder = bookmarksEntryFinder;
139            }
140    
141            /**
142             * Returns the bookmarks folder local service.
143             *
144             * @return the bookmarks folder local service
145             */
146            public com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService getBookmarksFolderLocalService() {
147                    return bookmarksFolderLocalService;
148            }
149    
150            /**
151             * Sets the bookmarks folder local service.
152             *
153             * @param bookmarksFolderLocalService the bookmarks folder local service
154             */
155            public void setBookmarksFolderLocalService(
156                    com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService) {
157                    this.bookmarksFolderLocalService = bookmarksFolderLocalService;
158            }
159    
160            /**
161             * Returns the bookmarks folder remote service.
162             *
163             * @return the bookmarks folder remote service
164             */
165            public com.liferay.portlet.bookmarks.service.BookmarksFolderService getBookmarksFolderService() {
166                    return bookmarksFolderService;
167            }
168    
169            /**
170             * Sets the bookmarks folder remote service.
171             *
172             * @param bookmarksFolderService the bookmarks folder remote service
173             */
174            public void setBookmarksFolderService(
175                    com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService) {
176                    this.bookmarksFolderService = bookmarksFolderService;
177            }
178    
179            /**
180             * Returns the bookmarks folder persistence.
181             *
182             * @return the bookmarks folder persistence
183             */
184            public BookmarksFolderPersistence getBookmarksFolderPersistence() {
185                    return bookmarksFolderPersistence;
186            }
187    
188            /**
189             * Sets the bookmarks folder persistence.
190             *
191             * @param bookmarksFolderPersistence the bookmarks folder persistence
192             */
193            public void setBookmarksFolderPersistence(
194                    BookmarksFolderPersistence bookmarksFolderPersistence) {
195                    this.bookmarksFolderPersistence = bookmarksFolderPersistence;
196            }
197    
198            /**
199             * Returns the bookmarks folder finder.
200             *
201             * @return the bookmarks folder finder
202             */
203            public BookmarksFolderFinder getBookmarksFolderFinder() {
204                    return bookmarksFolderFinder;
205            }
206    
207            /**
208             * Sets the bookmarks folder finder.
209             *
210             * @param bookmarksFolderFinder the bookmarks folder finder
211             */
212            public void setBookmarksFolderFinder(
213                    BookmarksFolderFinder bookmarksFolderFinder) {
214                    this.bookmarksFolderFinder = bookmarksFolderFinder;
215            }
216    
217            /**
218             * Returns the counter local service.
219             *
220             * @return the counter local service
221             */
222            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
223                    return counterLocalService;
224            }
225    
226            /**
227             * Sets the counter local service.
228             *
229             * @param counterLocalService the counter local service
230             */
231            public void setCounterLocalService(
232                    com.liferay.counter.service.CounterLocalService counterLocalService) {
233                    this.counterLocalService = counterLocalService;
234            }
235    
236            /**
237             * Returns the group local service.
238             *
239             * @return the group local service
240             */
241            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
242                    return groupLocalService;
243            }
244    
245            /**
246             * Sets the group local service.
247             *
248             * @param groupLocalService the group local service
249             */
250            public void setGroupLocalService(
251                    com.liferay.portal.service.GroupLocalService groupLocalService) {
252                    this.groupLocalService = groupLocalService;
253            }
254    
255            /**
256             * Returns the group remote service.
257             *
258             * @return the group remote service
259             */
260            public com.liferay.portal.service.GroupService getGroupService() {
261                    return groupService;
262            }
263    
264            /**
265             * Sets the group remote service.
266             *
267             * @param groupService the group remote service
268             */
269            public void setGroupService(
270                    com.liferay.portal.service.GroupService groupService) {
271                    this.groupService = groupService;
272            }
273    
274            /**
275             * Returns the group persistence.
276             *
277             * @return the group persistence
278             */
279            public GroupPersistence getGroupPersistence() {
280                    return groupPersistence;
281            }
282    
283            /**
284             * Sets the group persistence.
285             *
286             * @param groupPersistence the group persistence
287             */
288            public void setGroupPersistence(GroupPersistence groupPersistence) {
289                    this.groupPersistence = groupPersistence;
290            }
291    
292            /**
293             * Returns the group finder.
294             *
295             * @return the group finder
296             */
297            public GroupFinder getGroupFinder() {
298                    return groupFinder;
299            }
300    
301            /**
302             * Sets the group finder.
303             *
304             * @param groupFinder the group finder
305             */
306            public void setGroupFinder(GroupFinder groupFinder) {
307                    this.groupFinder = groupFinder;
308            }
309    
310            /**
311             * Returns the resource local service.
312             *
313             * @return the resource local service
314             */
315            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
316                    return resourceLocalService;
317            }
318    
319            /**
320             * Sets the resource local service.
321             *
322             * @param resourceLocalService the resource local service
323             */
324            public void setResourceLocalService(
325                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
326                    this.resourceLocalService = resourceLocalService;
327            }
328    
329            /**
330             * Returns the subscription local service.
331             *
332             * @return the subscription local service
333             */
334            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
335                    return subscriptionLocalService;
336            }
337    
338            /**
339             * Sets the subscription local service.
340             *
341             * @param subscriptionLocalService the subscription local service
342             */
343            public void setSubscriptionLocalService(
344                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
345                    this.subscriptionLocalService = subscriptionLocalService;
346            }
347    
348            /**
349             * Returns the subscription persistence.
350             *
351             * @return the subscription persistence
352             */
353            public SubscriptionPersistence getSubscriptionPersistence() {
354                    return subscriptionPersistence;
355            }
356    
357            /**
358             * Sets the subscription persistence.
359             *
360             * @param subscriptionPersistence the subscription persistence
361             */
362            public void setSubscriptionPersistence(
363                    SubscriptionPersistence subscriptionPersistence) {
364                    this.subscriptionPersistence = subscriptionPersistence;
365            }
366    
367            /**
368             * Returns the user local service.
369             *
370             * @return the user local service
371             */
372            public com.liferay.portal.service.UserLocalService getUserLocalService() {
373                    return userLocalService;
374            }
375    
376            /**
377             * Sets the user local service.
378             *
379             * @param userLocalService the user local service
380             */
381            public void setUserLocalService(
382                    com.liferay.portal.service.UserLocalService userLocalService) {
383                    this.userLocalService = userLocalService;
384            }
385    
386            /**
387             * Returns the user remote service.
388             *
389             * @return the user remote service
390             */
391            public com.liferay.portal.service.UserService getUserService() {
392                    return userService;
393            }
394    
395            /**
396             * Sets the user remote service.
397             *
398             * @param userService the user remote service
399             */
400            public void setUserService(
401                    com.liferay.portal.service.UserService userService) {
402                    this.userService = userService;
403            }
404    
405            /**
406             * Returns the user persistence.
407             *
408             * @return the user persistence
409             */
410            public UserPersistence getUserPersistence() {
411                    return userPersistence;
412            }
413    
414            /**
415             * Sets the user persistence.
416             *
417             * @param userPersistence the user persistence
418             */
419            public void setUserPersistence(UserPersistence userPersistence) {
420                    this.userPersistence = userPersistence;
421            }
422    
423            /**
424             * Returns the user finder.
425             *
426             * @return the user finder
427             */
428            public UserFinder getUserFinder() {
429                    return userFinder;
430            }
431    
432            /**
433             * Sets the user finder.
434             *
435             * @param userFinder the user finder
436             */
437            public void setUserFinder(UserFinder userFinder) {
438                    this.userFinder = userFinder;
439            }
440    
441            /**
442             * Returns the asset entry local service.
443             *
444             * @return the asset entry local service
445             */
446            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
447                    return assetEntryLocalService;
448            }
449    
450            /**
451             * Sets the asset entry local service.
452             *
453             * @param assetEntryLocalService the asset entry local service
454             */
455            public void setAssetEntryLocalService(
456                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
457                    this.assetEntryLocalService = assetEntryLocalService;
458            }
459    
460            /**
461             * Returns the asset entry remote service.
462             *
463             * @return the asset entry remote service
464             */
465            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
466                    return assetEntryService;
467            }
468    
469            /**
470             * Sets the asset entry remote service.
471             *
472             * @param assetEntryService the asset entry remote service
473             */
474            public void setAssetEntryService(
475                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
476                    this.assetEntryService = assetEntryService;
477            }
478    
479            /**
480             * Returns the asset entry persistence.
481             *
482             * @return the asset entry persistence
483             */
484            public AssetEntryPersistence getAssetEntryPersistence() {
485                    return assetEntryPersistence;
486            }
487    
488            /**
489             * Sets the asset entry persistence.
490             *
491             * @param assetEntryPersistence the asset entry persistence
492             */
493            public void setAssetEntryPersistence(
494                    AssetEntryPersistence assetEntryPersistence) {
495                    this.assetEntryPersistence = assetEntryPersistence;
496            }
497    
498            /**
499             * Returns the asset entry finder.
500             *
501             * @return the asset entry finder
502             */
503            public AssetEntryFinder getAssetEntryFinder() {
504                    return assetEntryFinder;
505            }
506    
507            /**
508             * Sets the asset entry finder.
509             *
510             * @param assetEntryFinder the asset entry finder
511             */
512            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
513                    this.assetEntryFinder = assetEntryFinder;
514            }
515    
516            /**
517             * Returns the asset link local service.
518             *
519             * @return the asset link local service
520             */
521            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
522                    return assetLinkLocalService;
523            }
524    
525            /**
526             * Sets the asset link local service.
527             *
528             * @param assetLinkLocalService the asset link local service
529             */
530            public void setAssetLinkLocalService(
531                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
532                    this.assetLinkLocalService = assetLinkLocalService;
533            }
534    
535            /**
536             * Returns the asset link persistence.
537             *
538             * @return the asset link persistence
539             */
540            public AssetLinkPersistence getAssetLinkPersistence() {
541                    return assetLinkPersistence;
542            }
543    
544            /**
545             * Sets the asset link persistence.
546             *
547             * @param assetLinkPersistence the asset link persistence
548             */
549            public void setAssetLinkPersistence(
550                    AssetLinkPersistence assetLinkPersistence) {
551                    this.assetLinkPersistence = assetLinkPersistence;
552            }
553    
554            /**
555             * Returns the expando row local service.
556             *
557             * @return the expando row local service
558             */
559            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
560                    return expandoRowLocalService;
561            }
562    
563            /**
564             * Sets the expando row local service.
565             *
566             * @param expandoRowLocalService the expando row local service
567             */
568            public void setExpandoRowLocalService(
569                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
570                    this.expandoRowLocalService = expandoRowLocalService;
571            }
572    
573            /**
574             * Returns the expando row persistence.
575             *
576             * @return the expando row persistence
577             */
578            public ExpandoRowPersistence getExpandoRowPersistence() {
579                    return expandoRowPersistence;
580            }
581    
582            /**
583             * Sets the expando row persistence.
584             *
585             * @param expandoRowPersistence the expando row persistence
586             */
587            public void setExpandoRowPersistence(
588                    ExpandoRowPersistence expandoRowPersistence) {
589                    this.expandoRowPersistence = expandoRowPersistence;
590            }
591    
592            /**
593             * Returns the social activity local service.
594             *
595             * @return the social activity local service
596             */
597            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
598                    return socialActivityLocalService;
599            }
600    
601            /**
602             * Sets the social activity local service.
603             *
604             * @param socialActivityLocalService the social activity local service
605             */
606            public void setSocialActivityLocalService(
607                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
608                    this.socialActivityLocalService = socialActivityLocalService;
609            }
610    
611            /**
612             * Returns the social activity persistence.
613             *
614             * @return the social activity persistence
615             */
616            public SocialActivityPersistence getSocialActivityPersistence() {
617                    return socialActivityPersistence;
618            }
619    
620            /**
621             * Sets the social activity persistence.
622             *
623             * @param socialActivityPersistence the social activity persistence
624             */
625            public void setSocialActivityPersistence(
626                    SocialActivityPersistence socialActivityPersistence) {
627                    this.socialActivityPersistence = socialActivityPersistence;
628            }
629    
630            /**
631             * Returns the social activity finder.
632             *
633             * @return the social activity finder
634             */
635            public SocialActivityFinder getSocialActivityFinder() {
636                    return socialActivityFinder;
637            }
638    
639            /**
640             * Sets the social activity finder.
641             *
642             * @param socialActivityFinder the social activity finder
643             */
644            public void setSocialActivityFinder(
645                    SocialActivityFinder socialActivityFinder) {
646                    this.socialActivityFinder = socialActivityFinder;
647            }
648    
649            /**
650             * Returns the trash entry local service.
651             *
652             * @return the trash entry local service
653             */
654            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
655                    return trashEntryLocalService;
656            }
657    
658            /**
659             * Sets the trash entry local service.
660             *
661             * @param trashEntryLocalService the trash entry local service
662             */
663            public void setTrashEntryLocalService(
664                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
665                    this.trashEntryLocalService = trashEntryLocalService;
666            }
667    
668            /**
669             * Returns the trash entry remote service.
670             *
671             * @return the trash entry remote service
672             */
673            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
674                    return trashEntryService;
675            }
676    
677            /**
678             * Sets the trash entry remote service.
679             *
680             * @param trashEntryService the trash entry remote service
681             */
682            public void setTrashEntryService(
683                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
684                    this.trashEntryService = trashEntryService;
685            }
686    
687            /**
688             * Returns the trash entry persistence.
689             *
690             * @return the trash entry persistence
691             */
692            public TrashEntryPersistence getTrashEntryPersistence() {
693                    return trashEntryPersistence;
694            }
695    
696            /**
697             * Sets the trash entry persistence.
698             *
699             * @param trashEntryPersistence the trash entry persistence
700             */
701            public void setTrashEntryPersistence(
702                    TrashEntryPersistence trashEntryPersistence) {
703                    this.trashEntryPersistence = trashEntryPersistence;
704            }
705    
706            public void afterPropertiesSet() {
707            }
708    
709            public void destroy() {
710            }
711    
712            /**
713             * Returns the Spring bean ID for this bean.
714             *
715             * @return the Spring bean ID for this bean
716             */
717            @Override
718            public String getBeanIdentifier() {
719                    return _beanIdentifier;
720            }
721    
722            /**
723             * Sets the Spring bean ID for this bean.
724             *
725             * @param beanIdentifier the Spring bean ID for this bean
726             */
727            @Override
728            public void setBeanIdentifier(String beanIdentifier) {
729                    _beanIdentifier = beanIdentifier;
730            }
731    
732            protected Class<?> getModelClass() {
733                    return BookmarksFolder.class;
734            }
735    
736            protected String getModelClassName() {
737                    return BookmarksFolder.class.getName();
738            }
739    
740            /**
741             * Performs an SQL query.
742             *
743             * @param sql the sql query
744             */
745            protected void runSQL(String sql) throws SystemException {
746                    try {
747                            DataSource dataSource = bookmarksFolderPersistence.getDataSource();
748    
749                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
750                                            sql, new int[0]);
751    
752                            sqlUpdate.update();
753                    }
754                    catch (Exception e) {
755                            throw new SystemException(e);
756                    }
757            }
758    
759            @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.class)
760            protected com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService bookmarksEntryLocalService;
761            @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksEntryService.class)
762            protected com.liferay.portlet.bookmarks.service.BookmarksEntryService bookmarksEntryService;
763            @BeanReference(type = BookmarksEntryPersistence.class)
764            protected BookmarksEntryPersistence bookmarksEntryPersistence;
765            @BeanReference(type = BookmarksEntryFinder.class)
766            protected BookmarksEntryFinder bookmarksEntryFinder;
767            @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService.class)
768            protected com.liferay.portlet.bookmarks.service.BookmarksFolderLocalService bookmarksFolderLocalService;
769            @BeanReference(type = com.liferay.portlet.bookmarks.service.BookmarksFolderService.class)
770            protected com.liferay.portlet.bookmarks.service.BookmarksFolderService bookmarksFolderService;
771            @BeanReference(type = BookmarksFolderPersistence.class)
772            protected BookmarksFolderPersistence bookmarksFolderPersistence;
773            @BeanReference(type = BookmarksFolderFinder.class)
774            protected BookmarksFolderFinder bookmarksFolderFinder;
775            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
776            protected com.liferay.counter.service.CounterLocalService counterLocalService;
777            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
778            protected com.liferay.portal.service.GroupLocalService groupLocalService;
779            @BeanReference(type = com.liferay.portal.service.GroupService.class)
780            protected com.liferay.portal.service.GroupService groupService;
781            @BeanReference(type = GroupPersistence.class)
782            protected GroupPersistence groupPersistence;
783            @BeanReference(type = GroupFinder.class)
784            protected GroupFinder groupFinder;
785            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
786            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
787            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
788            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
789            @BeanReference(type = SubscriptionPersistence.class)
790            protected SubscriptionPersistence subscriptionPersistence;
791            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
792            protected com.liferay.portal.service.UserLocalService userLocalService;
793            @BeanReference(type = com.liferay.portal.service.UserService.class)
794            protected com.liferay.portal.service.UserService userService;
795            @BeanReference(type = UserPersistence.class)
796            protected UserPersistence userPersistence;
797            @BeanReference(type = UserFinder.class)
798            protected UserFinder userFinder;
799            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
800            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
801            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
802            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
803            @BeanReference(type = AssetEntryPersistence.class)
804            protected AssetEntryPersistence assetEntryPersistence;
805            @BeanReference(type = AssetEntryFinder.class)
806            protected AssetEntryFinder assetEntryFinder;
807            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
808            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
809            @BeanReference(type = AssetLinkPersistence.class)
810            protected AssetLinkPersistence assetLinkPersistence;
811            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
812            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
813            @BeanReference(type = ExpandoRowPersistence.class)
814            protected ExpandoRowPersistence expandoRowPersistence;
815            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
816            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
817            @BeanReference(type = SocialActivityPersistence.class)
818            protected SocialActivityPersistence socialActivityPersistence;
819            @BeanReference(type = SocialActivityFinder.class)
820            protected SocialActivityFinder socialActivityFinder;
821            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
822            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
823            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
824            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
825            @BeanReference(type = TrashEntryPersistence.class)
826            protected TrashEntryPersistence trashEntryPersistence;
827            private String _beanIdentifier;
828    }