001    /**
002     * Copyright (c) 2000-2010 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.imagegallery.service.base;
016    
017    import com.liferay.counter.service.CounterLocalService;
018    
019    import com.liferay.portal.kernel.annotation.BeanReference;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
022    import com.liferay.portal.kernel.exception.SystemException;
023    import com.liferay.portal.service.ImageLocalService;
024    import com.liferay.portal.service.ImageService;
025    import com.liferay.portal.service.ResourceLocalService;
026    import com.liferay.portal.service.ResourceService;
027    import com.liferay.portal.service.UserLocalService;
028    import com.liferay.portal.service.UserService;
029    import com.liferay.portal.service.base.PrincipalBean;
030    import com.liferay.portal.service.persistence.ImagePersistence;
031    import com.liferay.portal.service.persistence.ResourceFinder;
032    import com.liferay.portal.service.persistence.ResourcePersistence;
033    import com.liferay.portal.service.persistence.UserFinder;
034    import com.liferay.portal.service.persistence.UserPersistence;
035    
036    import com.liferay.portlet.asset.service.AssetCategoryLocalService;
037    import com.liferay.portlet.asset.service.AssetCategoryService;
038    import com.liferay.portlet.asset.service.AssetEntryLocalService;
039    import com.liferay.portlet.asset.service.AssetEntryService;
040    import com.liferay.portlet.asset.service.AssetTagLocalService;
041    import com.liferay.portlet.asset.service.AssetTagService;
042    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
043    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
044    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
045    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
046    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
047    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
048    import com.liferay.portlet.expando.service.ExpandoValueLocalService;
049    import com.liferay.portlet.expando.service.ExpandoValueService;
050    import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
051    import com.liferay.portlet.imagegallery.service.IGFolderLocalService;
052    import com.liferay.portlet.imagegallery.service.IGFolderService;
053    import com.liferay.portlet.imagegallery.service.IGImageLocalService;
054    import com.liferay.portlet.imagegallery.service.IGImageService;
055    import com.liferay.portlet.imagegallery.service.persistence.IGFolderPersistence;
056    import com.liferay.portlet.imagegallery.service.persistence.IGImageFinder;
057    import com.liferay.portlet.imagegallery.service.persistence.IGImagePersistence;
058    import com.liferay.portlet.social.service.SocialActivityLocalService;
059    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
060    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
061    
062    import javax.sql.DataSource;
063    
064    /**
065     * The base implementation of the i g image remote service.
066     *
067     * <p>
068     * 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.imagegallery.service.impl.IGImageServiceImpl}.
069     * </p>
070     *
071     * <p>
072     * Never modify or reference this class directly. Always use {@link com.liferay.portlet.imagegallery.service.IGImageServiceUtil} to access the i g image remote service.
073     * </p>
074     *
075     * @author Brian Wing Shun Chan
076     * @see com.liferay.portlet.imagegallery.service.impl.IGImageServiceImpl
077     * @see com.liferay.portlet.imagegallery.service.IGImageServiceUtil
078     * @generated
079     */
080    public abstract class IGImageServiceBaseImpl extends PrincipalBean
081            implements IGImageService {
082            /**
083             * Gets the i g folder local service.
084             *
085             * @return the i g folder local service
086             */
087            public IGFolderLocalService getIGFolderLocalService() {
088                    return igFolderLocalService;
089            }
090    
091            /**
092             * Sets the i g folder local service.
093             *
094             * @param igFolderLocalService the i g folder local service
095             */
096            public void setIGFolderLocalService(
097                    IGFolderLocalService igFolderLocalService) {
098                    this.igFolderLocalService = igFolderLocalService;
099            }
100    
101            /**
102             * Gets the i g folder remote service.
103             *
104             * @return the i g folder remote service
105             */
106            public IGFolderService getIGFolderService() {
107                    return igFolderService;
108            }
109    
110            /**
111             * Sets the i g folder remote service.
112             *
113             * @param igFolderService the i g folder remote service
114             */
115            public void setIGFolderService(IGFolderService igFolderService) {
116                    this.igFolderService = igFolderService;
117            }
118    
119            /**
120             * Gets the i g folder persistence.
121             *
122             * @return the i g folder persistence
123             */
124            public IGFolderPersistence getIGFolderPersistence() {
125                    return igFolderPersistence;
126            }
127    
128            /**
129             * Sets the i g folder persistence.
130             *
131             * @param igFolderPersistence the i g folder persistence
132             */
133            public void setIGFolderPersistence(IGFolderPersistence igFolderPersistence) {
134                    this.igFolderPersistence = igFolderPersistence;
135            }
136    
137            /**
138             * Gets the i g image local service.
139             *
140             * @return the i g image local service
141             */
142            public IGImageLocalService getIGImageLocalService() {
143                    return igImageLocalService;
144            }
145    
146            /**
147             * Sets the i g image local service.
148             *
149             * @param igImageLocalService the i g image local service
150             */
151            public void setIGImageLocalService(IGImageLocalService igImageLocalService) {
152                    this.igImageLocalService = igImageLocalService;
153            }
154    
155            /**
156             * Gets the i g image remote service.
157             *
158             * @return the i g image remote service
159             */
160            public IGImageService getIGImageService() {
161                    return igImageService;
162            }
163    
164            /**
165             * Sets the i g image remote service.
166             *
167             * @param igImageService the i g image remote service
168             */
169            public void setIGImageService(IGImageService igImageService) {
170                    this.igImageService = igImageService;
171            }
172    
173            /**
174             * Gets the i g image persistence.
175             *
176             * @return the i g image persistence
177             */
178            public IGImagePersistence getIGImagePersistence() {
179                    return igImagePersistence;
180            }
181    
182            /**
183             * Sets the i g image persistence.
184             *
185             * @param igImagePersistence the i g image persistence
186             */
187            public void setIGImagePersistence(IGImagePersistence igImagePersistence) {
188                    this.igImagePersistence = igImagePersistence;
189            }
190    
191            /**
192             * Gets the i g image finder.
193             *
194             * @return the i g image finder
195             */
196            public IGImageFinder getIGImageFinder() {
197                    return igImageFinder;
198            }
199    
200            /**
201             * Sets the i g image finder.
202             *
203             * @param igImageFinder the i g image finder
204             */
205            public void setIGImageFinder(IGImageFinder igImageFinder) {
206                    this.igImageFinder = igImageFinder;
207            }
208    
209            /**
210             * Gets the counter local service.
211             *
212             * @return the counter local service
213             */
214            public CounterLocalService getCounterLocalService() {
215                    return counterLocalService;
216            }
217    
218            /**
219             * Sets the counter local service.
220             *
221             * @param counterLocalService the counter local service
222             */
223            public void setCounterLocalService(CounterLocalService counterLocalService) {
224                    this.counterLocalService = counterLocalService;
225            }
226    
227            /**
228             * Gets the image local service.
229             *
230             * @return the image local service
231             */
232            public ImageLocalService getImageLocalService() {
233                    return imageLocalService;
234            }
235    
236            /**
237             * Sets the image local service.
238             *
239             * @param imageLocalService the image local service
240             */
241            public void setImageLocalService(ImageLocalService imageLocalService) {
242                    this.imageLocalService = imageLocalService;
243            }
244    
245            /**
246             * Gets the image remote service.
247             *
248             * @return the image remote service
249             */
250            public ImageService getImageService() {
251                    return imageService;
252            }
253    
254            /**
255             * Sets the image remote service.
256             *
257             * @param imageService the image remote service
258             */
259            public void setImageService(ImageService imageService) {
260                    this.imageService = imageService;
261            }
262    
263            /**
264             * Gets the image persistence.
265             *
266             * @return the image persistence
267             */
268            public ImagePersistence getImagePersistence() {
269                    return imagePersistence;
270            }
271    
272            /**
273             * Sets the image persistence.
274             *
275             * @param imagePersistence the image persistence
276             */
277            public void setImagePersistence(ImagePersistence imagePersistence) {
278                    this.imagePersistence = imagePersistence;
279            }
280    
281            /**
282             * Gets the resource local service.
283             *
284             * @return the resource local service
285             */
286            public ResourceLocalService getResourceLocalService() {
287                    return resourceLocalService;
288            }
289    
290            /**
291             * Sets the resource local service.
292             *
293             * @param resourceLocalService the resource local service
294             */
295            public void setResourceLocalService(
296                    ResourceLocalService resourceLocalService) {
297                    this.resourceLocalService = resourceLocalService;
298            }
299    
300            /**
301             * Gets the resource remote service.
302             *
303             * @return the resource remote service
304             */
305            public ResourceService getResourceService() {
306                    return resourceService;
307            }
308    
309            /**
310             * Sets the resource remote service.
311             *
312             * @param resourceService the resource remote service
313             */
314            public void setResourceService(ResourceService resourceService) {
315                    this.resourceService = resourceService;
316            }
317    
318            /**
319             * Gets the resource persistence.
320             *
321             * @return the resource persistence
322             */
323            public ResourcePersistence getResourcePersistence() {
324                    return resourcePersistence;
325            }
326    
327            /**
328             * Sets the resource persistence.
329             *
330             * @param resourcePersistence the resource persistence
331             */
332            public void setResourcePersistence(ResourcePersistence resourcePersistence) {
333                    this.resourcePersistence = resourcePersistence;
334            }
335    
336            /**
337             * Gets the resource finder.
338             *
339             * @return the resource finder
340             */
341            public ResourceFinder getResourceFinder() {
342                    return resourceFinder;
343            }
344    
345            /**
346             * Sets the resource finder.
347             *
348             * @param resourceFinder the resource finder
349             */
350            public void setResourceFinder(ResourceFinder resourceFinder) {
351                    this.resourceFinder = resourceFinder;
352            }
353    
354            /**
355             * Gets the user local service.
356             *
357             * @return the user local service
358             */
359            public UserLocalService getUserLocalService() {
360                    return userLocalService;
361            }
362    
363            /**
364             * Sets the user local service.
365             *
366             * @param userLocalService the user local service
367             */
368            public void setUserLocalService(UserLocalService userLocalService) {
369                    this.userLocalService = userLocalService;
370            }
371    
372            /**
373             * Gets the user remote service.
374             *
375             * @return the user remote service
376             */
377            public UserService getUserService() {
378                    return userService;
379            }
380    
381            /**
382             * Sets the user remote service.
383             *
384             * @param userService the user remote service
385             */
386            public void setUserService(UserService userService) {
387                    this.userService = userService;
388            }
389    
390            /**
391             * Gets the user persistence.
392             *
393             * @return the user persistence
394             */
395            public UserPersistence getUserPersistence() {
396                    return userPersistence;
397            }
398    
399            /**
400             * Sets the user persistence.
401             *
402             * @param userPersistence the user persistence
403             */
404            public void setUserPersistence(UserPersistence userPersistence) {
405                    this.userPersistence = userPersistence;
406            }
407    
408            /**
409             * Gets the user finder.
410             *
411             * @return the user finder
412             */
413            public UserFinder getUserFinder() {
414                    return userFinder;
415            }
416    
417            /**
418             * Sets the user finder.
419             *
420             * @param userFinder the user finder
421             */
422            public void setUserFinder(UserFinder userFinder) {
423                    this.userFinder = userFinder;
424            }
425    
426            /**
427             * Gets the asset category local service.
428             *
429             * @return the asset category local service
430             */
431            public AssetCategoryLocalService getAssetCategoryLocalService() {
432                    return assetCategoryLocalService;
433            }
434    
435            /**
436             * Sets the asset category local service.
437             *
438             * @param assetCategoryLocalService the asset category local service
439             */
440            public void setAssetCategoryLocalService(
441                    AssetCategoryLocalService assetCategoryLocalService) {
442                    this.assetCategoryLocalService = assetCategoryLocalService;
443            }
444    
445            /**
446             * Gets the asset category remote service.
447             *
448             * @return the asset category remote service
449             */
450            public AssetCategoryService getAssetCategoryService() {
451                    return assetCategoryService;
452            }
453    
454            /**
455             * Sets the asset category remote service.
456             *
457             * @param assetCategoryService the asset category remote service
458             */
459            public void setAssetCategoryService(
460                    AssetCategoryService assetCategoryService) {
461                    this.assetCategoryService = assetCategoryService;
462            }
463    
464            /**
465             * Gets the asset category persistence.
466             *
467             * @return the asset category persistence
468             */
469            public AssetCategoryPersistence getAssetCategoryPersistence() {
470                    return assetCategoryPersistence;
471            }
472    
473            /**
474             * Sets the asset category persistence.
475             *
476             * @param assetCategoryPersistence the asset category persistence
477             */
478            public void setAssetCategoryPersistence(
479                    AssetCategoryPersistence assetCategoryPersistence) {
480                    this.assetCategoryPersistence = assetCategoryPersistence;
481            }
482    
483            /**
484             * Gets the asset category finder.
485             *
486             * @return the asset category finder
487             */
488            public AssetCategoryFinder getAssetCategoryFinder() {
489                    return assetCategoryFinder;
490            }
491    
492            /**
493             * Sets the asset category finder.
494             *
495             * @param assetCategoryFinder the asset category finder
496             */
497            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
498                    this.assetCategoryFinder = assetCategoryFinder;
499            }
500    
501            /**
502             * Gets the asset entry local service.
503             *
504             * @return the asset entry local service
505             */
506            public AssetEntryLocalService getAssetEntryLocalService() {
507                    return assetEntryLocalService;
508            }
509    
510            /**
511             * Sets the asset entry local service.
512             *
513             * @param assetEntryLocalService the asset entry local service
514             */
515            public void setAssetEntryLocalService(
516                    AssetEntryLocalService assetEntryLocalService) {
517                    this.assetEntryLocalService = assetEntryLocalService;
518            }
519    
520            /**
521             * Gets the asset entry remote service.
522             *
523             * @return the asset entry remote service
524             */
525            public AssetEntryService getAssetEntryService() {
526                    return assetEntryService;
527            }
528    
529            /**
530             * Sets the asset entry remote service.
531             *
532             * @param assetEntryService the asset entry remote service
533             */
534            public void setAssetEntryService(AssetEntryService assetEntryService) {
535                    this.assetEntryService = assetEntryService;
536            }
537    
538            /**
539             * Gets the asset entry persistence.
540             *
541             * @return the asset entry persistence
542             */
543            public AssetEntryPersistence getAssetEntryPersistence() {
544                    return assetEntryPersistence;
545            }
546    
547            /**
548             * Sets the asset entry persistence.
549             *
550             * @param assetEntryPersistence the asset entry persistence
551             */
552            public void setAssetEntryPersistence(
553                    AssetEntryPersistence assetEntryPersistence) {
554                    this.assetEntryPersistence = assetEntryPersistence;
555            }
556    
557            /**
558             * Gets the asset entry finder.
559             *
560             * @return the asset entry finder
561             */
562            public AssetEntryFinder getAssetEntryFinder() {
563                    return assetEntryFinder;
564            }
565    
566            /**
567             * Sets the asset entry finder.
568             *
569             * @param assetEntryFinder the asset entry finder
570             */
571            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
572                    this.assetEntryFinder = assetEntryFinder;
573            }
574    
575            /**
576             * Gets the asset tag local service.
577             *
578             * @return the asset tag local service
579             */
580            public AssetTagLocalService getAssetTagLocalService() {
581                    return assetTagLocalService;
582            }
583    
584            /**
585             * Sets the asset tag local service.
586             *
587             * @param assetTagLocalService the asset tag local service
588             */
589            public void setAssetTagLocalService(
590                    AssetTagLocalService assetTagLocalService) {
591                    this.assetTagLocalService = assetTagLocalService;
592            }
593    
594            /**
595             * Gets the asset tag remote service.
596             *
597             * @return the asset tag remote service
598             */
599            public AssetTagService getAssetTagService() {
600                    return assetTagService;
601            }
602    
603            /**
604             * Sets the asset tag remote service.
605             *
606             * @param assetTagService the asset tag remote service
607             */
608            public void setAssetTagService(AssetTagService assetTagService) {
609                    this.assetTagService = assetTagService;
610            }
611    
612            /**
613             * Gets the asset tag persistence.
614             *
615             * @return the asset tag persistence
616             */
617            public AssetTagPersistence getAssetTagPersistence() {
618                    return assetTagPersistence;
619            }
620    
621            /**
622             * Sets the asset tag persistence.
623             *
624             * @param assetTagPersistence the asset tag persistence
625             */
626            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
627                    this.assetTagPersistence = assetTagPersistence;
628            }
629    
630            /**
631             * Gets the asset tag finder.
632             *
633             * @return the asset tag finder
634             */
635            public AssetTagFinder getAssetTagFinder() {
636                    return assetTagFinder;
637            }
638    
639            /**
640             * Sets the asset tag finder.
641             *
642             * @param assetTagFinder the asset tag finder
643             */
644            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
645                    this.assetTagFinder = assetTagFinder;
646            }
647    
648            /**
649             * Gets the expando value local service.
650             *
651             * @return the expando value local service
652             */
653            public ExpandoValueLocalService getExpandoValueLocalService() {
654                    return expandoValueLocalService;
655            }
656    
657            /**
658             * Sets the expando value local service.
659             *
660             * @param expandoValueLocalService the expando value local service
661             */
662            public void setExpandoValueLocalService(
663                    ExpandoValueLocalService expandoValueLocalService) {
664                    this.expandoValueLocalService = expandoValueLocalService;
665            }
666    
667            /**
668             * Gets the expando value remote service.
669             *
670             * @return the expando value remote service
671             */
672            public ExpandoValueService getExpandoValueService() {
673                    return expandoValueService;
674            }
675    
676            /**
677             * Sets the expando value remote service.
678             *
679             * @param expandoValueService the expando value remote service
680             */
681            public void setExpandoValueService(ExpandoValueService expandoValueService) {
682                    this.expandoValueService = expandoValueService;
683            }
684    
685            /**
686             * Gets the expando value persistence.
687             *
688             * @return the expando value persistence
689             */
690            public ExpandoValuePersistence getExpandoValuePersistence() {
691                    return expandoValuePersistence;
692            }
693    
694            /**
695             * Sets the expando value persistence.
696             *
697             * @param expandoValuePersistence the expando value persistence
698             */
699            public void setExpandoValuePersistence(
700                    ExpandoValuePersistence expandoValuePersistence) {
701                    this.expandoValuePersistence = expandoValuePersistence;
702            }
703    
704            /**
705             * Gets the social activity local service.
706             *
707             * @return the social activity local service
708             */
709            public SocialActivityLocalService getSocialActivityLocalService() {
710                    return socialActivityLocalService;
711            }
712    
713            /**
714             * Sets the social activity local service.
715             *
716             * @param socialActivityLocalService the social activity local service
717             */
718            public void setSocialActivityLocalService(
719                    SocialActivityLocalService socialActivityLocalService) {
720                    this.socialActivityLocalService = socialActivityLocalService;
721            }
722    
723            /**
724             * Gets the social activity persistence.
725             *
726             * @return the social activity persistence
727             */
728            public SocialActivityPersistence getSocialActivityPersistence() {
729                    return socialActivityPersistence;
730            }
731    
732            /**
733             * Sets the social activity persistence.
734             *
735             * @param socialActivityPersistence the social activity persistence
736             */
737            public void setSocialActivityPersistence(
738                    SocialActivityPersistence socialActivityPersistence) {
739                    this.socialActivityPersistence = socialActivityPersistence;
740            }
741    
742            /**
743             * Gets the social activity finder.
744             *
745             * @return the social activity finder
746             */
747            public SocialActivityFinder getSocialActivityFinder() {
748                    return socialActivityFinder;
749            }
750    
751            /**
752             * Sets the social activity finder.
753             *
754             * @param socialActivityFinder the social activity finder
755             */
756            public void setSocialActivityFinder(
757                    SocialActivityFinder socialActivityFinder) {
758                    this.socialActivityFinder = socialActivityFinder;
759            }
760    
761            /**
762             * Performs an SQL query.
763             *
764             * @param sql the sql query to perform
765             */
766            protected void runSQL(String sql) throws SystemException {
767                    try {
768                            DataSource dataSource = igImagePersistence.getDataSource();
769    
770                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
771                                            sql, new int[0]);
772    
773                            sqlUpdate.update();
774                    }
775                    catch (Exception e) {
776                            throw new SystemException(e);
777                    }
778            }
779    
780            @BeanReference(type = IGFolderLocalService.class)
781            protected IGFolderLocalService igFolderLocalService;
782            @BeanReference(type = IGFolderService.class)
783            protected IGFolderService igFolderService;
784            @BeanReference(type = IGFolderPersistence.class)
785            protected IGFolderPersistence igFolderPersistence;
786            @BeanReference(type = IGImageLocalService.class)
787            protected IGImageLocalService igImageLocalService;
788            @BeanReference(type = IGImageService.class)
789            protected IGImageService igImageService;
790            @BeanReference(type = IGImagePersistence.class)
791            protected IGImagePersistence igImagePersistence;
792            @BeanReference(type = IGImageFinder.class)
793            protected IGImageFinder igImageFinder;
794            @BeanReference(type = CounterLocalService.class)
795            protected CounterLocalService counterLocalService;
796            @BeanReference(type = ImageLocalService.class)
797            protected ImageLocalService imageLocalService;
798            @BeanReference(type = ImageService.class)
799            protected ImageService imageService;
800            @BeanReference(type = ImagePersistence.class)
801            protected ImagePersistence imagePersistence;
802            @BeanReference(type = ResourceLocalService.class)
803            protected ResourceLocalService resourceLocalService;
804            @BeanReference(type = ResourceService.class)
805            protected ResourceService resourceService;
806            @BeanReference(type = ResourcePersistence.class)
807            protected ResourcePersistence resourcePersistence;
808            @BeanReference(type = ResourceFinder.class)
809            protected ResourceFinder resourceFinder;
810            @BeanReference(type = UserLocalService.class)
811            protected UserLocalService userLocalService;
812            @BeanReference(type = UserService.class)
813            protected UserService userService;
814            @BeanReference(type = UserPersistence.class)
815            protected UserPersistence userPersistence;
816            @BeanReference(type = UserFinder.class)
817            protected UserFinder userFinder;
818            @BeanReference(type = AssetCategoryLocalService.class)
819            protected AssetCategoryLocalService assetCategoryLocalService;
820            @BeanReference(type = AssetCategoryService.class)
821            protected AssetCategoryService assetCategoryService;
822            @BeanReference(type = AssetCategoryPersistence.class)
823            protected AssetCategoryPersistence assetCategoryPersistence;
824            @BeanReference(type = AssetCategoryFinder.class)
825            protected AssetCategoryFinder assetCategoryFinder;
826            @BeanReference(type = AssetEntryLocalService.class)
827            protected AssetEntryLocalService assetEntryLocalService;
828            @BeanReference(type = AssetEntryService.class)
829            protected AssetEntryService assetEntryService;
830            @BeanReference(type = AssetEntryPersistence.class)
831            protected AssetEntryPersistence assetEntryPersistence;
832            @BeanReference(type = AssetEntryFinder.class)
833            protected AssetEntryFinder assetEntryFinder;
834            @BeanReference(type = AssetTagLocalService.class)
835            protected AssetTagLocalService assetTagLocalService;
836            @BeanReference(type = AssetTagService.class)
837            protected AssetTagService assetTagService;
838            @BeanReference(type = AssetTagPersistence.class)
839            protected AssetTagPersistence assetTagPersistence;
840            @BeanReference(type = AssetTagFinder.class)
841            protected AssetTagFinder assetTagFinder;
842            @BeanReference(type = ExpandoValueLocalService.class)
843            protected ExpandoValueLocalService expandoValueLocalService;
844            @BeanReference(type = ExpandoValueService.class)
845            protected ExpandoValueService expandoValueService;
846            @BeanReference(type = ExpandoValuePersistence.class)
847            protected ExpandoValuePersistence expandoValuePersistence;
848            @BeanReference(type = SocialActivityLocalService.class)
849            protected SocialActivityLocalService socialActivityLocalService;
850            @BeanReference(type = SocialActivityPersistence.class)
851            protected SocialActivityPersistence socialActivityPersistence;
852            @BeanReference(type = SocialActivityFinder.class)
853            protected SocialActivityFinder socialActivityFinder;
854    }