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.flags.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.kernel.util.InfrastructureUtil;
023    import com.liferay.portal.service.BaseServiceImpl;
024    import com.liferay.portal.service.persistence.CompanyPersistence;
025    import com.liferay.portal.service.persistence.GroupFinder;
026    import com.liferay.portal.service.persistence.GroupPersistence;
027    import com.liferay.portal.service.persistence.LayoutFinder;
028    import com.liferay.portal.service.persistence.LayoutPersistence;
029    import com.liferay.portal.service.persistence.RoleFinder;
030    import com.liferay.portal.service.persistence.RolePersistence;
031    import com.liferay.portal.service.persistence.UserFinder;
032    import com.liferay.portal.service.persistence.UserGroupFinder;
033    import com.liferay.portal.service.persistence.UserGroupPersistence;
034    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
035    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
036    import com.liferay.portal.service.persistence.UserPersistence;
037    
038    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
039    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
040    import com.liferay.portlet.flags.service.FlagsEntryService;
041    
042    import javax.sql.DataSource;
043    
044    /**
045     * Provides the base implementation for the flags entry remote service.
046     *
047     * <p>
048     * 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.flags.service.impl.FlagsEntryServiceImpl}.
049     * </p>
050     *
051     * @author Brian Wing Shun Chan
052     * @see com.liferay.portlet.flags.service.impl.FlagsEntryServiceImpl
053     * @see com.liferay.portlet.flags.service.FlagsEntryServiceUtil
054     * @generated
055     */
056    public abstract class FlagsEntryServiceBaseImpl extends BaseServiceImpl
057            implements FlagsEntryService, IdentifiableBean {
058            /*
059             * NOTE FOR DEVELOPERS:
060             *
061             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.flags.service.FlagsEntryServiceUtil} to access the flags entry remote service.
062             */
063    
064            /**
065             * Returns the flags entry remote service.
066             *
067             * @return the flags entry remote service
068             */
069            public com.liferay.portlet.flags.service.FlagsEntryService getFlagsEntryService() {
070                    return flagsEntryService;
071            }
072    
073            /**
074             * Sets the flags entry remote service.
075             *
076             * @param flagsEntryService the flags entry remote service
077             */
078            public void setFlagsEntryService(
079                    com.liferay.portlet.flags.service.FlagsEntryService flagsEntryService) {
080                    this.flagsEntryService = flagsEntryService;
081            }
082    
083            /**
084             * Returns the counter local service.
085             *
086             * @return the counter local service
087             */
088            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
089                    return counterLocalService;
090            }
091    
092            /**
093             * Sets the counter local service.
094             *
095             * @param counterLocalService the counter local service
096             */
097            public void setCounterLocalService(
098                    com.liferay.counter.service.CounterLocalService counterLocalService) {
099                    this.counterLocalService = counterLocalService;
100            }
101    
102            /**
103             * Returns the mail remote service.
104             *
105             * @return the mail remote service
106             */
107            public com.liferay.mail.service.MailService getMailService() {
108                    return mailService;
109            }
110    
111            /**
112             * Sets the mail remote service.
113             *
114             * @param mailService the mail remote service
115             */
116            public void setMailService(com.liferay.mail.service.MailService mailService) {
117                    this.mailService = mailService;
118            }
119    
120            /**
121             * Returns the company local service.
122             *
123             * @return the company local service
124             */
125            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
126                    return companyLocalService;
127            }
128    
129            /**
130             * Sets the company local service.
131             *
132             * @param companyLocalService the company local service
133             */
134            public void setCompanyLocalService(
135                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
136                    this.companyLocalService = companyLocalService;
137            }
138    
139            /**
140             * Returns the company remote service.
141             *
142             * @return the company remote service
143             */
144            public com.liferay.portal.service.CompanyService getCompanyService() {
145                    return companyService;
146            }
147    
148            /**
149             * Sets the company remote service.
150             *
151             * @param companyService the company remote service
152             */
153            public void setCompanyService(
154                    com.liferay.portal.service.CompanyService companyService) {
155                    this.companyService = companyService;
156            }
157    
158            /**
159             * Returns the company persistence.
160             *
161             * @return the company persistence
162             */
163            public CompanyPersistence getCompanyPersistence() {
164                    return companyPersistence;
165            }
166    
167            /**
168             * Sets the company persistence.
169             *
170             * @param companyPersistence the company persistence
171             */
172            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
173                    this.companyPersistence = companyPersistence;
174            }
175    
176            /**
177             * Returns the group local service.
178             *
179             * @return the group local service
180             */
181            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
182                    return groupLocalService;
183            }
184    
185            /**
186             * Sets the group local service.
187             *
188             * @param groupLocalService the group local service
189             */
190            public void setGroupLocalService(
191                    com.liferay.portal.service.GroupLocalService groupLocalService) {
192                    this.groupLocalService = groupLocalService;
193            }
194    
195            /**
196             * Returns the group remote service.
197             *
198             * @return the group remote service
199             */
200            public com.liferay.portal.service.GroupService getGroupService() {
201                    return groupService;
202            }
203    
204            /**
205             * Sets the group remote service.
206             *
207             * @param groupService the group remote service
208             */
209            public void setGroupService(
210                    com.liferay.portal.service.GroupService groupService) {
211                    this.groupService = groupService;
212            }
213    
214            /**
215             * Returns the group persistence.
216             *
217             * @return the group persistence
218             */
219            public GroupPersistence getGroupPersistence() {
220                    return groupPersistence;
221            }
222    
223            /**
224             * Sets the group persistence.
225             *
226             * @param groupPersistence the group persistence
227             */
228            public void setGroupPersistence(GroupPersistence groupPersistence) {
229                    this.groupPersistence = groupPersistence;
230            }
231    
232            /**
233             * Returns the group finder.
234             *
235             * @return the group finder
236             */
237            public GroupFinder getGroupFinder() {
238                    return groupFinder;
239            }
240    
241            /**
242             * Sets the group finder.
243             *
244             * @param groupFinder the group finder
245             */
246            public void setGroupFinder(GroupFinder groupFinder) {
247                    this.groupFinder = groupFinder;
248            }
249    
250            /**
251             * Returns the layout local service.
252             *
253             * @return the layout local service
254             */
255            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
256                    return layoutLocalService;
257            }
258    
259            /**
260             * Sets the layout local service.
261             *
262             * @param layoutLocalService the layout local service
263             */
264            public void setLayoutLocalService(
265                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
266                    this.layoutLocalService = layoutLocalService;
267            }
268    
269            /**
270             * Returns the layout remote service.
271             *
272             * @return the layout remote service
273             */
274            public com.liferay.portal.service.LayoutService getLayoutService() {
275                    return layoutService;
276            }
277    
278            /**
279             * Sets the layout remote service.
280             *
281             * @param layoutService the layout remote service
282             */
283            public void setLayoutService(
284                    com.liferay.portal.service.LayoutService layoutService) {
285                    this.layoutService = layoutService;
286            }
287    
288            /**
289             * Returns the layout persistence.
290             *
291             * @return the layout persistence
292             */
293            public LayoutPersistence getLayoutPersistence() {
294                    return layoutPersistence;
295            }
296    
297            /**
298             * Sets the layout persistence.
299             *
300             * @param layoutPersistence the layout persistence
301             */
302            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
303                    this.layoutPersistence = layoutPersistence;
304            }
305    
306            /**
307             * Returns the layout finder.
308             *
309             * @return the layout finder
310             */
311            public LayoutFinder getLayoutFinder() {
312                    return layoutFinder;
313            }
314    
315            /**
316             * Sets the layout finder.
317             *
318             * @param layoutFinder the layout finder
319             */
320            public void setLayoutFinder(LayoutFinder layoutFinder) {
321                    this.layoutFinder = layoutFinder;
322            }
323    
324            /**
325             * Returns the resource local service.
326             *
327             * @return the resource local service
328             */
329            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
330                    return resourceLocalService;
331            }
332    
333            /**
334             * Sets the resource local service.
335             *
336             * @param resourceLocalService the resource local service
337             */
338            public void setResourceLocalService(
339                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
340                    this.resourceLocalService = resourceLocalService;
341            }
342    
343            /**
344             * Returns the role local service.
345             *
346             * @return the role local service
347             */
348            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
349                    return roleLocalService;
350            }
351    
352            /**
353             * Sets the role local service.
354             *
355             * @param roleLocalService the role local service
356             */
357            public void setRoleLocalService(
358                    com.liferay.portal.service.RoleLocalService roleLocalService) {
359                    this.roleLocalService = roleLocalService;
360            }
361    
362            /**
363             * Returns the role remote service.
364             *
365             * @return the role remote service
366             */
367            public com.liferay.portal.service.RoleService getRoleService() {
368                    return roleService;
369            }
370    
371            /**
372             * Sets the role remote service.
373             *
374             * @param roleService the role remote service
375             */
376            public void setRoleService(
377                    com.liferay.portal.service.RoleService roleService) {
378                    this.roleService = roleService;
379            }
380    
381            /**
382             * Returns the role persistence.
383             *
384             * @return the role persistence
385             */
386            public RolePersistence getRolePersistence() {
387                    return rolePersistence;
388            }
389    
390            /**
391             * Sets the role persistence.
392             *
393             * @param rolePersistence the role persistence
394             */
395            public void setRolePersistence(RolePersistence rolePersistence) {
396                    this.rolePersistence = rolePersistence;
397            }
398    
399            /**
400             * Returns the role finder.
401             *
402             * @return the role finder
403             */
404            public RoleFinder getRoleFinder() {
405                    return roleFinder;
406            }
407    
408            /**
409             * Sets the role finder.
410             *
411             * @param roleFinder the role finder
412             */
413            public void setRoleFinder(RoleFinder roleFinder) {
414                    this.roleFinder = roleFinder;
415            }
416    
417            /**
418             * Returns the user local service.
419             *
420             * @return the user local service
421             */
422            public com.liferay.portal.service.UserLocalService getUserLocalService() {
423                    return userLocalService;
424            }
425    
426            /**
427             * Sets the user local service.
428             *
429             * @param userLocalService the user local service
430             */
431            public void setUserLocalService(
432                    com.liferay.portal.service.UserLocalService userLocalService) {
433                    this.userLocalService = userLocalService;
434            }
435    
436            /**
437             * Returns the user remote service.
438             *
439             * @return the user remote service
440             */
441            public com.liferay.portal.service.UserService getUserService() {
442                    return userService;
443            }
444    
445            /**
446             * Sets the user remote service.
447             *
448             * @param userService the user remote service
449             */
450            public void setUserService(
451                    com.liferay.portal.service.UserService userService) {
452                    this.userService = userService;
453            }
454    
455            /**
456             * Returns the user persistence.
457             *
458             * @return the user persistence
459             */
460            public UserPersistence getUserPersistence() {
461                    return userPersistence;
462            }
463    
464            /**
465             * Sets the user persistence.
466             *
467             * @param userPersistence the user persistence
468             */
469            public void setUserPersistence(UserPersistence userPersistence) {
470                    this.userPersistence = userPersistence;
471            }
472    
473            /**
474             * Returns the user finder.
475             *
476             * @return the user finder
477             */
478            public UserFinder getUserFinder() {
479                    return userFinder;
480            }
481    
482            /**
483             * Sets the user finder.
484             *
485             * @param userFinder the user finder
486             */
487            public void setUserFinder(UserFinder userFinder) {
488                    this.userFinder = userFinder;
489            }
490    
491            /**
492             * Returns the user group local service.
493             *
494             * @return the user group local service
495             */
496            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
497                    return userGroupLocalService;
498            }
499    
500            /**
501             * Sets the user group local service.
502             *
503             * @param userGroupLocalService the user group local service
504             */
505            public void setUserGroupLocalService(
506                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
507                    this.userGroupLocalService = userGroupLocalService;
508            }
509    
510            /**
511             * Returns the user group remote service.
512             *
513             * @return the user group remote service
514             */
515            public com.liferay.portal.service.UserGroupService getUserGroupService() {
516                    return userGroupService;
517            }
518    
519            /**
520             * Sets the user group remote service.
521             *
522             * @param userGroupService the user group remote service
523             */
524            public void setUserGroupService(
525                    com.liferay.portal.service.UserGroupService userGroupService) {
526                    this.userGroupService = userGroupService;
527            }
528    
529            /**
530             * Returns the user group persistence.
531             *
532             * @return the user group persistence
533             */
534            public UserGroupPersistence getUserGroupPersistence() {
535                    return userGroupPersistence;
536            }
537    
538            /**
539             * Sets the user group persistence.
540             *
541             * @param userGroupPersistence the user group persistence
542             */
543            public void setUserGroupPersistence(
544                    UserGroupPersistence userGroupPersistence) {
545                    this.userGroupPersistence = userGroupPersistence;
546            }
547    
548            /**
549             * Returns the user group finder.
550             *
551             * @return the user group finder
552             */
553            public UserGroupFinder getUserGroupFinder() {
554                    return userGroupFinder;
555            }
556    
557            /**
558             * Sets the user group finder.
559             *
560             * @param userGroupFinder the user group finder
561             */
562            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
563                    this.userGroupFinder = userGroupFinder;
564            }
565    
566            /**
567             * Returns the user group role local service.
568             *
569             * @return the user group role local service
570             */
571            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
572                    return userGroupRoleLocalService;
573            }
574    
575            /**
576             * Sets the user group role local service.
577             *
578             * @param userGroupRoleLocalService the user group role local service
579             */
580            public void setUserGroupRoleLocalService(
581                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
582                    this.userGroupRoleLocalService = userGroupRoleLocalService;
583            }
584    
585            /**
586             * Returns the user group role remote service.
587             *
588             * @return the user group role remote service
589             */
590            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
591                    return userGroupRoleService;
592            }
593    
594            /**
595             * Sets the user group role remote service.
596             *
597             * @param userGroupRoleService the user group role remote service
598             */
599            public void setUserGroupRoleService(
600                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
601                    this.userGroupRoleService = userGroupRoleService;
602            }
603    
604            /**
605             * Returns the user group role persistence.
606             *
607             * @return the user group role persistence
608             */
609            public UserGroupRolePersistence getUserGroupRolePersistence() {
610                    return userGroupRolePersistence;
611            }
612    
613            /**
614             * Sets the user group role persistence.
615             *
616             * @param userGroupRolePersistence the user group role persistence
617             */
618            public void setUserGroupRolePersistence(
619                    UserGroupRolePersistence userGroupRolePersistence) {
620                    this.userGroupRolePersistence = userGroupRolePersistence;
621            }
622    
623            /**
624             * Returns the user group role finder.
625             *
626             * @return the user group role finder
627             */
628            public UserGroupRoleFinder getUserGroupRoleFinder() {
629                    return userGroupRoleFinder;
630            }
631    
632            /**
633             * Sets the user group role finder.
634             *
635             * @param userGroupRoleFinder the user group role finder
636             */
637            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
638                    this.userGroupRoleFinder = userGroupRoleFinder;
639            }
640    
641            /**
642             * Returns the asset entry local service.
643             *
644             * @return the asset entry local service
645             */
646            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
647                    return assetEntryLocalService;
648            }
649    
650            /**
651             * Sets the asset entry local service.
652             *
653             * @param assetEntryLocalService the asset entry local service
654             */
655            public void setAssetEntryLocalService(
656                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
657                    this.assetEntryLocalService = assetEntryLocalService;
658            }
659    
660            /**
661             * Returns the asset entry remote service.
662             *
663             * @return the asset entry remote service
664             */
665            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
666                    return assetEntryService;
667            }
668    
669            /**
670             * Sets the asset entry remote service.
671             *
672             * @param assetEntryService the asset entry remote service
673             */
674            public void setAssetEntryService(
675                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
676                    this.assetEntryService = assetEntryService;
677            }
678    
679            /**
680             * Returns the asset entry persistence.
681             *
682             * @return the asset entry persistence
683             */
684            public AssetEntryPersistence getAssetEntryPersistence() {
685                    return assetEntryPersistence;
686            }
687    
688            /**
689             * Sets the asset entry persistence.
690             *
691             * @param assetEntryPersistence the asset entry persistence
692             */
693            public void setAssetEntryPersistence(
694                    AssetEntryPersistence assetEntryPersistence) {
695                    this.assetEntryPersistence = assetEntryPersistence;
696            }
697    
698            /**
699             * Returns the asset entry finder.
700             *
701             * @return the asset entry finder
702             */
703            public AssetEntryFinder getAssetEntryFinder() {
704                    return assetEntryFinder;
705            }
706    
707            /**
708             * Sets the asset entry finder.
709             *
710             * @param assetEntryFinder the asset entry finder
711             */
712            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
713                    this.assetEntryFinder = assetEntryFinder;
714            }
715    
716            public void afterPropertiesSet() {
717            }
718    
719            public void destroy() {
720            }
721    
722            /**
723             * Returns the Spring bean ID for this bean.
724             *
725             * @return the Spring bean ID for this bean
726             */
727            @Override
728            public String getBeanIdentifier() {
729                    return _beanIdentifier;
730            }
731    
732            /**
733             * Sets the Spring bean ID for this bean.
734             *
735             * @param beanIdentifier the Spring bean ID for this bean
736             */
737            @Override
738            public void setBeanIdentifier(String beanIdentifier) {
739                    _beanIdentifier = beanIdentifier;
740            }
741    
742            /**
743             * Performs an SQL query.
744             *
745             * @param sql the sql query
746             */
747            protected void runSQL(String sql) throws SystemException {
748                    try {
749                            DataSource dataSource = InfrastructureUtil.getDataSource();
750    
751                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
752                                            sql, new int[0]);
753    
754                            sqlUpdate.update();
755                    }
756                    catch (Exception e) {
757                            throw new SystemException(e);
758                    }
759            }
760    
761            @BeanReference(type = com.liferay.portlet.flags.service.FlagsEntryService.class)
762            protected com.liferay.portlet.flags.service.FlagsEntryService flagsEntryService;
763            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
764            protected com.liferay.counter.service.CounterLocalService counterLocalService;
765            @BeanReference(type = com.liferay.mail.service.MailService.class)
766            protected com.liferay.mail.service.MailService mailService;
767            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
768            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
769            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
770            protected com.liferay.portal.service.CompanyService companyService;
771            @BeanReference(type = CompanyPersistence.class)
772            protected CompanyPersistence companyPersistence;
773            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
774            protected com.liferay.portal.service.GroupLocalService groupLocalService;
775            @BeanReference(type = com.liferay.portal.service.GroupService.class)
776            protected com.liferay.portal.service.GroupService groupService;
777            @BeanReference(type = GroupPersistence.class)
778            protected GroupPersistence groupPersistence;
779            @BeanReference(type = GroupFinder.class)
780            protected GroupFinder groupFinder;
781            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
782            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
783            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
784            protected com.liferay.portal.service.LayoutService layoutService;
785            @BeanReference(type = LayoutPersistence.class)
786            protected LayoutPersistence layoutPersistence;
787            @BeanReference(type = LayoutFinder.class)
788            protected LayoutFinder layoutFinder;
789            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
790            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
791            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
792            protected com.liferay.portal.service.RoleLocalService roleLocalService;
793            @BeanReference(type = com.liferay.portal.service.RoleService.class)
794            protected com.liferay.portal.service.RoleService roleService;
795            @BeanReference(type = RolePersistence.class)
796            protected RolePersistence rolePersistence;
797            @BeanReference(type = RoleFinder.class)
798            protected RoleFinder roleFinder;
799            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
800            protected com.liferay.portal.service.UserLocalService userLocalService;
801            @BeanReference(type = com.liferay.portal.service.UserService.class)
802            protected com.liferay.portal.service.UserService userService;
803            @BeanReference(type = UserPersistence.class)
804            protected UserPersistence userPersistence;
805            @BeanReference(type = UserFinder.class)
806            protected UserFinder userFinder;
807            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
808            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
809            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
810            protected com.liferay.portal.service.UserGroupService userGroupService;
811            @BeanReference(type = UserGroupPersistence.class)
812            protected UserGroupPersistence userGroupPersistence;
813            @BeanReference(type = UserGroupFinder.class)
814            protected UserGroupFinder userGroupFinder;
815            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
816            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
817            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
818            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
819            @BeanReference(type = UserGroupRolePersistence.class)
820            protected UserGroupRolePersistence userGroupRolePersistence;
821            @BeanReference(type = UserGroupRoleFinder.class)
822            protected UserGroupRoleFinder userGroupRoleFinder;
823            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
824            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
825            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
826            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
827            @BeanReference(type = AssetEntryPersistence.class)
828            protected AssetEntryPersistence assetEntryPersistence;
829            @BeanReference(type = AssetEntryFinder.class)
830            protected AssetEntryFinder assetEntryFinder;
831            private String _beanIdentifier;
832    }