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