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.portal.service.base;
016    
017    import com.liferay.portal.kernel.bean.BeanReference;
018    import com.liferay.portal.kernel.dao.db.DB;
019    import com.liferay.portal.kernel.dao.db.DBManagerUtil;
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.kernel.module.framework.service.IdentifiableOSGiService;
024    import com.liferay.portal.model.LayoutRevision;
025    import com.liferay.portal.service.BaseServiceImpl;
026    import com.liferay.portal.service.LayoutRevisionService;
027    import com.liferay.portal.service.persistence.ImagePersistence;
028    import com.liferay.portal.service.persistence.LayoutBranchPersistence;
029    import com.liferay.portal.service.persistence.LayoutFinder;
030    import com.liferay.portal.service.persistence.LayoutPersistence;
031    import com.liferay.portal.service.persistence.LayoutRevisionPersistence;
032    import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
033    import com.liferay.portal.service.persistence.LayoutSetPersistence;
034    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
035    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
036    import com.liferay.portal.service.persistence.RecentLayoutRevisionPersistence;
037    import com.liferay.portal.service.persistence.UserFinder;
038    import com.liferay.portal.service.persistence.UserPersistence;
039    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
040    import com.liferay.portal.util.PortalUtil;
041    
042    import javax.sql.DataSource;
043    
044    /**
045     * Provides the base implementation for the layout revision 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.portal.service.impl.LayoutRevisionServiceImpl}.
049     * </p>
050     *
051     * @author Brian Wing Shun Chan
052     * @see com.liferay.portal.service.impl.LayoutRevisionServiceImpl
053     * @see com.liferay.portal.service.LayoutRevisionServiceUtil
054     * @generated
055     */
056    public abstract class LayoutRevisionServiceBaseImpl extends BaseServiceImpl
057            implements LayoutRevisionService, IdentifiableOSGiService {
058            /*
059             * NOTE FOR DEVELOPERS:
060             *
061             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.LayoutRevisionServiceUtil} to access the layout revision remote service.
062             */
063    
064            /**
065             * Returns the layout revision local service.
066             *
067             * @return the layout revision local service
068             */
069            public com.liferay.portal.service.LayoutRevisionLocalService getLayoutRevisionLocalService() {
070                    return layoutRevisionLocalService;
071            }
072    
073            /**
074             * Sets the layout revision local service.
075             *
076             * @param layoutRevisionLocalService the layout revision local service
077             */
078            public void setLayoutRevisionLocalService(
079                    com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService) {
080                    this.layoutRevisionLocalService = layoutRevisionLocalService;
081            }
082    
083            /**
084             * Returns the layout revision remote service.
085             *
086             * @return the layout revision remote service
087             */
088            public LayoutRevisionService getLayoutRevisionService() {
089                    return layoutRevisionService;
090            }
091    
092            /**
093             * Sets the layout revision remote service.
094             *
095             * @param layoutRevisionService the layout revision remote service
096             */
097            public void setLayoutRevisionService(
098                    LayoutRevisionService layoutRevisionService) {
099                    this.layoutRevisionService = layoutRevisionService;
100            }
101    
102            /**
103             * Returns the layout revision persistence.
104             *
105             * @return the layout revision persistence
106             */
107            public LayoutRevisionPersistence getLayoutRevisionPersistence() {
108                    return layoutRevisionPersistence;
109            }
110    
111            /**
112             * Sets the layout revision persistence.
113             *
114             * @param layoutRevisionPersistence the layout revision persistence
115             */
116            public void setLayoutRevisionPersistence(
117                    LayoutRevisionPersistence layoutRevisionPersistence) {
118                    this.layoutRevisionPersistence = layoutRevisionPersistence;
119            }
120    
121            /**
122             * Returns the counter local service.
123             *
124             * @return the counter local service
125             */
126            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
127                    return counterLocalService;
128            }
129    
130            /**
131             * Sets the counter local service.
132             *
133             * @param counterLocalService the counter local service
134             */
135            public void setCounterLocalService(
136                    com.liferay.counter.service.CounterLocalService counterLocalService) {
137                    this.counterLocalService = counterLocalService;
138            }
139    
140            /**
141             * Returns the image local service.
142             *
143             * @return the image local service
144             */
145            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
146                    return imageLocalService;
147            }
148    
149            /**
150             * Sets the image local service.
151             *
152             * @param imageLocalService the image local service
153             */
154            public void setImageLocalService(
155                    com.liferay.portal.service.ImageLocalService imageLocalService) {
156                    this.imageLocalService = imageLocalService;
157            }
158    
159            /**
160             * Returns the image remote service.
161             *
162             * @return the image remote service
163             */
164            public com.liferay.portal.service.ImageService getImageService() {
165                    return imageService;
166            }
167    
168            /**
169             * Sets the image remote service.
170             *
171             * @param imageService the image remote service
172             */
173            public void setImageService(
174                    com.liferay.portal.service.ImageService imageService) {
175                    this.imageService = imageService;
176            }
177    
178            /**
179             * Returns the image persistence.
180             *
181             * @return the image persistence
182             */
183            public ImagePersistence getImagePersistence() {
184                    return imagePersistence;
185            }
186    
187            /**
188             * Sets the image persistence.
189             *
190             * @param imagePersistence the image persistence
191             */
192            public void setImagePersistence(ImagePersistence imagePersistence) {
193                    this.imagePersistence = imagePersistence;
194            }
195    
196            /**
197             * Returns the layout local service.
198             *
199             * @return the layout local service
200             */
201            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
202                    return layoutLocalService;
203            }
204    
205            /**
206             * Sets the layout local service.
207             *
208             * @param layoutLocalService the layout local service
209             */
210            public void setLayoutLocalService(
211                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
212                    this.layoutLocalService = layoutLocalService;
213            }
214    
215            /**
216             * Returns the layout remote service.
217             *
218             * @return the layout remote service
219             */
220            public com.liferay.portal.service.LayoutService getLayoutService() {
221                    return layoutService;
222            }
223    
224            /**
225             * Sets the layout remote service.
226             *
227             * @param layoutService the layout remote service
228             */
229            public void setLayoutService(
230                    com.liferay.portal.service.LayoutService layoutService) {
231                    this.layoutService = layoutService;
232            }
233    
234            /**
235             * Returns the layout persistence.
236             *
237             * @return the layout persistence
238             */
239            public LayoutPersistence getLayoutPersistence() {
240                    return layoutPersistence;
241            }
242    
243            /**
244             * Sets the layout persistence.
245             *
246             * @param layoutPersistence the layout persistence
247             */
248            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
249                    this.layoutPersistence = layoutPersistence;
250            }
251    
252            /**
253             * Returns the layout finder.
254             *
255             * @return the layout finder
256             */
257            public LayoutFinder getLayoutFinder() {
258                    return layoutFinder;
259            }
260    
261            /**
262             * Sets the layout finder.
263             *
264             * @param layoutFinder the layout finder
265             */
266            public void setLayoutFinder(LayoutFinder layoutFinder) {
267                    this.layoutFinder = layoutFinder;
268            }
269    
270            /**
271             * Returns the layout branch local service.
272             *
273             * @return the layout branch local service
274             */
275            public com.liferay.portal.service.LayoutBranchLocalService getLayoutBranchLocalService() {
276                    return layoutBranchLocalService;
277            }
278    
279            /**
280             * Sets the layout branch local service.
281             *
282             * @param layoutBranchLocalService the layout branch local service
283             */
284            public void setLayoutBranchLocalService(
285                    com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService) {
286                    this.layoutBranchLocalService = layoutBranchLocalService;
287            }
288    
289            /**
290             * Returns the layout branch remote service.
291             *
292             * @return the layout branch remote service
293             */
294            public com.liferay.portal.service.LayoutBranchService getLayoutBranchService() {
295                    return layoutBranchService;
296            }
297    
298            /**
299             * Sets the layout branch remote service.
300             *
301             * @param layoutBranchService the layout branch remote service
302             */
303            public void setLayoutBranchService(
304                    com.liferay.portal.service.LayoutBranchService layoutBranchService) {
305                    this.layoutBranchService = layoutBranchService;
306            }
307    
308            /**
309             * Returns the layout branch persistence.
310             *
311             * @return the layout branch persistence
312             */
313            public LayoutBranchPersistence getLayoutBranchPersistence() {
314                    return layoutBranchPersistence;
315            }
316    
317            /**
318             * Sets the layout branch persistence.
319             *
320             * @param layoutBranchPersistence the layout branch persistence
321             */
322            public void setLayoutBranchPersistence(
323                    LayoutBranchPersistence layoutBranchPersistence) {
324                    this.layoutBranchPersistence = layoutBranchPersistence;
325            }
326    
327            /**
328             * Returns the layout set local service.
329             *
330             * @return the layout set local service
331             */
332            public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
333                    return layoutSetLocalService;
334            }
335    
336            /**
337             * Sets the layout set local service.
338             *
339             * @param layoutSetLocalService the layout set local service
340             */
341            public void setLayoutSetLocalService(
342                    com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
343                    this.layoutSetLocalService = layoutSetLocalService;
344            }
345    
346            /**
347             * Returns the layout set remote service.
348             *
349             * @return the layout set remote service
350             */
351            public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
352                    return layoutSetService;
353            }
354    
355            /**
356             * Sets the layout set remote service.
357             *
358             * @param layoutSetService the layout set remote service
359             */
360            public void setLayoutSetService(
361                    com.liferay.portal.service.LayoutSetService layoutSetService) {
362                    this.layoutSetService = layoutSetService;
363            }
364    
365            /**
366             * Returns the layout set persistence.
367             *
368             * @return the layout set persistence
369             */
370            public LayoutSetPersistence getLayoutSetPersistence() {
371                    return layoutSetPersistence;
372            }
373    
374            /**
375             * Sets the layout set persistence.
376             *
377             * @param layoutSetPersistence the layout set persistence
378             */
379            public void setLayoutSetPersistence(
380                    LayoutSetPersistence layoutSetPersistence) {
381                    this.layoutSetPersistence = layoutSetPersistence;
382            }
383    
384            /**
385             * Returns the layout set branch local service.
386             *
387             * @return the layout set branch local service
388             */
389            public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
390                    return layoutSetBranchLocalService;
391            }
392    
393            /**
394             * Sets the layout set branch local service.
395             *
396             * @param layoutSetBranchLocalService the layout set branch local service
397             */
398            public void setLayoutSetBranchLocalService(
399                    com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
400                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
401            }
402    
403            /**
404             * Returns the layout set branch remote service.
405             *
406             * @return the layout set branch remote service
407             */
408            public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
409                    return layoutSetBranchService;
410            }
411    
412            /**
413             * Sets the layout set branch remote service.
414             *
415             * @param layoutSetBranchService the layout set branch remote service
416             */
417            public void setLayoutSetBranchService(
418                    com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
419                    this.layoutSetBranchService = layoutSetBranchService;
420            }
421    
422            /**
423             * Returns the layout set branch persistence.
424             *
425             * @return the layout set branch persistence
426             */
427            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
428                    return layoutSetBranchPersistence;
429            }
430    
431            /**
432             * Sets the layout set branch persistence.
433             *
434             * @param layoutSetBranchPersistence the layout set branch persistence
435             */
436            public void setLayoutSetBranchPersistence(
437                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
438                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
439            }
440    
441            /**
442             * Returns the portlet preferences local service.
443             *
444             * @return the portlet preferences local service
445             */
446            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
447                    return portletPreferencesLocalService;
448            }
449    
450            /**
451             * Sets the portlet preferences local service.
452             *
453             * @param portletPreferencesLocalService the portlet preferences local service
454             */
455            public void setPortletPreferencesLocalService(
456                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
457                    this.portletPreferencesLocalService = portletPreferencesLocalService;
458            }
459    
460            /**
461             * Returns the portlet preferences remote service.
462             *
463             * @return the portlet preferences remote service
464             */
465            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
466                    return portletPreferencesService;
467            }
468    
469            /**
470             * Sets the portlet preferences remote service.
471             *
472             * @param portletPreferencesService the portlet preferences remote service
473             */
474            public void setPortletPreferencesService(
475                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
476                    this.portletPreferencesService = portletPreferencesService;
477            }
478    
479            /**
480             * Returns the portlet preferences persistence.
481             *
482             * @return the portlet preferences persistence
483             */
484            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
485                    return portletPreferencesPersistence;
486            }
487    
488            /**
489             * Sets the portlet preferences persistence.
490             *
491             * @param portletPreferencesPersistence the portlet preferences persistence
492             */
493            public void setPortletPreferencesPersistence(
494                    PortletPreferencesPersistence portletPreferencesPersistence) {
495                    this.portletPreferencesPersistence = portletPreferencesPersistence;
496            }
497    
498            /**
499             * Returns the portlet preferences finder.
500             *
501             * @return the portlet preferences finder
502             */
503            public PortletPreferencesFinder getPortletPreferencesFinder() {
504                    return portletPreferencesFinder;
505            }
506    
507            /**
508             * Sets the portlet preferences finder.
509             *
510             * @param portletPreferencesFinder the portlet preferences finder
511             */
512            public void setPortletPreferencesFinder(
513                    PortletPreferencesFinder portletPreferencesFinder) {
514                    this.portletPreferencesFinder = portletPreferencesFinder;
515            }
516    
517            /**
518             * Returns the recent layout revision local service.
519             *
520             * @return the recent layout revision local service
521             */
522            public com.liferay.portal.service.RecentLayoutRevisionLocalService getRecentLayoutRevisionLocalService() {
523                    return recentLayoutRevisionLocalService;
524            }
525    
526            /**
527             * Sets the recent layout revision local service.
528             *
529             * @param recentLayoutRevisionLocalService the recent layout revision local service
530             */
531            public void setRecentLayoutRevisionLocalService(
532                    com.liferay.portal.service.RecentLayoutRevisionLocalService recentLayoutRevisionLocalService) {
533                    this.recentLayoutRevisionLocalService = recentLayoutRevisionLocalService;
534            }
535    
536            /**
537             * Returns the recent layout revision persistence.
538             *
539             * @return the recent layout revision persistence
540             */
541            public RecentLayoutRevisionPersistence getRecentLayoutRevisionPersistence() {
542                    return recentLayoutRevisionPersistence;
543            }
544    
545            /**
546             * Sets the recent layout revision persistence.
547             *
548             * @param recentLayoutRevisionPersistence the recent layout revision persistence
549             */
550            public void setRecentLayoutRevisionPersistence(
551                    RecentLayoutRevisionPersistence recentLayoutRevisionPersistence) {
552                    this.recentLayoutRevisionPersistence = recentLayoutRevisionPersistence;
553            }
554    
555            /**
556             * Returns the resource local service.
557             *
558             * @return the resource local service
559             */
560            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
561                    return resourceLocalService;
562            }
563    
564            /**
565             * Sets the resource local service.
566             *
567             * @param resourceLocalService the resource local service
568             */
569            public void setResourceLocalService(
570                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
571                    this.resourceLocalService = resourceLocalService;
572            }
573    
574            /**
575             * Returns the user local service.
576             *
577             * @return the user local service
578             */
579            public com.liferay.portal.service.UserLocalService getUserLocalService() {
580                    return userLocalService;
581            }
582    
583            /**
584             * Sets the user local service.
585             *
586             * @param userLocalService the user local service
587             */
588            public void setUserLocalService(
589                    com.liferay.portal.service.UserLocalService userLocalService) {
590                    this.userLocalService = userLocalService;
591            }
592    
593            /**
594             * Returns the user remote service.
595             *
596             * @return the user remote service
597             */
598            public com.liferay.portal.service.UserService getUserService() {
599                    return userService;
600            }
601    
602            /**
603             * Sets the user remote service.
604             *
605             * @param userService the user remote service
606             */
607            public void setUserService(
608                    com.liferay.portal.service.UserService userService) {
609                    this.userService = userService;
610            }
611    
612            /**
613             * Returns the user persistence.
614             *
615             * @return the user persistence
616             */
617            public UserPersistence getUserPersistence() {
618                    return userPersistence;
619            }
620    
621            /**
622             * Sets the user persistence.
623             *
624             * @param userPersistence the user persistence
625             */
626            public void setUserPersistence(UserPersistence userPersistence) {
627                    this.userPersistence = userPersistence;
628            }
629    
630            /**
631             * Returns the user finder.
632             *
633             * @return the user finder
634             */
635            public UserFinder getUserFinder() {
636                    return userFinder;
637            }
638    
639            /**
640             * Sets the user finder.
641             *
642             * @param userFinder the user finder
643             */
644            public void setUserFinder(UserFinder userFinder) {
645                    this.userFinder = userFinder;
646            }
647    
648            /**
649             * Returns the workflow instance link local service.
650             *
651             * @return the workflow instance link local service
652             */
653            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
654                    return workflowInstanceLinkLocalService;
655            }
656    
657            /**
658             * Sets the workflow instance link local service.
659             *
660             * @param workflowInstanceLinkLocalService the workflow instance link local service
661             */
662            public void setWorkflowInstanceLinkLocalService(
663                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
664                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
665            }
666    
667            /**
668             * Returns the workflow instance link persistence.
669             *
670             * @return the workflow instance link persistence
671             */
672            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
673                    return workflowInstanceLinkPersistence;
674            }
675    
676            /**
677             * Sets the workflow instance link persistence.
678             *
679             * @param workflowInstanceLinkPersistence the workflow instance link persistence
680             */
681            public void setWorkflowInstanceLinkPersistence(
682                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
683                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
684            }
685    
686            public void afterPropertiesSet() {
687            }
688    
689            public void destroy() {
690            }
691    
692            /**
693             * Returns the OSGi service identifier.
694             *
695             * @return the OSGi service identifier
696             */
697            @Override
698            public String getOSGiServiceIdentifier() {
699                    return LayoutRevisionService.class.getName();
700            }
701    
702            protected Class<?> getModelClass() {
703                    return LayoutRevision.class;
704            }
705    
706            protected String getModelClassName() {
707                    return LayoutRevision.class.getName();
708            }
709    
710            /**
711             * Performs a SQL query.
712             *
713             * @param sql the sql query
714             */
715            protected void runSQL(String sql) {
716                    try {
717                            DataSource dataSource = layoutRevisionPersistence.getDataSource();
718    
719                            DB db = DBManagerUtil.getDB();
720    
721                            sql = db.buildSQL(sql);
722                            sql = PortalUtil.transformSQL(sql);
723    
724                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
725                                            sql, new int[0]);
726    
727                            sqlUpdate.update();
728                    }
729                    catch (Exception e) {
730                            throw new SystemException(e);
731                    }
732            }
733    
734            @BeanReference(type = com.liferay.portal.service.LayoutRevisionLocalService.class)
735            protected com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService;
736            @BeanReference(type = com.liferay.portal.service.LayoutRevisionService.class)
737            protected LayoutRevisionService layoutRevisionService;
738            @BeanReference(type = LayoutRevisionPersistence.class)
739            protected LayoutRevisionPersistence layoutRevisionPersistence;
740            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
741            protected com.liferay.counter.service.CounterLocalService counterLocalService;
742            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
743            protected com.liferay.portal.service.ImageLocalService imageLocalService;
744            @BeanReference(type = com.liferay.portal.service.ImageService.class)
745            protected com.liferay.portal.service.ImageService imageService;
746            @BeanReference(type = ImagePersistence.class)
747            protected ImagePersistence imagePersistence;
748            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
749            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
750            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
751            protected com.liferay.portal.service.LayoutService layoutService;
752            @BeanReference(type = LayoutPersistence.class)
753            protected LayoutPersistence layoutPersistence;
754            @BeanReference(type = LayoutFinder.class)
755            protected LayoutFinder layoutFinder;
756            @BeanReference(type = com.liferay.portal.service.LayoutBranchLocalService.class)
757            protected com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService;
758            @BeanReference(type = com.liferay.portal.service.LayoutBranchService.class)
759            protected com.liferay.portal.service.LayoutBranchService layoutBranchService;
760            @BeanReference(type = LayoutBranchPersistence.class)
761            protected LayoutBranchPersistence layoutBranchPersistence;
762            @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
763            protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
764            @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
765            protected com.liferay.portal.service.LayoutSetService layoutSetService;
766            @BeanReference(type = LayoutSetPersistence.class)
767            protected LayoutSetPersistence layoutSetPersistence;
768            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
769            protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
770            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
771            protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
772            @BeanReference(type = LayoutSetBranchPersistence.class)
773            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
774            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
775            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
776            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
777            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
778            @BeanReference(type = PortletPreferencesPersistence.class)
779            protected PortletPreferencesPersistence portletPreferencesPersistence;
780            @BeanReference(type = PortletPreferencesFinder.class)
781            protected PortletPreferencesFinder portletPreferencesFinder;
782            @BeanReference(type = com.liferay.portal.service.RecentLayoutRevisionLocalService.class)
783            protected com.liferay.portal.service.RecentLayoutRevisionLocalService recentLayoutRevisionLocalService;
784            @BeanReference(type = RecentLayoutRevisionPersistence.class)
785            protected RecentLayoutRevisionPersistence recentLayoutRevisionPersistence;
786            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
787            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
788            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
789            protected com.liferay.portal.service.UserLocalService userLocalService;
790            @BeanReference(type = com.liferay.portal.service.UserService.class)
791            protected com.liferay.portal.service.UserService userService;
792            @BeanReference(type = UserPersistence.class)
793            protected UserPersistence userPersistence;
794            @BeanReference(type = UserFinder.class)
795            protected UserFinder userFinder;
796            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
797            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
798            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
799            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
800    }