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