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.portal.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.dao.orm.DynamicQuery;
022    import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023    import com.liferay.portal.kernel.dao.orm.Projection;
024    import com.liferay.portal.kernel.exception.PortalException;
025    import com.liferay.portal.kernel.exception.SystemException;
026    import com.liferay.portal.kernel.search.Indexable;
027    import com.liferay.portal.kernel.search.IndexableType;
028    import com.liferay.portal.kernel.util.OrderByComparator;
029    import com.liferay.portal.model.LayoutPrototype;
030    import com.liferay.portal.model.PersistedModel;
031    import com.liferay.portal.service.BaseLocalServiceImpl;
032    import com.liferay.portal.service.LayoutPrototypeLocalService;
033    import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
034    import com.liferay.portal.service.persistence.AccountPersistence;
035    import com.liferay.portal.service.persistence.AddressPersistence;
036    import com.liferay.portal.service.persistence.BackgroundTaskPersistence;
037    import com.liferay.portal.service.persistence.BrowserTrackerPersistence;
038    import com.liferay.portal.service.persistence.ClassNamePersistence;
039    import com.liferay.portal.service.persistence.ClusterGroupPersistence;
040    import com.liferay.portal.service.persistence.CompanyPersistence;
041    import com.liferay.portal.service.persistence.ContactPersistence;
042    import com.liferay.portal.service.persistence.CountryPersistence;
043    import com.liferay.portal.service.persistence.EmailAddressPersistence;
044    import com.liferay.portal.service.persistence.GroupFinder;
045    import com.liferay.portal.service.persistence.GroupPersistence;
046    import com.liferay.portal.service.persistence.ImagePersistence;
047    import com.liferay.portal.service.persistence.LayoutBranchPersistence;
048    import com.liferay.portal.service.persistence.LayoutFinder;
049    import com.liferay.portal.service.persistence.LayoutFriendlyURLPersistence;
050    import com.liferay.portal.service.persistence.LayoutPersistence;
051    import com.liferay.portal.service.persistence.LayoutPrototypePersistence;
052    import com.liferay.portal.service.persistence.LayoutRevisionPersistence;
053    import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
054    import com.liferay.portal.service.persistence.LayoutSetPersistence;
055    import com.liferay.portal.service.persistence.LayoutSetPrototypePersistence;
056    import com.liferay.portal.service.persistence.ListTypePersistence;
057    import com.liferay.portal.service.persistence.LockFinder;
058    import com.liferay.portal.service.persistence.LockPersistence;
059    import com.liferay.portal.service.persistence.MembershipRequestPersistence;
060    import com.liferay.portal.service.persistence.OrgGroupRolePersistence;
061    import com.liferay.portal.service.persistence.OrgLaborPersistence;
062    import com.liferay.portal.service.persistence.OrganizationFinder;
063    import com.liferay.portal.service.persistence.OrganizationPersistence;
064    import com.liferay.portal.service.persistence.PasswordPolicyFinder;
065    import com.liferay.portal.service.persistence.PasswordPolicyPersistence;
066    import com.liferay.portal.service.persistence.PasswordPolicyRelPersistence;
067    import com.liferay.portal.service.persistence.PasswordTrackerPersistence;
068    import com.liferay.portal.service.persistence.PhonePersistence;
069    import com.liferay.portal.service.persistence.PluginSettingPersistence;
070    import com.liferay.portal.service.persistence.PortalPreferencesPersistence;
071    import com.liferay.portal.service.persistence.PortletItemPersistence;
072    import com.liferay.portal.service.persistence.PortletPersistence;
073    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
074    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
075    import com.liferay.portal.service.persistence.RegionPersistence;
076    import com.liferay.portal.service.persistence.ReleasePersistence;
077    import com.liferay.portal.service.persistence.RepositoryEntryPersistence;
078    import com.liferay.portal.service.persistence.RepositoryPersistence;
079    import com.liferay.portal.service.persistence.ResourceActionPersistence;
080    import com.liferay.portal.service.persistence.ResourceBlockFinder;
081    import com.liferay.portal.service.persistence.ResourceBlockPermissionPersistence;
082    import com.liferay.portal.service.persistence.ResourceBlockPersistence;
083    import com.liferay.portal.service.persistence.ResourcePermissionFinder;
084    import com.liferay.portal.service.persistence.ResourcePermissionPersistence;
085    import com.liferay.portal.service.persistence.ResourceTypePermissionFinder;
086    import com.liferay.portal.service.persistence.ResourceTypePermissionPersistence;
087    import com.liferay.portal.service.persistence.RoleFinder;
088    import com.liferay.portal.service.persistence.RolePersistence;
089    import com.liferay.portal.service.persistence.ServiceComponentPersistence;
090    import com.liferay.portal.service.persistence.ShardPersistence;
091    import com.liferay.portal.service.persistence.SubscriptionPersistence;
092    import com.liferay.portal.service.persistence.SystemEventPersistence;
093    import com.liferay.portal.service.persistence.TeamFinder;
094    import com.liferay.portal.service.persistence.TeamPersistence;
095    import com.liferay.portal.service.persistence.TicketPersistence;
096    import com.liferay.portal.service.persistence.UserFinder;
097    import com.liferay.portal.service.persistence.UserGroupFinder;
098    import com.liferay.portal.service.persistence.UserGroupGroupRolePersistence;
099    import com.liferay.portal.service.persistence.UserGroupPersistence;
100    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
101    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
102    import com.liferay.portal.service.persistence.UserIdMapperPersistence;
103    import com.liferay.portal.service.persistence.UserNotificationDeliveryPersistence;
104    import com.liferay.portal.service.persistence.UserNotificationEventPersistence;
105    import com.liferay.portal.service.persistence.UserPersistence;
106    import com.liferay.portal.service.persistence.UserTrackerPathPersistence;
107    import com.liferay.portal.service.persistence.UserTrackerPersistence;
108    import com.liferay.portal.service.persistence.VirtualHostPersistence;
109    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
110    import com.liferay.portal.service.persistence.WebsitePersistence;
111    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
112    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
113    
114    import java.io.Serializable;
115    
116    import java.util.List;
117    
118    import javax.sql.DataSource;
119    
120    /**
121     * Provides the base implementation for the layout prototype local service.
122     *
123     * <p>
124     * 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.LayoutPrototypeLocalServiceImpl}.
125     * </p>
126     *
127     * @author Brian Wing Shun Chan
128     * @see com.liferay.portal.service.impl.LayoutPrototypeLocalServiceImpl
129     * @see com.liferay.portal.service.LayoutPrototypeLocalServiceUtil
130     * @generated
131     */
132    public abstract class LayoutPrototypeLocalServiceBaseImpl
133            extends BaseLocalServiceImpl implements LayoutPrototypeLocalService,
134                    IdentifiableBean {
135            /*
136             * NOTE FOR DEVELOPERS:
137             *
138             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.LayoutPrototypeLocalServiceUtil} to access the layout prototype local service.
139             */
140    
141            /**
142             * Adds the layout prototype to the database. Also notifies the appropriate model listeners.
143             *
144             * @param layoutPrototype the layout prototype
145             * @return the layout prototype that was added
146             * @throws SystemException if a system exception occurred
147             */
148            @Indexable(type = IndexableType.REINDEX)
149            @Override
150            public LayoutPrototype addLayoutPrototype(LayoutPrototype layoutPrototype)
151                    throws SystemException {
152                    layoutPrototype.setNew(true);
153    
154                    return layoutPrototypePersistence.update(layoutPrototype);
155            }
156    
157            /**
158             * Creates a new layout prototype with the primary key. Does not add the layout prototype to the database.
159             *
160             * @param layoutPrototypeId the primary key for the new layout prototype
161             * @return the new layout prototype
162             */
163            @Override
164            public LayoutPrototype createLayoutPrototype(long layoutPrototypeId) {
165                    return layoutPrototypePersistence.create(layoutPrototypeId);
166            }
167    
168            /**
169             * Deletes the layout prototype with the primary key from the database. Also notifies the appropriate model listeners.
170             *
171             * @param layoutPrototypeId the primary key of the layout prototype
172             * @return the layout prototype that was removed
173             * @throws PortalException if a layout prototype with the primary key could not be found
174             * @throws SystemException if a system exception occurred
175             */
176            @Indexable(type = IndexableType.DELETE)
177            @Override
178            public LayoutPrototype deleteLayoutPrototype(long layoutPrototypeId)
179                    throws PortalException, SystemException {
180                    return layoutPrototypePersistence.remove(layoutPrototypeId);
181            }
182    
183            /**
184             * Deletes the layout prototype from the database. Also notifies the appropriate model listeners.
185             *
186             * @param layoutPrototype the layout prototype
187             * @return the layout prototype that was removed
188             * @throws PortalException
189             * @throws SystemException if a system exception occurred
190             */
191            @Indexable(type = IndexableType.DELETE)
192            @Override
193            public LayoutPrototype deleteLayoutPrototype(
194                    LayoutPrototype layoutPrototype)
195                    throws PortalException, SystemException {
196                    return layoutPrototypePersistence.remove(layoutPrototype);
197            }
198    
199            @Override
200            public DynamicQuery dynamicQuery() {
201                    Class<?> clazz = getClass();
202    
203                    return DynamicQueryFactoryUtil.forClass(LayoutPrototype.class,
204                            clazz.getClassLoader());
205            }
206    
207            /**
208             * Performs a dynamic query on the database and returns the matching rows.
209             *
210             * @param dynamicQuery the dynamic query
211             * @return the matching rows
212             * @throws SystemException if a system exception occurred
213             */
214            @Override
215            @SuppressWarnings("rawtypes")
216            public List dynamicQuery(DynamicQuery dynamicQuery)
217                    throws SystemException {
218                    return layoutPrototypePersistence.findWithDynamicQuery(dynamicQuery);
219            }
220    
221            /**
222             * Performs a dynamic query on the database and returns a range of the matching rows.
223             *
224             * <p>
225             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutPrototypeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
226             * </p>
227             *
228             * @param dynamicQuery the dynamic query
229             * @param start the lower bound of the range of model instances
230             * @param end the upper bound of the range of model instances (not inclusive)
231             * @return the range of matching rows
232             * @throws SystemException if a system exception occurred
233             */
234            @Override
235            @SuppressWarnings("rawtypes")
236            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
237                    throws SystemException {
238                    return layoutPrototypePersistence.findWithDynamicQuery(dynamicQuery,
239                            start, end);
240            }
241    
242            /**
243             * Performs a dynamic query on the database and returns an ordered range of the matching rows.
244             *
245             * <p>
246             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutPrototypeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
247             * </p>
248             *
249             * @param dynamicQuery the dynamic query
250             * @param start the lower bound of the range of model instances
251             * @param end the upper bound of the range of model instances (not inclusive)
252             * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
253             * @return the ordered range of matching rows
254             * @throws SystemException if a system exception occurred
255             */
256            @Override
257            @SuppressWarnings("rawtypes")
258            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
259                    OrderByComparator orderByComparator) throws SystemException {
260                    return layoutPrototypePersistence.findWithDynamicQuery(dynamicQuery,
261                            start, end, orderByComparator);
262            }
263    
264            /**
265             * Returns the number of rows that match the dynamic query.
266             *
267             * @param dynamicQuery the dynamic query
268             * @return the number of rows that match the dynamic query
269             * @throws SystemException if a system exception occurred
270             */
271            @Override
272            public long dynamicQueryCount(DynamicQuery dynamicQuery)
273                    throws SystemException {
274                    return layoutPrototypePersistence.countWithDynamicQuery(dynamicQuery);
275            }
276    
277            /**
278             * Returns the number of rows that match the dynamic query.
279             *
280             * @param dynamicQuery the dynamic query
281             * @param projection the projection to apply to the query
282             * @return the number of rows that match the dynamic query
283             * @throws SystemException if a system exception occurred
284             */
285            @Override
286            public long dynamicQueryCount(DynamicQuery dynamicQuery,
287                    Projection projection) throws SystemException {
288                    return layoutPrototypePersistence.countWithDynamicQuery(dynamicQuery,
289                            projection);
290            }
291    
292            @Override
293            public LayoutPrototype fetchLayoutPrototype(long layoutPrototypeId)
294                    throws SystemException {
295                    return layoutPrototypePersistence.fetchByPrimaryKey(layoutPrototypeId);
296            }
297    
298            /**
299             * Returns the layout prototype with the matching UUID and company.
300             *
301             * @param uuid the layout prototype's UUID
302             * @param  companyId the primary key of the company
303             * @return the matching layout prototype, or <code>null</code> if a matching layout prototype could not be found
304             * @throws SystemException if a system exception occurred
305             */
306            @Override
307            public LayoutPrototype fetchLayoutPrototypeByUuidAndCompanyId(String uuid,
308                    long companyId) throws SystemException {
309                    return layoutPrototypePersistence.fetchByUuid_C_First(uuid, companyId,
310                            null);
311            }
312    
313            /**
314             * Returns the layout prototype with the primary key.
315             *
316             * @param layoutPrototypeId the primary key of the layout prototype
317             * @return the layout prototype
318             * @throws PortalException if a layout prototype with the primary key could not be found
319             * @throws SystemException if a system exception occurred
320             */
321            @Override
322            public LayoutPrototype getLayoutPrototype(long layoutPrototypeId)
323                    throws PortalException, SystemException {
324                    return layoutPrototypePersistence.findByPrimaryKey(layoutPrototypeId);
325            }
326    
327            @Override
328            public PersistedModel getPersistedModel(Serializable primaryKeyObj)
329                    throws PortalException, SystemException {
330                    return layoutPrototypePersistence.findByPrimaryKey(primaryKeyObj);
331            }
332    
333            /**
334             * Returns the layout prototype with the matching UUID and company.
335             *
336             * @param uuid the layout prototype's UUID
337             * @param  companyId the primary key of the company
338             * @return the matching layout prototype
339             * @throws PortalException if a matching layout prototype could not be found
340             * @throws SystemException if a system exception occurred
341             */
342            @Override
343            public LayoutPrototype getLayoutPrototypeByUuidAndCompanyId(String uuid,
344                    long companyId) throws PortalException, SystemException {
345                    return layoutPrototypePersistence.findByUuid_C_First(uuid, companyId,
346                            null);
347            }
348    
349            /**
350             * Returns a range of all the layout prototypes.
351             *
352             * <p>
353             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.LayoutPrototypeModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
354             * </p>
355             *
356             * @param start the lower bound of the range of layout prototypes
357             * @param end the upper bound of the range of layout prototypes (not inclusive)
358             * @return the range of layout prototypes
359             * @throws SystemException if a system exception occurred
360             */
361            @Override
362            public List<LayoutPrototype> getLayoutPrototypes(int start, int end)
363                    throws SystemException {
364                    return layoutPrototypePersistence.findAll(start, end);
365            }
366    
367            /**
368             * Returns the number of layout prototypes.
369             *
370             * @return the number of layout prototypes
371             * @throws SystemException if a system exception occurred
372             */
373            @Override
374            public int getLayoutPrototypesCount() throws SystemException {
375                    return layoutPrototypePersistence.countAll();
376            }
377    
378            /**
379             * Updates the layout prototype in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
380             *
381             * @param layoutPrototype the layout prototype
382             * @return the layout prototype that was updated
383             * @throws SystemException if a system exception occurred
384             */
385            @Indexable(type = IndexableType.REINDEX)
386            @Override
387            public LayoutPrototype updateLayoutPrototype(
388                    LayoutPrototype layoutPrototype) throws SystemException {
389                    return layoutPrototypePersistence.update(layoutPrototype);
390            }
391    
392            /**
393             * Returns the account local service.
394             *
395             * @return the account local service
396             */
397            public com.liferay.portal.service.AccountLocalService getAccountLocalService() {
398                    return accountLocalService;
399            }
400    
401            /**
402             * Sets the account local service.
403             *
404             * @param accountLocalService the account local service
405             */
406            public void setAccountLocalService(
407                    com.liferay.portal.service.AccountLocalService accountLocalService) {
408                    this.accountLocalService = accountLocalService;
409            }
410    
411            /**
412             * Returns the account remote service.
413             *
414             * @return the account remote service
415             */
416            public com.liferay.portal.service.AccountService getAccountService() {
417                    return accountService;
418            }
419    
420            /**
421             * Sets the account remote service.
422             *
423             * @param accountService the account remote service
424             */
425            public void setAccountService(
426                    com.liferay.portal.service.AccountService accountService) {
427                    this.accountService = accountService;
428            }
429    
430            /**
431             * Returns the account persistence.
432             *
433             * @return the account persistence
434             */
435            public AccountPersistence getAccountPersistence() {
436                    return accountPersistence;
437            }
438    
439            /**
440             * Sets the account persistence.
441             *
442             * @param accountPersistence the account persistence
443             */
444            public void setAccountPersistence(AccountPersistence accountPersistence) {
445                    this.accountPersistence = accountPersistence;
446            }
447    
448            /**
449             * Returns the address local service.
450             *
451             * @return the address local service
452             */
453            public com.liferay.portal.service.AddressLocalService getAddressLocalService() {
454                    return addressLocalService;
455            }
456    
457            /**
458             * Sets the address local service.
459             *
460             * @param addressLocalService the address local service
461             */
462            public void setAddressLocalService(
463                    com.liferay.portal.service.AddressLocalService addressLocalService) {
464                    this.addressLocalService = addressLocalService;
465            }
466    
467            /**
468             * Returns the address remote service.
469             *
470             * @return the address remote service
471             */
472            public com.liferay.portal.service.AddressService getAddressService() {
473                    return addressService;
474            }
475    
476            /**
477             * Sets the address remote service.
478             *
479             * @param addressService the address remote service
480             */
481            public void setAddressService(
482                    com.liferay.portal.service.AddressService addressService) {
483                    this.addressService = addressService;
484            }
485    
486            /**
487             * Returns the address persistence.
488             *
489             * @return the address persistence
490             */
491            public AddressPersistence getAddressPersistence() {
492                    return addressPersistence;
493            }
494    
495            /**
496             * Sets the address persistence.
497             *
498             * @param addressPersistence the address persistence
499             */
500            public void setAddressPersistence(AddressPersistence addressPersistence) {
501                    this.addressPersistence = addressPersistence;
502            }
503    
504            /**
505             * Returns the background task local service.
506             *
507             * @return the background task local service
508             */
509            public com.liferay.portal.service.BackgroundTaskLocalService getBackgroundTaskLocalService() {
510                    return backgroundTaskLocalService;
511            }
512    
513            /**
514             * Sets the background task local service.
515             *
516             * @param backgroundTaskLocalService the background task local service
517             */
518            public void setBackgroundTaskLocalService(
519                    com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService) {
520                    this.backgroundTaskLocalService = backgroundTaskLocalService;
521            }
522    
523            /**
524             * Returns the background task remote service.
525             *
526             * @return the background task remote service
527             */
528            public com.liferay.portal.service.BackgroundTaskService getBackgroundTaskService() {
529                    return backgroundTaskService;
530            }
531    
532            /**
533             * Sets the background task remote service.
534             *
535             * @param backgroundTaskService the background task remote service
536             */
537            public void setBackgroundTaskService(
538                    com.liferay.portal.service.BackgroundTaskService backgroundTaskService) {
539                    this.backgroundTaskService = backgroundTaskService;
540            }
541    
542            /**
543             * Returns the background task persistence.
544             *
545             * @return the background task persistence
546             */
547            public BackgroundTaskPersistence getBackgroundTaskPersistence() {
548                    return backgroundTaskPersistence;
549            }
550    
551            /**
552             * Sets the background task persistence.
553             *
554             * @param backgroundTaskPersistence the background task persistence
555             */
556            public void setBackgroundTaskPersistence(
557                    BackgroundTaskPersistence backgroundTaskPersistence) {
558                    this.backgroundTaskPersistence = backgroundTaskPersistence;
559            }
560    
561            /**
562             * Returns the browser tracker local service.
563             *
564             * @return the browser tracker local service
565             */
566            public com.liferay.portal.service.BrowserTrackerLocalService getBrowserTrackerLocalService() {
567                    return browserTrackerLocalService;
568            }
569    
570            /**
571             * Sets the browser tracker local service.
572             *
573             * @param browserTrackerLocalService the browser tracker local service
574             */
575            public void setBrowserTrackerLocalService(
576                    com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService) {
577                    this.browserTrackerLocalService = browserTrackerLocalService;
578            }
579    
580            /**
581             * Returns the browser tracker persistence.
582             *
583             * @return the browser tracker persistence
584             */
585            public BrowserTrackerPersistence getBrowserTrackerPersistence() {
586                    return browserTrackerPersistence;
587            }
588    
589            /**
590             * Sets the browser tracker persistence.
591             *
592             * @param browserTrackerPersistence the browser tracker persistence
593             */
594            public void setBrowserTrackerPersistence(
595                    BrowserTrackerPersistence browserTrackerPersistence) {
596                    this.browserTrackerPersistence = browserTrackerPersistence;
597            }
598    
599            /**
600             * Returns the class name local service.
601             *
602             * @return the class name local service
603             */
604            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
605                    return classNameLocalService;
606            }
607    
608            /**
609             * Sets the class name local service.
610             *
611             * @param classNameLocalService the class name local service
612             */
613            public void setClassNameLocalService(
614                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
615                    this.classNameLocalService = classNameLocalService;
616            }
617    
618            /**
619             * Returns the class name remote service.
620             *
621             * @return the class name remote service
622             */
623            public com.liferay.portal.service.ClassNameService getClassNameService() {
624                    return classNameService;
625            }
626    
627            /**
628             * Sets the class name remote service.
629             *
630             * @param classNameService the class name remote service
631             */
632            public void setClassNameService(
633                    com.liferay.portal.service.ClassNameService classNameService) {
634                    this.classNameService = classNameService;
635            }
636    
637            /**
638             * Returns the class name persistence.
639             *
640             * @return the class name persistence
641             */
642            public ClassNamePersistence getClassNamePersistence() {
643                    return classNamePersistence;
644            }
645    
646            /**
647             * Sets the class name persistence.
648             *
649             * @param classNamePersistence the class name persistence
650             */
651            public void setClassNamePersistence(
652                    ClassNamePersistence classNamePersistence) {
653                    this.classNamePersistence = classNamePersistence;
654            }
655    
656            /**
657             * Returns the cluster group local service.
658             *
659             * @return the cluster group local service
660             */
661            public com.liferay.portal.service.ClusterGroupLocalService getClusterGroupLocalService() {
662                    return clusterGroupLocalService;
663            }
664    
665            /**
666             * Sets the cluster group local service.
667             *
668             * @param clusterGroupLocalService the cluster group local service
669             */
670            public void setClusterGroupLocalService(
671                    com.liferay.portal.service.ClusterGroupLocalService clusterGroupLocalService) {
672                    this.clusterGroupLocalService = clusterGroupLocalService;
673            }
674    
675            /**
676             * Returns the cluster group persistence.
677             *
678             * @return the cluster group persistence
679             */
680            public ClusterGroupPersistence getClusterGroupPersistence() {
681                    return clusterGroupPersistence;
682            }
683    
684            /**
685             * Sets the cluster group persistence.
686             *
687             * @param clusterGroupPersistence the cluster group persistence
688             */
689            public void setClusterGroupPersistence(
690                    ClusterGroupPersistence clusterGroupPersistence) {
691                    this.clusterGroupPersistence = clusterGroupPersistence;
692            }
693    
694            /**
695             * Returns the c m i s repository local service.
696             *
697             * @return the c m i s repository local service
698             */
699            public com.liferay.portal.service.CMISRepositoryLocalService getCMISRepositoryLocalService() {
700                    return cmisRepositoryLocalService;
701            }
702    
703            /**
704             * Sets the c m i s repository local service.
705             *
706             * @param cmisRepositoryLocalService the c m i s repository local service
707             */
708            public void setCMISRepositoryLocalService(
709                    com.liferay.portal.service.CMISRepositoryLocalService cmisRepositoryLocalService) {
710                    this.cmisRepositoryLocalService = cmisRepositoryLocalService;
711            }
712    
713            /**
714             * Returns the company local service.
715             *
716             * @return the company local service
717             */
718            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
719                    return companyLocalService;
720            }
721    
722            /**
723             * Sets the company local service.
724             *
725             * @param companyLocalService the company local service
726             */
727            public void setCompanyLocalService(
728                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
729                    this.companyLocalService = companyLocalService;
730            }
731    
732            /**
733             * Returns the company remote service.
734             *
735             * @return the company remote service
736             */
737            public com.liferay.portal.service.CompanyService getCompanyService() {
738                    return companyService;
739            }
740    
741            /**
742             * Sets the company remote service.
743             *
744             * @param companyService the company remote service
745             */
746            public void setCompanyService(
747                    com.liferay.portal.service.CompanyService companyService) {
748                    this.companyService = companyService;
749            }
750    
751            /**
752             * Returns the company persistence.
753             *
754             * @return the company persistence
755             */
756            public CompanyPersistence getCompanyPersistence() {
757                    return companyPersistence;
758            }
759    
760            /**
761             * Sets the company persistence.
762             *
763             * @param companyPersistence the company persistence
764             */
765            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
766                    this.companyPersistence = companyPersistence;
767            }
768    
769            /**
770             * Returns the contact local service.
771             *
772             * @return the contact local service
773             */
774            public com.liferay.portal.service.ContactLocalService getContactLocalService() {
775                    return contactLocalService;
776            }
777    
778            /**
779             * Sets the contact local service.
780             *
781             * @param contactLocalService the contact local service
782             */
783            public void setContactLocalService(
784                    com.liferay.portal.service.ContactLocalService contactLocalService) {
785                    this.contactLocalService = contactLocalService;
786            }
787    
788            /**
789             * Returns the contact remote service.
790             *
791             * @return the contact remote service
792             */
793            public com.liferay.portal.service.ContactService getContactService() {
794                    return contactService;
795            }
796    
797            /**
798             * Sets the contact remote service.
799             *
800             * @param contactService the contact remote service
801             */
802            public void setContactService(
803                    com.liferay.portal.service.ContactService contactService) {
804                    this.contactService = contactService;
805            }
806    
807            /**
808             * Returns the contact persistence.
809             *
810             * @return the contact persistence
811             */
812            public ContactPersistence getContactPersistence() {
813                    return contactPersistence;
814            }
815    
816            /**
817             * Sets the contact persistence.
818             *
819             * @param contactPersistence the contact persistence
820             */
821            public void setContactPersistence(ContactPersistence contactPersistence) {
822                    this.contactPersistence = contactPersistence;
823            }
824    
825            /**
826             * Returns the country remote service.
827             *
828             * @return the country remote service
829             */
830            public com.liferay.portal.service.CountryService getCountryService() {
831                    return countryService;
832            }
833    
834            /**
835             * Sets the country remote service.
836             *
837             * @param countryService the country remote service
838             */
839            public void setCountryService(
840                    com.liferay.portal.service.CountryService countryService) {
841                    this.countryService = countryService;
842            }
843    
844            /**
845             * Returns the country persistence.
846             *
847             * @return the country persistence
848             */
849            public CountryPersistence getCountryPersistence() {
850                    return countryPersistence;
851            }
852    
853            /**
854             * Sets the country persistence.
855             *
856             * @param countryPersistence the country persistence
857             */
858            public void setCountryPersistence(CountryPersistence countryPersistence) {
859                    this.countryPersistence = countryPersistence;
860            }
861    
862            /**
863             * Returns the email address local service.
864             *
865             * @return the email address local service
866             */
867            public com.liferay.portal.service.EmailAddressLocalService getEmailAddressLocalService() {
868                    return emailAddressLocalService;
869            }
870    
871            /**
872             * Sets the email address local service.
873             *
874             * @param emailAddressLocalService the email address local service
875             */
876            public void setEmailAddressLocalService(
877                    com.liferay.portal.service.EmailAddressLocalService emailAddressLocalService) {
878                    this.emailAddressLocalService = emailAddressLocalService;
879            }
880    
881            /**
882             * Returns the email address remote service.
883             *
884             * @return the email address remote service
885             */
886            public com.liferay.portal.service.EmailAddressService getEmailAddressService() {
887                    return emailAddressService;
888            }
889    
890            /**
891             * Sets the email address remote service.
892             *
893             * @param emailAddressService the email address remote service
894             */
895            public void setEmailAddressService(
896                    com.liferay.portal.service.EmailAddressService emailAddressService) {
897                    this.emailAddressService = emailAddressService;
898            }
899    
900            /**
901             * Returns the email address persistence.
902             *
903             * @return the email address persistence
904             */
905            public EmailAddressPersistence getEmailAddressPersistence() {
906                    return emailAddressPersistence;
907            }
908    
909            /**
910             * Sets the email address persistence.
911             *
912             * @param emailAddressPersistence the email address persistence
913             */
914            public void setEmailAddressPersistence(
915                    EmailAddressPersistence emailAddressPersistence) {
916                    this.emailAddressPersistence = emailAddressPersistence;
917            }
918    
919            /**
920             * Returns the group local service.
921             *
922             * @return the group local service
923             */
924            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
925                    return groupLocalService;
926            }
927    
928            /**
929             * Sets the group local service.
930             *
931             * @param groupLocalService the group local service
932             */
933            public void setGroupLocalService(
934                    com.liferay.portal.service.GroupLocalService groupLocalService) {
935                    this.groupLocalService = groupLocalService;
936            }
937    
938            /**
939             * Returns the group remote service.
940             *
941             * @return the group remote service
942             */
943            public com.liferay.portal.service.GroupService getGroupService() {
944                    return groupService;
945            }
946    
947            /**
948             * Sets the group remote service.
949             *
950             * @param groupService the group remote service
951             */
952            public void setGroupService(
953                    com.liferay.portal.service.GroupService groupService) {
954                    this.groupService = groupService;
955            }
956    
957            /**
958             * Returns the group persistence.
959             *
960             * @return the group persistence
961             */
962            public GroupPersistence getGroupPersistence() {
963                    return groupPersistence;
964            }
965    
966            /**
967             * Sets the group persistence.
968             *
969             * @param groupPersistence the group persistence
970             */
971            public void setGroupPersistence(GroupPersistence groupPersistence) {
972                    this.groupPersistence = groupPersistence;
973            }
974    
975            /**
976             * Returns the group finder.
977             *
978             * @return the group finder
979             */
980            public GroupFinder getGroupFinder() {
981                    return groupFinder;
982            }
983    
984            /**
985             * Sets the group finder.
986             *
987             * @param groupFinder the group finder
988             */
989            public void setGroupFinder(GroupFinder groupFinder) {
990                    this.groupFinder = groupFinder;
991            }
992    
993            /**
994             * Returns the image local service.
995             *
996             * @return the image local service
997             */
998            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
999                    return imageLocalService;
1000            }
1001    
1002            /**
1003             * Sets the image local service.
1004             *
1005             * @param imageLocalService the image local service
1006             */
1007            public void setImageLocalService(
1008                    com.liferay.portal.service.ImageLocalService imageLocalService) {
1009                    this.imageLocalService = imageLocalService;
1010            }
1011    
1012            /**
1013             * Returns the image remote service.
1014             *
1015             * @return the image remote service
1016             */
1017            public com.liferay.portal.service.ImageService getImageService() {
1018                    return imageService;
1019            }
1020    
1021            /**
1022             * Sets the image remote service.
1023             *
1024             * @param imageService the image remote service
1025             */
1026            public void setImageService(
1027                    com.liferay.portal.service.ImageService imageService) {
1028                    this.imageService = imageService;
1029            }
1030    
1031            /**
1032             * Returns the image persistence.
1033             *
1034             * @return the image persistence
1035             */
1036            public ImagePersistence getImagePersistence() {
1037                    return imagePersistence;
1038            }
1039    
1040            /**
1041             * Sets the image persistence.
1042             *
1043             * @param imagePersistence the image persistence
1044             */
1045            public void setImagePersistence(ImagePersistence imagePersistence) {
1046                    this.imagePersistence = imagePersistence;
1047            }
1048    
1049            /**
1050             * Returns the layout local service.
1051             *
1052             * @return the layout local service
1053             */
1054            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
1055                    return layoutLocalService;
1056            }
1057    
1058            /**
1059             * Sets the layout local service.
1060             *
1061             * @param layoutLocalService the layout local service
1062             */
1063            public void setLayoutLocalService(
1064                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
1065                    this.layoutLocalService = layoutLocalService;
1066            }
1067    
1068            /**
1069             * Returns the layout remote service.
1070             *
1071             * @return the layout remote service
1072             */
1073            public com.liferay.portal.service.LayoutService getLayoutService() {
1074                    return layoutService;
1075            }
1076    
1077            /**
1078             * Sets the layout remote service.
1079             *
1080             * @param layoutService the layout remote service
1081             */
1082            public void setLayoutService(
1083                    com.liferay.portal.service.LayoutService layoutService) {
1084                    this.layoutService = layoutService;
1085            }
1086    
1087            /**
1088             * Returns the layout persistence.
1089             *
1090             * @return the layout persistence
1091             */
1092            public LayoutPersistence getLayoutPersistence() {
1093                    return layoutPersistence;
1094            }
1095    
1096            /**
1097             * Sets the layout persistence.
1098             *
1099             * @param layoutPersistence the layout persistence
1100             */
1101            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
1102                    this.layoutPersistence = layoutPersistence;
1103            }
1104    
1105            /**
1106             * Returns the layout finder.
1107             *
1108             * @return the layout finder
1109             */
1110            public LayoutFinder getLayoutFinder() {
1111                    return layoutFinder;
1112            }
1113    
1114            /**
1115             * Sets the layout finder.
1116             *
1117             * @param layoutFinder the layout finder
1118             */
1119            public void setLayoutFinder(LayoutFinder layoutFinder) {
1120                    this.layoutFinder = layoutFinder;
1121            }
1122    
1123            /**
1124             * Returns the layout branch local service.
1125             *
1126             * @return the layout branch local service
1127             */
1128            public com.liferay.portal.service.LayoutBranchLocalService getLayoutBranchLocalService() {
1129                    return layoutBranchLocalService;
1130            }
1131    
1132            /**
1133             * Sets the layout branch local service.
1134             *
1135             * @param layoutBranchLocalService the layout branch local service
1136             */
1137            public void setLayoutBranchLocalService(
1138                    com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService) {
1139                    this.layoutBranchLocalService = layoutBranchLocalService;
1140            }
1141    
1142            /**
1143             * Returns the layout branch remote service.
1144             *
1145             * @return the layout branch remote service
1146             */
1147            public com.liferay.portal.service.LayoutBranchService getLayoutBranchService() {
1148                    return layoutBranchService;
1149            }
1150    
1151            /**
1152             * Sets the layout branch remote service.
1153             *
1154             * @param layoutBranchService the layout branch remote service
1155             */
1156            public void setLayoutBranchService(
1157                    com.liferay.portal.service.LayoutBranchService layoutBranchService) {
1158                    this.layoutBranchService = layoutBranchService;
1159            }
1160    
1161            /**
1162             * Returns the layout branch persistence.
1163             *
1164             * @return the layout branch persistence
1165             */
1166            public LayoutBranchPersistence getLayoutBranchPersistence() {
1167                    return layoutBranchPersistence;
1168            }
1169    
1170            /**
1171             * Sets the layout branch persistence.
1172             *
1173             * @param layoutBranchPersistence the layout branch persistence
1174             */
1175            public void setLayoutBranchPersistence(
1176                    LayoutBranchPersistence layoutBranchPersistence) {
1177                    this.layoutBranchPersistence = layoutBranchPersistence;
1178            }
1179    
1180            /**
1181             * Returns the layout friendly u r l local service.
1182             *
1183             * @return the layout friendly u r l local service
1184             */
1185            public com.liferay.portal.service.LayoutFriendlyURLLocalService getLayoutFriendlyURLLocalService() {
1186                    return layoutFriendlyURLLocalService;
1187            }
1188    
1189            /**
1190             * Sets the layout friendly u r l local service.
1191             *
1192             * @param layoutFriendlyURLLocalService the layout friendly u r l local service
1193             */
1194            public void setLayoutFriendlyURLLocalService(
1195                    com.liferay.portal.service.LayoutFriendlyURLLocalService layoutFriendlyURLLocalService) {
1196                    this.layoutFriendlyURLLocalService = layoutFriendlyURLLocalService;
1197            }
1198    
1199            /**
1200             * Returns the layout friendly u r l persistence.
1201             *
1202             * @return the layout friendly u r l persistence
1203             */
1204            public LayoutFriendlyURLPersistence getLayoutFriendlyURLPersistence() {
1205                    return layoutFriendlyURLPersistence;
1206            }
1207    
1208            /**
1209             * Sets the layout friendly u r l persistence.
1210             *
1211             * @param layoutFriendlyURLPersistence the layout friendly u r l persistence
1212             */
1213            public void setLayoutFriendlyURLPersistence(
1214                    LayoutFriendlyURLPersistence layoutFriendlyURLPersistence) {
1215                    this.layoutFriendlyURLPersistence = layoutFriendlyURLPersistence;
1216            }
1217    
1218            /**
1219             * Returns the layout prototype local service.
1220             *
1221             * @return the layout prototype local service
1222             */
1223            public com.liferay.portal.service.LayoutPrototypeLocalService getLayoutPrototypeLocalService() {
1224                    return layoutPrototypeLocalService;
1225            }
1226    
1227            /**
1228             * Sets the layout prototype local service.
1229             *
1230             * @param layoutPrototypeLocalService the layout prototype local service
1231             */
1232            public void setLayoutPrototypeLocalService(
1233                    com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService) {
1234                    this.layoutPrototypeLocalService = layoutPrototypeLocalService;
1235            }
1236    
1237            /**
1238             * Returns the layout prototype remote service.
1239             *
1240             * @return the layout prototype remote service
1241             */
1242            public com.liferay.portal.service.LayoutPrototypeService getLayoutPrototypeService() {
1243                    return layoutPrototypeService;
1244            }
1245    
1246            /**
1247             * Sets the layout prototype remote service.
1248             *
1249             * @param layoutPrototypeService the layout prototype remote service
1250             */
1251            public void setLayoutPrototypeService(
1252                    com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService) {
1253                    this.layoutPrototypeService = layoutPrototypeService;
1254            }
1255    
1256            /**
1257             * Returns the layout prototype persistence.
1258             *
1259             * @return the layout prototype persistence
1260             */
1261            public LayoutPrototypePersistence getLayoutPrototypePersistence() {
1262                    return layoutPrototypePersistence;
1263            }
1264    
1265            /**
1266             * Sets the layout prototype persistence.
1267             *
1268             * @param layoutPrototypePersistence the layout prototype persistence
1269             */
1270            public void setLayoutPrototypePersistence(
1271                    LayoutPrototypePersistence layoutPrototypePersistence) {
1272                    this.layoutPrototypePersistence = layoutPrototypePersistence;
1273            }
1274    
1275            /**
1276             * Returns the layout revision local service.
1277             *
1278             * @return the layout revision local service
1279             */
1280            public com.liferay.portal.service.LayoutRevisionLocalService getLayoutRevisionLocalService() {
1281                    return layoutRevisionLocalService;
1282            }
1283    
1284            /**
1285             * Sets the layout revision local service.
1286             *
1287             * @param layoutRevisionLocalService the layout revision local service
1288             */
1289            public void setLayoutRevisionLocalService(
1290                    com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService) {
1291                    this.layoutRevisionLocalService = layoutRevisionLocalService;
1292            }
1293    
1294            /**
1295             * Returns the layout revision remote service.
1296             *
1297             * @return the layout revision remote service
1298             */
1299            public com.liferay.portal.service.LayoutRevisionService getLayoutRevisionService() {
1300                    return layoutRevisionService;
1301            }
1302    
1303            /**
1304             * Sets the layout revision remote service.
1305             *
1306             * @param layoutRevisionService the layout revision remote service
1307             */
1308            public void setLayoutRevisionService(
1309                    com.liferay.portal.service.LayoutRevisionService layoutRevisionService) {
1310                    this.layoutRevisionService = layoutRevisionService;
1311            }
1312    
1313            /**
1314             * Returns the layout revision persistence.
1315             *
1316             * @return the layout revision persistence
1317             */
1318            public LayoutRevisionPersistence getLayoutRevisionPersistence() {
1319                    return layoutRevisionPersistence;
1320            }
1321    
1322            /**
1323             * Sets the layout revision persistence.
1324             *
1325             * @param layoutRevisionPersistence the layout revision persistence
1326             */
1327            public void setLayoutRevisionPersistence(
1328                    LayoutRevisionPersistence layoutRevisionPersistence) {
1329                    this.layoutRevisionPersistence = layoutRevisionPersistence;
1330            }
1331    
1332            /**
1333             * Returns the layout set local service.
1334             *
1335             * @return the layout set local service
1336             */
1337            public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
1338                    return layoutSetLocalService;
1339            }
1340    
1341            /**
1342             * Sets the layout set local service.
1343             *
1344             * @param layoutSetLocalService the layout set local service
1345             */
1346            public void setLayoutSetLocalService(
1347                    com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
1348                    this.layoutSetLocalService = layoutSetLocalService;
1349            }
1350    
1351            /**
1352             * Returns the layout set remote service.
1353             *
1354             * @return the layout set remote service
1355             */
1356            public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
1357                    return layoutSetService;
1358            }
1359    
1360            /**
1361             * Sets the layout set remote service.
1362             *
1363             * @param layoutSetService the layout set remote service
1364             */
1365            public void setLayoutSetService(
1366                    com.liferay.portal.service.LayoutSetService layoutSetService) {
1367                    this.layoutSetService = layoutSetService;
1368            }
1369    
1370            /**
1371             * Returns the layout set persistence.
1372             *
1373             * @return the layout set persistence
1374             */
1375            public LayoutSetPersistence getLayoutSetPersistence() {
1376                    return layoutSetPersistence;
1377            }
1378    
1379            /**
1380             * Sets the layout set persistence.
1381             *
1382             * @param layoutSetPersistence the layout set persistence
1383             */
1384            public void setLayoutSetPersistence(
1385                    LayoutSetPersistence layoutSetPersistence) {
1386                    this.layoutSetPersistence = layoutSetPersistence;
1387            }
1388    
1389            /**
1390             * Returns the layout set branch local service.
1391             *
1392             * @return the layout set branch local service
1393             */
1394            public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
1395                    return layoutSetBranchLocalService;
1396            }
1397    
1398            /**
1399             * Sets the layout set branch local service.
1400             *
1401             * @param layoutSetBranchLocalService the layout set branch local service
1402             */
1403            public void setLayoutSetBranchLocalService(
1404                    com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
1405                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
1406            }
1407    
1408            /**
1409             * Returns the layout set branch remote service.
1410             *
1411             * @return the layout set branch remote service
1412             */
1413            public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
1414                    return layoutSetBranchService;
1415            }
1416    
1417            /**
1418             * Sets the layout set branch remote service.
1419             *
1420             * @param layoutSetBranchService the layout set branch remote service
1421             */
1422            public void setLayoutSetBranchService(
1423                    com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
1424                    this.layoutSetBranchService = layoutSetBranchService;
1425            }
1426    
1427            /**
1428             * Returns the layout set branch persistence.
1429             *
1430             * @return the layout set branch persistence
1431             */
1432            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
1433                    return layoutSetBranchPersistence;
1434            }
1435    
1436            /**
1437             * Sets the layout set branch persistence.
1438             *
1439             * @param layoutSetBranchPersistence the layout set branch persistence
1440             */
1441            public void setLayoutSetBranchPersistence(
1442                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
1443                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
1444            }
1445    
1446            /**
1447             * Returns the layout set prototype local service.
1448             *
1449             * @return the layout set prototype local service
1450             */
1451            public com.liferay.portal.service.LayoutSetPrototypeLocalService getLayoutSetPrototypeLocalService() {
1452                    return layoutSetPrototypeLocalService;
1453            }
1454    
1455            /**
1456             * Sets the layout set prototype local service.
1457             *
1458             * @param layoutSetPrototypeLocalService the layout set prototype local service
1459             */
1460            public void setLayoutSetPrototypeLocalService(
1461                    com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
1462                    this.layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
1463            }
1464    
1465            /**
1466             * Returns the layout set prototype remote service.
1467             *
1468             * @return the layout set prototype remote service
1469             */
1470            public com.liferay.portal.service.LayoutSetPrototypeService getLayoutSetPrototypeService() {
1471                    return layoutSetPrototypeService;
1472            }
1473    
1474            /**
1475             * Sets the layout set prototype remote service.
1476             *
1477             * @param layoutSetPrototypeService the layout set prototype remote service
1478             */
1479            public void setLayoutSetPrototypeService(
1480                    com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService) {
1481                    this.layoutSetPrototypeService = layoutSetPrototypeService;
1482            }
1483    
1484            /**
1485             * Returns the layout set prototype persistence.
1486             *
1487             * @return the layout set prototype persistence
1488             */
1489            public LayoutSetPrototypePersistence getLayoutSetPrototypePersistence() {
1490                    return layoutSetPrototypePersistence;
1491            }
1492    
1493            /**
1494             * Sets the layout set prototype persistence.
1495             *
1496             * @param layoutSetPrototypePersistence the layout set prototype persistence
1497             */
1498            public void setLayoutSetPrototypePersistence(
1499                    LayoutSetPrototypePersistence layoutSetPrototypePersistence) {
1500                    this.layoutSetPrototypePersistence = layoutSetPrototypePersistence;
1501            }
1502    
1503            /**
1504             * Returns the layout template local service.
1505             *
1506             * @return the layout template local service
1507             */
1508            public com.liferay.portal.service.LayoutTemplateLocalService getLayoutTemplateLocalService() {
1509                    return layoutTemplateLocalService;
1510            }
1511    
1512            /**
1513             * Sets the layout template local service.
1514             *
1515             * @param layoutTemplateLocalService the layout template local service
1516             */
1517            public void setLayoutTemplateLocalService(
1518                    com.liferay.portal.service.LayoutTemplateLocalService layoutTemplateLocalService) {
1519                    this.layoutTemplateLocalService = layoutTemplateLocalService;
1520            }
1521    
1522            /**
1523             * Returns the list type remote service.
1524             *
1525             * @return the list type remote service
1526             */
1527            public com.liferay.portal.service.ListTypeService getListTypeService() {
1528                    return listTypeService;
1529            }
1530    
1531            /**
1532             * Sets the list type remote service.
1533             *
1534             * @param listTypeService the list type remote service
1535             */
1536            public void setListTypeService(
1537                    com.liferay.portal.service.ListTypeService listTypeService) {
1538                    this.listTypeService = listTypeService;
1539            }
1540    
1541            /**
1542             * Returns the list type persistence.
1543             *
1544             * @return the list type persistence
1545             */
1546            public ListTypePersistence getListTypePersistence() {
1547                    return listTypePersistence;
1548            }
1549    
1550            /**
1551             * Sets the list type persistence.
1552             *
1553             * @param listTypePersistence the list type persistence
1554             */
1555            public void setListTypePersistence(ListTypePersistence listTypePersistence) {
1556                    this.listTypePersistence = listTypePersistence;
1557            }
1558    
1559            /**
1560             * Returns the lock local service.
1561             *
1562             * @return the lock local service
1563             */
1564            public com.liferay.portal.service.LockLocalService getLockLocalService() {
1565                    return lockLocalService;
1566            }
1567    
1568            /**
1569             * Sets the lock local service.
1570             *
1571             * @param lockLocalService the lock local service
1572             */
1573            public void setLockLocalService(
1574                    com.liferay.portal.service.LockLocalService lockLocalService) {
1575                    this.lockLocalService = lockLocalService;
1576            }
1577    
1578            /**
1579             * Returns the lock persistence.
1580             *
1581             * @return the lock persistence
1582             */
1583            public LockPersistence getLockPersistence() {
1584                    return lockPersistence;
1585            }
1586    
1587            /**
1588             * Sets the lock persistence.
1589             *
1590             * @param lockPersistence the lock persistence
1591             */
1592            public void setLockPersistence(LockPersistence lockPersistence) {
1593                    this.lockPersistence = lockPersistence;
1594            }
1595    
1596            /**
1597             * Returns the lock finder.
1598             *
1599             * @return the lock finder
1600             */
1601            public LockFinder getLockFinder() {
1602                    return lockFinder;
1603            }
1604    
1605            /**
1606             * Sets the lock finder.
1607             *
1608             * @param lockFinder the lock finder
1609             */
1610            public void setLockFinder(LockFinder lockFinder) {
1611                    this.lockFinder = lockFinder;
1612            }
1613    
1614            /**
1615             * Returns the membership request local service.
1616             *
1617             * @return the membership request local service
1618             */
1619            public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
1620                    return membershipRequestLocalService;
1621            }
1622    
1623            /**
1624             * Sets the membership request local service.
1625             *
1626             * @param membershipRequestLocalService the membership request local service
1627             */
1628            public void setMembershipRequestLocalService(
1629                    com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
1630                    this.membershipRequestLocalService = membershipRequestLocalService;
1631            }
1632    
1633            /**
1634             * Returns the membership request remote service.
1635             *
1636             * @return the membership request remote service
1637             */
1638            public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
1639                    return membershipRequestService;
1640            }
1641    
1642            /**
1643             * Sets the membership request remote service.
1644             *
1645             * @param membershipRequestService the membership request remote service
1646             */
1647            public void setMembershipRequestService(
1648                    com.liferay.portal.service.MembershipRequestService membershipRequestService) {
1649                    this.membershipRequestService = membershipRequestService;
1650            }
1651    
1652            /**
1653             * Returns the membership request persistence.
1654             *
1655             * @return the membership request persistence
1656             */
1657            public MembershipRequestPersistence getMembershipRequestPersistence() {
1658                    return membershipRequestPersistence;
1659            }
1660    
1661            /**
1662             * Sets the membership request persistence.
1663             *
1664             * @param membershipRequestPersistence the membership request persistence
1665             */
1666            public void setMembershipRequestPersistence(
1667                    MembershipRequestPersistence membershipRequestPersistence) {
1668                    this.membershipRequestPersistence = membershipRequestPersistence;
1669            }
1670    
1671            /**
1672             * Returns the organization local service.
1673             *
1674             * @return the organization local service
1675             */
1676            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
1677                    return organizationLocalService;
1678            }
1679    
1680            /**
1681             * Sets the organization local service.
1682             *
1683             * @param organizationLocalService the organization local service
1684             */
1685            public void setOrganizationLocalService(
1686                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
1687                    this.organizationLocalService = organizationLocalService;
1688            }
1689    
1690            /**
1691             * Returns the organization remote service.
1692             *
1693             * @return the organization remote service
1694             */
1695            public com.liferay.portal.service.OrganizationService getOrganizationService() {
1696                    return organizationService;
1697            }
1698    
1699            /**
1700             * Sets the organization remote service.
1701             *
1702             * @param organizationService the organization remote service
1703             */
1704            public void setOrganizationService(
1705                    com.liferay.portal.service.OrganizationService organizationService) {
1706                    this.organizationService = organizationService;
1707            }
1708    
1709            /**
1710             * Returns the organization persistence.
1711             *
1712             * @return the organization persistence
1713             */
1714            public OrganizationPersistence getOrganizationPersistence() {
1715                    return organizationPersistence;
1716            }
1717    
1718            /**
1719             * Sets the organization persistence.
1720             *
1721             * @param organizationPersistence the organization persistence
1722             */
1723            public void setOrganizationPersistence(
1724                    OrganizationPersistence organizationPersistence) {
1725                    this.organizationPersistence = organizationPersistence;
1726            }
1727    
1728            /**
1729             * Returns the organization finder.
1730             *
1731             * @return the organization finder
1732             */
1733            public OrganizationFinder getOrganizationFinder() {
1734                    return organizationFinder;
1735            }
1736    
1737            /**
1738             * Sets the organization finder.
1739             *
1740             * @param organizationFinder the organization finder
1741             */
1742            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
1743                    this.organizationFinder = organizationFinder;
1744            }
1745    
1746            /**
1747             * Returns the org group role persistence.
1748             *
1749             * @return the org group role persistence
1750             */
1751            public OrgGroupRolePersistence getOrgGroupRolePersistence() {
1752                    return orgGroupRolePersistence;
1753            }
1754    
1755            /**
1756             * Sets the org group role persistence.
1757             *
1758             * @param orgGroupRolePersistence the org group role persistence
1759             */
1760            public void setOrgGroupRolePersistence(
1761                    OrgGroupRolePersistence orgGroupRolePersistence) {
1762                    this.orgGroupRolePersistence = orgGroupRolePersistence;
1763            }
1764    
1765            /**
1766             * Returns the org labor local service.
1767             *
1768             * @return the org labor local service
1769             */
1770            public com.liferay.portal.service.OrgLaborLocalService getOrgLaborLocalService() {
1771                    return orgLaborLocalService;
1772            }
1773    
1774            /**
1775             * Sets the org labor local service.
1776             *
1777             * @param orgLaborLocalService the org labor local service
1778             */
1779            public void setOrgLaborLocalService(
1780                    com.liferay.portal.service.OrgLaborLocalService orgLaborLocalService) {
1781                    this.orgLaborLocalService = orgLaborLocalService;
1782            }
1783    
1784            /**
1785             * Returns the org labor remote service.
1786             *
1787             * @return the org labor remote service
1788             */
1789            public com.liferay.portal.service.OrgLaborService getOrgLaborService() {
1790                    return orgLaborService;
1791            }
1792    
1793            /**
1794             * Sets the org labor remote service.
1795             *
1796             * @param orgLaborService the org labor remote service
1797             */
1798            public void setOrgLaborService(
1799                    com.liferay.portal.service.OrgLaborService orgLaborService) {
1800                    this.orgLaborService = orgLaborService;
1801            }
1802    
1803            /**
1804             * Returns the org labor persistence.
1805             *
1806             * @return the org labor persistence
1807             */
1808            public OrgLaborPersistence getOrgLaborPersistence() {
1809                    return orgLaborPersistence;
1810            }
1811    
1812            /**
1813             * Sets the org labor persistence.
1814             *
1815             * @param orgLaborPersistence the org labor persistence
1816             */
1817            public void setOrgLaborPersistence(OrgLaborPersistence orgLaborPersistence) {
1818                    this.orgLaborPersistence = orgLaborPersistence;
1819            }
1820    
1821            /**
1822             * Returns the password policy local service.
1823             *
1824             * @return the password policy local service
1825             */
1826            public com.liferay.portal.service.PasswordPolicyLocalService getPasswordPolicyLocalService() {
1827                    return passwordPolicyLocalService;
1828            }
1829    
1830            /**
1831             * Sets the password policy local service.
1832             *
1833             * @param passwordPolicyLocalService the password policy local service
1834             */
1835            public void setPasswordPolicyLocalService(
1836                    com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService) {
1837                    this.passwordPolicyLocalService = passwordPolicyLocalService;
1838            }
1839    
1840            /**
1841             * Returns the password policy remote service.
1842             *
1843             * @return the password policy remote service
1844             */
1845            public com.liferay.portal.service.PasswordPolicyService getPasswordPolicyService() {
1846                    return passwordPolicyService;
1847            }
1848    
1849            /**
1850             * Sets the password policy remote service.
1851             *
1852             * @param passwordPolicyService the password policy remote service
1853             */
1854            public void setPasswordPolicyService(
1855                    com.liferay.portal.service.PasswordPolicyService passwordPolicyService) {
1856                    this.passwordPolicyService = passwordPolicyService;
1857            }
1858    
1859            /**
1860             * Returns the password policy persistence.
1861             *
1862             * @return the password policy persistence
1863             */
1864            public PasswordPolicyPersistence getPasswordPolicyPersistence() {
1865                    return passwordPolicyPersistence;
1866            }
1867    
1868            /**
1869             * Sets the password policy persistence.
1870             *
1871             * @param passwordPolicyPersistence the password policy persistence
1872             */
1873            public void setPasswordPolicyPersistence(
1874                    PasswordPolicyPersistence passwordPolicyPersistence) {
1875                    this.passwordPolicyPersistence = passwordPolicyPersistence;
1876            }
1877    
1878            /**
1879             * Returns the password policy finder.
1880             *
1881             * @return the password policy finder
1882             */
1883            public PasswordPolicyFinder getPasswordPolicyFinder() {
1884                    return passwordPolicyFinder;
1885            }
1886    
1887            /**
1888             * Sets the password policy finder.
1889             *
1890             * @param passwordPolicyFinder the password policy finder
1891             */
1892            public void setPasswordPolicyFinder(
1893                    PasswordPolicyFinder passwordPolicyFinder) {
1894                    this.passwordPolicyFinder = passwordPolicyFinder;
1895            }
1896    
1897            /**
1898             * Returns the password policy rel local service.
1899             *
1900             * @return the password policy rel local service
1901             */
1902            public com.liferay.portal.service.PasswordPolicyRelLocalService getPasswordPolicyRelLocalService() {
1903                    return passwordPolicyRelLocalService;
1904            }
1905    
1906            /**
1907             * Sets the password policy rel local service.
1908             *
1909             * @param passwordPolicyRelLocalService the password policy rel local service
1910             */
1911            public void setPasswordPolicyRelLocalService(
1912                    com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService) {
1913                    this.passwordPolicyRelLocalService = passwordPolicyRelLocalService;
1914            }
1915    
1916            /**
1917             * Returns the password policy rel persistence.
1918             *
1919             * @return the password policy rel persistence
1920             */
1921            public PasswordPolicyRelPersistence getPasswordPolicyRelPersistence() {
1922                    return passwordPolicyRelPersistence;
1923            }
1924    
1925            /**
1926             * Sets the password policy rel persistence.
1927             *
1928             * @param passwordPolicyRelPersistence the password policy rel persistence
1929             */
1930            public void setPasswordPolicyRelPersistence(
1931                    PasswordPolicyRelPersistence passwordPolicyRelPersistence) {
1932                    this.passwordPolicyRelPersistence = passwordPolicyRelPersistence;
1933            }
1934    
1935            /**
1936             * Returns the password tracker local service.
1937             *
1938             * @return the password tracker local service
1939             */
1940            public com.liferay.portal.service.PasswordTrackerLocalService getPasswordTrackerLocalService() {
1941                    return passwordTrackerLocalService;
1942            }
1943    
1944            /**
1945             * Sets the password tracker local service.
1946             *
1947             * @param passwordTrackerLocalService the password tracker local service
1948             */
1949            public void setPasswordTrackerLocalService(
1950                    com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService) {
1951                    this.passwordTrackerLocalService = passwordTrackerLocalService;
1952            }
1953    
1954            /**
1955             * Returns the password tracker persistence.
1956             *
1957             * @return the password tracker persistence
1958             */
1959            public PasswordTrackerPersistence getPasswordTrackerPersistence() {
1960                    return passwordTrackerPersistence;
1961            }
1962    
1963            /**
1964             * Sets the password tracker persistence.
1965             *
1966             * @param passwordTrackerPersistence the password tracker persistence
1967             */
1968            public void setPasswordTrackerPersistence(
1969                    PasswordTrackerPersistence passwordTrackerPersistence) {
1970                    this.passwordTrackerPersistence = passwordTrackerPersistence;
1971            }
1972    
1973            /**
1974             * Returns the permission remote service.
1975             *
1976             * @return the permission remote service
1977             */
1978            public com.liferay.portal.service.PermissionService getPermissionService() {
1979                    return permissionService;
1980            }
1981    
1982            /**
1983             * Sets the permission remote service.
1984             *
1985             * @param permissionService the permission remote service
1986             */
1987            public void setPermissionService(
1988                    com.liferay.portal.service.PermissionService permissionService) {
1989                    this.permissionService = permissionService;
1990            }
1991    
1992            /**
1993             * Returns the phone local service.
1994             *
1995             * @return the phone local service
1996             */
1997            public com.liferay.portal.service.PhoneLocalService getPhoneLocalService() {
1998                    return phoneLocalService;
1999            }
2000    
2001            /**
2002             * Sets the phone local service.
2003             *
2004             * @param phoneLocalService the phone local service
2005             */
2006            public void setPhoneLocalService(
2007                    com.liferay.portal.service.PhoneLocalService phoneLocalService) {
2008                    this.phoneLocalService = phoneLocalService;
2009            }
2010    
2011            /**
2012             * Returns the phone remote service.
2013             *
2014             * @return the phone remote service
2015             */
2016            public com.liferay.portal.service.PhoneService getPhoneService() {
2017                    return phoneService;
2018            }
2019    
2020            /**
2021             * Sets the phone remote service.
2022             *
2023             * @param phoneService the phone remote service
2024             */
2025            public void setPhoneService(
2026                    com.liferay.portal.service.PhoneService phoneService) {
2027                    this.phoneService = phoneService;
2028            }
2029    
2030            /**
2031             * Returns the phone persistence.
2032             *
2033             * @return the phone persistence
2034             */
2035            public PhonePersistence getPhonePersistence() {
2036                    return phonePersistence;
2037            }
2038    
2039            /**
2040             * Sets the phone persistence.
2041             *
2042             * @param phonePersistence the phone persistence
2043             */
2044            public void setPhonePersistence(PhonePersistence phonePersistence) {
2045                    this.phonePersistence = phonePersistence;
2046            }
2047    
2048            /**
2049             * Returns the plugin setting local service.
2050             *
2051             * @return the plugin setting local service
2052             */
2053            public com.liferay.portal.service.PluginSettingLocalService getPluginSettingLocalService() {
2054                    return pluginSettingLocalService;
2055            }
2056    
2057            /**
2058             * Sets the plugin setting local service.
2059             *
2060             * @param pluginSettingLocalService the plugin setting local service
2061             */
2062            public void setPluginSettingLocalService(
2063                    com.liferay.portal.service.PluginSettingLocalService pluginSettingLocalService) {
2064                    this.pluginSettingLocalService = pluginSettingLocalService;
2065            }
2066    
2067            /**
2068             * Returns the plugin setting remote service.
2069             *
2070             * @return the plugin setting remote service
2071             */
2072            public com.liferay.portal.service.PluginSettingService getPluginSettingService() {
2073                    return pluginSettingService;
2074            }
2075    
2076            /**
2077             * Sets the plugin setting remote service.
2078             *
2079             * @param pluginSettingService the plugin setting remote service
2080             */
2081            public void setPluginSettingService(
2082                    com.liferay.portal.service.PluginSettingService pluginSettingService) {
2083                    this.pluginSettingService = pluginSettingService;
2084            }
2085    
2086            /**
2087             * Returns the plugin setting persistence.
2088             *
2089             * @return the plugin setting persistence
2090             */
2091            public PluginSettingPersistence getPluginSettingPersistence() {
2092                    return pluginSettingPersistence;
2093            }
2094    
2095            /**
2096             * Sets the plugin setting persistence.
2097             *
2098             * @param pluginSettingPersistence the plugin setting persistence
2099             */
2100            public void setPluginSettingPersistence(
2101                    PluginSettingPersistence pluginSettingPersistence) {
2102                    this.pluginSettingPersistence = pluginSettingPersistence;
2103            }
2104    
2105            /**
2106             * Returns the portal local service.
2107             *
2108             * @return the portal local service
2109             */
2110            public com.liferay.portal.service.PortalLocalService getPortalLocalService() {
2111                    return portalLocalService;
2112            }
2113    
2114            /**
2115             * Sets the portal local service.
2116             *
2117             * @param portalLocalService the portal local service
2118             */
2119            public void setPortalLocalService(
2120                    com.liferay.portal.service.PortalLocalService portalLocalService) {
2121                    this.portalLocalService = portalLocalService;
2122            }
2123    
2124            /**
2125             * Returns the portal remote service.
2126             *
2127             * @return the portal remote service
2128             */
2129            public com.liferay.portal.service.PortalService getPortalService() {
2130                    return portalService;
2131            }
2132    
2133            /**
2134             * Sets the portal remote service.
2135             *
2136             * @param portalService the portal remote service
2137             */
2138            public void setPortalService(
2139                    com.liferay.portal.service.PortalService portalService) {
2140                    this.portalService = portalService;
2141            }
2142    
2143            /**
2144             * Returns the portal preferences local service.
2145             *
2146             * @return the portal preferences local service
2147             */
2148            public com.liferay.portal.service.PortalPreferencesLocalService getPortalPreferencesLocalService() {
2149                    return portalPreferencesLocalService;
2150            }
2151    
2152            /**
2153             * Sets the portal preferences local service.
2154             *
2155             * @param portalPreferencesLocalService the portal preferences local service
2156             */
2157            public void setPortalPreferencesLocalService(
2158                    com.liferay.portal.service.PortalPreferencesLocalService portalPreferencesLocalService) {
2159                    this.portalPreferencesLocalService = portalPreferencesLocalService;
2160            }
2161    
2162            /**
2163             * Returns the portal preferences persistence.
2164             *
2165             * @return the portal preferences persistence
2166             */
2167            public PortalPreferencesPersistence getPortalPreferencesPersistence() {
2168                    return portalPreferencesPersistence;
2169            }
2170    
2171            /**
2172             * Sets the portal preferences persistence.
2173             *
2174             * @param portalPreferencesPersistence the portal preferences persistence
2175             */
2176            public void setPortalPreferencesPersistence(
2177                    PortalPreferencesPersistence portalPreferencesPersistence) {
2178                    this.portalPreferencesPersistence = portalPreferencesPersistence;
2179            }
2180    
2181            /**
2182             * Returns the portlet local service.
2183             *
2184             * @return the portlet local service
2185             */
2186            public com.liferay.portal.service.PortletLocalService getPortletLocalService() {
2187                    return portletLocalService;
2188            }
2189    
2190            /**
2191             * Sets the portlet local service.
2192             *
2193             * @param portletLocalService the portlet local service
2194             */
2195            public void setPortletLocalService(
2196                    com.liferay.portal.service.PortletLocalService portletLocalService) {
2197                    this.portletLocalService = portletLocalService;
2198            }
2199    
2200            /**
2201             * Returns the portlet remote service.
2202             *
2203             * @return the portlet remote service
2204             */
2205            public com.liferay.portal.service.PortletService getPortletService() {
2206                    return portletService;
2207            }
2208    
2209            /**
2210             * Sets the portlet remote service.
2211             *
2212             * @param portletService the portlet remote service
2213             */
2214            public void setPortletService(
2215                    com.liferay.portal.service.PortletService portletService) {
2216                    this.portletService = portletService;
2217            }
2218    
2219            /**
2220             * Returns the portlet persistence.
2221             *
2222             * @return the portlet persistence
2223             */
2224            public PortletPersistence getPortletPersistence() {
2225                    return portletPersistence;
2226            }
2227    
2228            /**
2229             * Sets the portlet persistence.
2230             *
2231             * @param portletPersistence the portlet persistence
2232             */
2233            public void setPortletPersistence(PortletPersistence portletPersistence) {
2234                    this.portletPersistence = portletPersistence;
2235            }
2236    
2237            /**
2238             * Returns the portlet item local service.
2239             *
2240             * @return the portlet item local service
2241             */
2242            public com.liferay.portal.service.PortletItemLocalService getPortletItemLocalService() {
2243                    return portletItemLocalService;
2244            }
2245    
2246            /**
2247             * Sets the portlet item local service.
2248             *
2249             * @param portletItemLocalService the portlet item local service
2250             */
2251            public void setPortletItemLocalService(
2252                    com.liferay.portal.service.PortletItemLocalService portletItemLocalService) {
2253                    this.portletItemLocalService = portletItemLocalService;
2254            }
2255    
2256            /**
2257             * Returns the portlet item persistence.
2258             *
2259             * @return the portlet item persistence
2260             */
2261            public PortletItemPersistence getPortletItemPersistence() {
2262                    return portletItemPersistence;
2263            }
2264    
2265            /**
2266             * Sets the portlet item persistence.
2267             *
2268             * @param portletItemPersistence the portlet item persistence
2269             */
2270            public void setPortletItemPersistence(
2271                    PortletItemPersistence portletItemPersistence) {
2272                    this.portletItemPersistence = portletItemPersistence;
2273            }
2274    
2275            /**
2276             * Returns the portlet preferences local service.
2277             *
2278             * @return the portlet preferences local service
2279             */
2280            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
2281                    return portletPreferencesLocalService;
2282            }
2283    
2284            /**
2285             * Sets the portlet preferences local service.
2286             *
2287             * @param portletPreferencesLocalService the portlet preferences local service
2288             */
2289            public void setPortletPreferencesLocalService(
2290                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
2291                    this.portletPreferencesLocalService = portletPreferencesLocalService;
2292            }
2293    
2294            /**
2295             * Returns the portlet preferences remote service.
2296             *
2297             * @return the portlet preferences remote service
2298             */
2299            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
2300                    return portletPreferencesService;
2301            }
2302    
2303            /**
2304             * Sets the portlet preferences remote service.
2305             *
2306             * @param portletPreferencesService the portlet preferences remote service
2307             */
2308            public void setPortletPreferencesService(
2309                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
2310                    this.portletPreferencesService = portletPreferencesService;
2311            }
2312    
2313            /**
2314             * Returns the portlet preferences persistence.
2315             *
2316             * @return the portlet preferences persistence
2317             */
2318            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
2319                    return portletPreferencesPersistence;
2320            }
2321    
2322            /**
2323             * Sets the portlet preferences persistence.
2324             *
2325             * @param portletPreferencesPersistence the portlet preferences persistence
2326             */
2327            public void setPortletPreferencesPersistence(
2328                    PortletPreferencesPersistence portletPreferencesPersistence) {
2329                    this.portletPreferencesPersistence = portletPreferencesPersistence;
2330            }
2331    
2332            /**
2333             * Returns the portlet preferences finder.
2334             *
2335             * @return the portlet preferences finder
2336             */
2337            public PortletPreferencesFinder getPortletPreferencesFinder() {
2338                    return portletPreferencesFinder;
2339            }
2340    
2341            /**
2342             * Sets the portlet preferences finder.
2343             *
2344             * @param portletPreferencesFinder the portlet preferences finder
2345             */
2346            public void setPortletPreferencesFinder(
2347                    PortletPreferencesFinder portletPreferencesFinder) {
2348                    this.portletPreferencesFinder = portletPreferencesFinder;
2349            }
2350    
2351            /**
2352             * Returns the quartz local service.
2353             *
2354             * @return the quartz local service
2355             */
2356            public com.liferay.portal.service.QuartzLocalService getQuartzLocalService() {
2357                    return quartzLocalService;
2358            }
2359    
2360            /**
2361             * Sets the quartz local service.
2362             *
2363             * @param quartzLocalService the quartz local service
2364             */
2365            public void setQuartzLocalService(
2366                    com.liferay.portal.service.QuartzLocalService quartzLocalService) {
2367                    this.quartzLocalService = quartzLocalService;
2368            }
2369    
2370            /**
2371             * Returns the region remote service.
2372             *
2373             * @return the region remote service
2374             */
2375            public com.liferay.portal.service.RegionService getRegionService() {
2376                    return regionService;
2377            }
2378    
2379            /**
2380             * Sets the region remote service.
2381             *
2382             * @param regionService the region remote service
2383             */
2384            public void setRegionService(
2385                    com.liferay.portal.service.RegionService regionService) {
2386                    this.regionService = regionService;
2387            }
2388    
2389            /**
2390             * Returns the region persistence.
2391             *
2392             * @return the region persistence
2393             */
2394            public RegionPersistence getRegionPersistence() {
2395                    return regionPersistence;
2396            }
2397    
2398            /**
2399             * Sets the region persistence.
2400             *
2401             * @param regionPersistence the region persistence
2402             */
2403            public void setRegionPersistence(RegionPersistence regionPersistence) {
2404                    this.regionPersistence = regionPersistence;
2405            }
2406    
2407            /**
2408             * Returns the release local service.
2409             *
2410             * @return the release local service
2411             */
2412            public com.liferay.portal.service.ReleaseLocalService getReleaseLocalService() {
2413                    return releaseLocalService;
2414            }
2415    
2416            /**
2417             * Sets the release local service.
2418             *
2419             * @param releaseLocalService the release local service
2420             */
2421            public void setReleaseLocalService(
2422                    com.liferay.portal.service.ReleaseLocalService releaseLocalService) {
2423                    this.releaseLocalService = releaseLocalService;
2424            }
2425    
2426            /**
2427             * Returns the release persistence.
2428             *
2429             * @return the release persistence
2430             */
2431            public ReleasePersistence getReleasePersistence() {
2432                    return releasePersistence;
2433            }
2434    
2435            /**
2436             * Sets the release persistence.
2437             *
2438             * @param releasePersistence the release persistence
2439             */
2440            public void setReleasePersistence(ReleasePersistence releasePersistence) {
2441                    this.releasePersistence = releasePersistence;
2442            }
2443    
2444            /**
2445             * Returns the repository local service.
2446             *
2447             * @return the repository local service
2448             */
2449            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
2450                    return repositoryLocalService;
2451            }
2452    
2453            /**
2454             * Sets the repository local service.
2455             *
2456             * @param repositoryLocalService the repository local service
2457             */
2458            public void setRepositoryLocalService(
2459                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
2460                    this.repositoryLocalService = repositoryLocalService;
2461            }
2462    
2463            /**
2464             * Returns the repository remote service.
2465             *
2466             * @return the repository remote service
2467             */
2468            public com.liferay.portal.service.RepositoryService getRepositoryService() {
2469                    return repositoryService;
2470            }
2471    
2472            /**
2473             * Sets the repository remote service.
2474             *
2475             * @param repositoryService the repository remote service
2476             */
2477            public void setRepositoryService(
2478                    com.liferay.portal.service.RepositoryService repositoryService) {
2479                    this.repositoryService = repositoryService;
2480            }
2481    
2482            /**
2483             * Returns the repository persistence.
2484             *
2485             * @return the repository persistence
2486             */
2487            public RepositoryPersistence getRepositoryPersistence() {
2488                    return repositoryPersistence;
2489            }
2490    
2491            /**
2492             * Sets the repository persistence.
2493             *
2494             * @param repositoryPersistence the repository persistence
2495             */
2496            public void setRepositoryPersistence(
2497                    RepositoryPersistence repositoryPersistence) {
2498                    this.repositoryPersistence = repositoryPersistence;
2499            }
2500    
2501            /**
2502             * Returns the repository entry local service.
2503             *
2504             * @return the repository entry local service
2505             */
2506            public com.liferay.portal.service.RepositoryEntryLocalService getRepositoryEntryLocalService() {
2507                    return repositoryEntryLocalService;
2508            }
2509    
2510            /**
2511             * Sets the repository entry local service.
2512             *
2513             * @param repositoryEntryLocalService the repository entry local service
2514             */
2515            public void setRepositoryEntryLocalService(
2516                    com.liferay.portal.service.RepositoryEntryLocalService repositoryEntryLocalService) {
2517                    this.repositoryEntryLocalService = repositoryEntryLocalService;
2518            }
2519    
2520            /**
2521             * Returns the repository entry persistence.
2522             *
2523             * @return the repository entry persistence
2524             */
2525            public RepositoryEntryPersistence getRepositoryEntryPersistence() {
2526                    return repositoryEntryPersistence;
2527            }
2528    
2529            /**
2530             * Sets the repository entry persistence.
2531             *
2532             * @param repositoryEntryPersistence the repository entry persistence
2533             */
2534            public void setRepositoryEntryPersistence(
2535                    RepositoryEntryPersistence repositoryEntryPersistence) {
2536                    this.repositoryEntryPersistence = repositoryEntryPersistence;
2537            }
2538    
2539            /**
2540             * Returns the resource local service.
2541             *
2542             * @return the resource local service
2543             */
2544            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
2545                    return resourceLocalService;
2546            }
2547    
2548            /**
2549             * Sets the resource local service.
2550             *
2551             * @param resourceLocalService the resource local service
2552             */
2553            public void setResourceLocalService(
2554                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
2555                    this.resourceLocalService = resourceLocalService;
2556            }
2557    
2558            /**
2559             * Returns the resource action local service.
2560             *
2561             * @return the resource action local service
2562             */
2563            public com.liferay.portal.service.ResourceActionLocalService getResourceActionLocalService() {
2564                    return resourceActionLocalService;
2565            }
2566    
2567            /**
2568             * Sets the resource action local service.
2569             *
2570             * @param resourceActionLocalService the resource action local service
2571             */
2572            public void setResourceActionLocalService(
2573                    com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService) {
2574                    this.resourceActionLocalService = resourceActionLocalService;
2575            }
2576    
2577            /**
2578             * Returns the resource action persistence.
2579             *
2580             * @return the resource action persistence
2581             */
2582            public ResourceActionPersistence getResourceActionPersistence() {
2583                    return resourceActionPersistence;
2584            }
2585    
2586            /**
2587             * Sets the resource action persistence.
2588             *
2589             * @param resourceActionPersistence the resource action persistence
2590             */
2591            public void setResourceActionPersistence(
2592                    ResourceActionPersistence resourceActionPersistence) {
2593                    this.resourceActionPersistence = resourceActionPersistence;
2594            }
2595    
2596            /**
2597             * Returns the resource block local service.
2598             *
2599             * @return the resource block local service
2600             */
2601            public com.liferay.portal.service.ResourceBlockLocalService getResourceBlockLocalService() {
2602                    return resourceBlockLocalService;
2603            }
2604    
2605            /**
2606             * Sets the resource block local service.
2607             *
2608             * @param resourceBlockLocalService the resource block local service
2609             */
2610            public void setResourceBlockLocalService(
2611                    com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService) {
2612                    this.resourceBlockLocalService = resourceBlockLocalService;
2613            }
2614    
2615            /**
2616             * Returns the resource block remote service.
2617             *
2618             * @return the resource block remote service
2619             */
2620            public com.liferay.portal.service.ResourceBlockService getResourceBlockService() {
2621                    return resourceBlockService;
2622            }
2623    
2624            /**
2625             * Sets the resource block remote service.
2626             *
2627             * @param resourceBlockService the resource block remote service
2628             */
2629            public void setResourceBlockService(
2630                    com.liferay.portal.service.ResourceBlockService resourceBlockService) {
2631                    this.resourceBlockService = resourceBlockService;
2632            }
2633    
2634            /**
2635             * Returns the resource block persistence.
2636             *
2637             * @return the resource block persistence
2638             */
2639            public ResourceBlockPersistence getResourceBlockPersistence() {
2640                    return resourceBlockPersistence;
2641            }
2642    
2643            /**
2644             * Sets the resource block persistence.
2645             *
2646             * @param resourceBlockPersistence the resource block persistence
2647             */
2648            public void setResourceBlockPersistence(
2649                    ResourceBlockPersistence resourceBlockPersistence) {
2650                    this.resourceBlockPersistence = resourceBlockPersistence;
2651            }
2652    
2653            /**
2654             * Returns the resource block finder.
2655             *
2656             * @return the resource block finder
2657             */
2658            public ResourceBlockFinder getResourceBlockFinder() {
2659                    return resourceBlockFinder;
2660            }
2661    
2662            /**
2663             * Sets the resource block finder.
2664             *
2665             * @param resourceBlockFinder the resource block finder
2666             */
2667            public void setResourceBlockFinder(ResourceBlockFinder resourceBlockFinder) {
2668                    this.resourceBlockFinder = resourceBlockFinder;
2669            }
2670    
2671            /**
2672             * Returns the resource block permission local service.
2673             *
2674             * @return the resource block permission local service
2675             */
2676            public com.liferay.portal.service.ResourceBlockPermissionLocalService getResourceBlockPermissionLocalService() {
2677                    return resourceBlockPermissionLocalService;
2678            }
2679    
2680            /**
2681             * Sets the resource block permission local service.
2682             *
2683             * @param resourceBlockPermissionLocalService the resource block permission local service
2684             */
2685            public void setResourceBlockPermissionLocalService(
2686                    com.liferay.portal.service.ResourceBlockPermissionLocalService resourceBlockPermissionLocalService) {
2687                    this.resourceBlockPermissionLocalService = resourceBlockPermissionLocalService;
2688            }
2689    
2690            /**
2691             * Returns the resource block permission persistence.
2692             *
2693             * @return the resource block permission persistence
2694             */
2695            public ResourceBlockPermissionPersistence getResourceBlockPermissionPersistence() {
2696                    return resourceBlockPermissionPersistence;
2697            }
2698    
2699            /**
2700             * Sets the resource block permission persistence.
2701             *
2702             * @param resourceBlockPermissionPersistence the resource block permission persistence
2703             */
2704            public void setResourceBlockPermissionPersistence(
2705                    ResourceBlockPermissionPersistence resourceBlockPermissionPersistence) {
2706                    this.resourceBlockPermissionPersistence = resourceBlockPermissionPersistence;
2707            }
2708    
2709            /**
2710             * Returns the resource permission local service.
2711             *
2712             * @return the resource permission local service
2713             */
2714            public com.liferay.portal.service.ResourcePermissionLocalService getResourcePermissionLocalService() {
2715                    return resourcePermissionLocalService;
2716            }
2717    
2718            /**
2719             * Sets the resource permission local service.
2720             *
2721             * @param resourcePermissionLocalService the resource permission local service
2722             */
2723            public void setResourcePermissionLocalService(
2724                    com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService) {
2725                    this.resourcePermissionLocalService = resourcePermissionLocalService;
2726            }
2727    
2728            /**
2729             * Returns the resource permission remote service.
2730             *
2731             * @return the resource permission remote service
2732             */
2733            public com.liferay.portal.service.ResourcePermissionService getResourcePermissionService() {
2734                    return resourcePermissionService;
2735            }
2736    
2737            /**
2738             * Sets the resource permission remote service.
2739             *
2740             * @param resourcePermissionService the resource permission remote service
2741             */
2742            public void setResourcePermissionService(
2743                    com.liferay.portal.service.ResourcePermissionService resourcePermissionService) {
2744                    this.resourcePermissionService = resourcePermissionService;
2745            }
2746    
2747            /**
2748             * Returns the resource permission persistence.
2749             *
2750             * @return the resource permission persistence
2751             */
2752            public ResourcePermissionPersistence getResourcePermissionPersistence() {
2753                    return resourcePermissionPersistence;
2754            }
2755    
2756            /**
2757             * Sets the resource permission persistence.
2758             *
2759             * @param resourcePermissionPersistence the resource permission persistence
2760             */
2761            public void setResourcePermissionPersistence(
2762                    ResourcePermissionPersistence resourcePermissionPersistence) {
2763                    this.resourcePermissionPersistence = resourcePermissionPersistence;
2764            }
2765    
2766            /**
2767             * Returns the resource permission finder.
2768             *
2769             * @return the resource permission finder
2770             */
2771            public ResourcePermissionFinder getResourcePermissionFinder() {
2772                    return resourcePermissionFinder;
2773            }
2774    
2775            /**
2776             * Sets the resource permission finder.
2777             *
2778             * @param resourcePermissionFinder the resource permission finder
2779             */
2780            public void setResourcePermissionFinder(
2781                    ResourcePermissionFinder resourcePermissionFinder) {
2782                    this.resourcePermissionFinder = resourcePermissionFinder;
2783            }
2784    
2785            /**
2786             * Returns the resource type permission local service.
2787             *
2788             * @return the resource type permission local service
2789             */
2790            public com.liferay.portal.service.ResourceTypePermissionLocalService getResourceTypePermissionLocalService() {
2791                    return resourceTypePermissionLocalService;
2792            }
2793    
2794            /**
2795             * Sets the resource type permission local service.
2796             *
2797             * @param resourceTypePermissionLocalService the resource type permission local service
2798             */
2799            public void setResourceTypePermissionLocalService(
2800                    com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService) {
2801                    this.resourceTypePermissionLocalService = resourceTypePermissionLocalService;
2802            }
2803    
2804            /**
2805             * Returns the resource type permission persistence.
2806             *
2807             * @return the resource type permission persistence
2808             */
2809            public ResourceTypePermissionPersistence getResourceTypePermissionPersistence() {
2810                    return resourceTypePermissionPersistence;
2811            }
2812    
2813            /**
2814             * Sets the resource type permission persistence.
2815             *
2816             * @param resourceTypePermissionPersistence the resource type permission persistence
2817             */
2818            public void setResourceTypePermissionPersistence(
2819                    ResourceTypePermissionPersistence resourceTypePermissionPersistence) {
2820                    this.resourceTypePermissionPersistence = resourceTypePermissionPersistence;
2821            }
2822    
2823            /**
2824             * Returns the resource type permission finder.
2825             *
2826             * @return the resource type permission finder
2827             */
2828            public ResourceTypePermissionFinder getResourceTypePermissionFinder() {
2829                    return resourceTypePermissionFinder;
2830            }
2831    
2832            /**
2833             * Sets the resource type permission finder.
2834             *
2835             * @param resourceTypePermissionFinder the resource type permission finder
2836             */
2837            public void setResourceTypePermissionFinder(
2838                    ResourceTypePermissionFinder resourceTypePermissionFinder) {
2839                    this.resourceTypePermissionFinder = resourceTypePermissionFinder;
2840            }
2841    
2842            /**
2843             * Returns the role local service.
2844             *
2845             * @return the role local service
2846             */
2847            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
2848                    return roleLocalService;
2849            }
2850    
2851            /**
2852             * Sets the role local service.
2853             *
2854             * @param roleLocalService the role local service
2855             */
2856            public void setRoleLocalService(
2857                    com.liferay.portal.service.RoleLocalService roleLocalService) {
2858                    this.roleLocalService = roleLocalService;
2859            }
2860    
2861            /**
2862             * Returns the role remote service.
2863             *
2864             * @return the role remote service
2865             */
2866            public com.liferay.portal.service.RoleService getRoleService() {
2867                    return roleService;
2868            }
2869    
2870            /**
2871             * Sets the role remote service.
2872             *
2873             * @param roleService the role remote service
2874             */
2875            public void setRoleService(
2876                    com.liferay.portal.service.RoleService roleService) {
2877                    this.roleService = roleService;
2878            }
2879    
2880            /**
2881             * Returns the role persistence.
2882             *
2883             * @return the role persistence
2884             */
2885            public RolePersistence getRolePersistence() {
2886                    return rolePersistence;
2887            }
2888    
2889            /**
2890             * Sets the role persistence.
2891             *
2892             * @param rolePersistence the role persistence
2893             */
2894            public void setRolePersistence(RolePersistence rolePersistence) {
2895                    this.rolePersistence = rolePersistence;
2896            }
2897    
2898            /**
2899             * Returns the role finder.
2900             *
2901             * @return the role finder
2902             */
2903            public RoleFinder getRoleFinder() {
2904                    return roleFinder;
2905            }
2906    
2907            /**
2908             * Sets the role finder.
2909             *
2910             * @param roleFinder the role finder
2911             */
2912            public void setRoleFinder(RoleFinder roleFinder) {
2913                    this.roleFinder = roleFinder;
2914            }
2915    
2916            /**
2917             * Returns the service component local service.
2918             *
2919             * @return the service component local service
2920             */
2921            public com.liferay.portal.service.ServiceComponentLocalService getServiceComponentLocalService() {
2922                    return serviceComponentLocalService;
2923            }
2924    
2925            /**
2926             * Sets the service component local service.
2927             *
2928             * @param serviceComponentLocalService the service component local service
2929             */
2930            public void setServiceComponentLocalService(
2931                    com.liferay.portal.service.ServiceComponentLocalService serviceComponentLocalService) {
2932                    this.serviceComponentLocalService = serviceComponentLocalService;
2933            }
2934    
2935            /**
2936             * Returns the service component persistence.
2937             *
2938             * @return the service component persistence
2939             */
2940            public ServiceComponentPersistence getServiceComponentPersistence() {
2941                    return serviceComponentPersistence;
2942            }
2943    
2944            /**
2945             * Sets the service component persistence.
2946             *
2947             * @param serviceComponentPersistence the service component persistence
2948             */
2949            public void setServiceComponentPersistence(
2950                    ServiceComponentPersistence serviceComponentPersistence) {
2951                    this.serviceComponentPersistence = serviceComponentPersistence;
2952            }
2953    
2954            /**
2955             * Returns the shard local service.
2956             *
2957             * @return the shard local service
2958             */
2959            public com.liferay.portal.service.ShardLocalService getShardLocalService() {
2960                    return shardLocalService;
2961            }
2962    
2963            /**
2964             * Sets the shard local service.
2965             *
2966             * @param shardLocalService the shard local service
2967             */
2968            public void setShardLocalService(
2969                    com.liferay.portal.service.ShardLocalService shardLocalService) {
2970                    this.shardLocalService = shardLocalService;
2971            }
2972    
2973            /**
2974             * Returns the shard persistence.
2975             *
2976             * @return the shard persistence
2977             */
2978            public ShardPersistence getShardPersistence() {
2979                    return shardPersistence;
2980            }
2981    
2982            /**
2983             * Sets the shard persistence.
2984             *
2985             * @param shardPersistence the shard persistence
2986             */
2987            public void setShardPersistence(ShardPersistence shardPersistence) {
2988                    this.shardPersistence = shardPersistence;
2989            }
2990    
2991            /**
2992             * Returns the staging local service.
2993             *
2994             * @return the staging local service
2995             */
2996            public com.liferay.portal.service.StagingLocalService getStagingLocalService() {
2997                    return stagingLocalService;
2998            }
2999    
3000            /**
3001             * Sets the staging local service.
3002             *
3003             * @param stagingLocalService the staging local service
3004             */
3005            public void setStagingLocalService(
3006                    com.liferay.portal.service.StagingLocalService stagingLocalService) {
3007                    this.stagingLocalService = stagingLocalService;
3008            }
3009    
3010            /**
3011             * Returns the staging remote service.
3012             *
3013             * @return the staging remote service
3014             */
3015            public com.liferay.portal.service.StagingService getStagingService() {
3016                    return stagingService;
3017            }
3018    
3019            /**
3020             * Sets the staging remote service.
3021             *
3022             * @param stagingService the staging remote service
3023             */
3024            public void setStagingService(
3025                    com.liferay.portal.service.StagingService stagingService) {
3026                    this.stagingService = stagingService;
3027            }
3028    
3029            /**
3030             * Returns the subscription local service.
3031             *
3032             * @return the subscription local service
3033             */
3034            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
3035                    return subscriptionLocalService;
3036            }
3037    
3038            /**
3039             * Sets the subscription local service.
3040             *
3041             * @param subscriptionLocalService the subscription local service
3042             */
3043            public void setSubscriptionLocalService(
3044                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
3045                    this.subscriptionLocalService = subscriptionLocalService;
3046            }
3047    
3048            /**
3049             * Returns the subscription persistence.
3050             *
3051             * @return the subscription persistence
3052             */
3053            public SubscriptionPersistence getSubscriptionPersistence() {
3054                    return subscriptionPersistence;
3055            }
3056    
3057            /**
3058             * Sets the subscription persistence.
3059             *
3060             * @param subscriptionPersistence the subscription persistence
3061             */
3062            public void setSubscriptionPersistence(
3063                    SubscriptionPersistence subscriptionPersistence) {
3064                    this.subscriptionPersistence = subscriptionPersistence;
3065            }
3066    
3067            /**
3068             * Returns the system event local service.
3069             *
3070             * @return the system event local service
3071             */
3072            public com.liferay.portal.service.SystemEventLocalService getSystemEventLocalService() {
3073                    return systemEventLocalService;
3074            }
3075    
3076            /**
3077             * Sets the system event local service.
3078             *
3079             * @param systemEventLocalService the system event local service
3080             */
3081            public void setSystemEventLocalService(
3082                    com.liferay.portal.service.SystemEventLocalService systemEventLocalService) {
3083                    this.systemEventLocalService = systemEventLocalService;
3084            }
3085    
3086            /**
3087             * Returns the system event persistence.
3088             *
3089             * @return the system event persistence
3090             */
3091            public SystemEventPersistence getSystemEventPersistence() {
3092                    return systemEventPersistence;
3093            }
3094    
3095            /**
3096             * Sets the system event persistence.
3097             *
3098             * @param systemEventPersistence the system event persistence
3099             */
3100            public void setSystemEventPersistence(
3101                    SystemEventPersistence systemEventPersistence) {
3102                    this.systemEventPersistence = systemEventPersistence;
3103            }
3104    
3105            /**
3106             * Returns the team local service.
3107             *
3108             * @return the team local service
3109             */
3110            public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
3111                    return teamLocalService;
3112            }
3113    
3114            /**
3115             * Sets the team local service.
3116             *
3117             * @param teamLocalService the team local service
3118             */
3119            public void setTeamLocalService(
3120                    com.liferay.portal.service.TeamLocalService teamLocalService) {
3121                    this.teamLocalService = teamLocalService;
3122            }
3123    
3124            /**
3125             * Returns the team remote service.
3126             *
3127             * @return the team remote service
3128             */
3129            public com.liferay.portal.service.TeamService getTeamService() {
3130                    return teamService;
3131            }
3132    
3133            /**
3134             * Sets the team remote service.
3135             *
3136             * @param teamService the team remote service
3137             */
3138            public void setTeamService(
3139                    com.liferay.portal.service.TeamService teamService) {
3140                    this.teamService = teamService;
3141            }
3142    
3143            /**
3144             * Returns the team persistence.
3145             *
3146             * @return the team persistence
3147             */
3148            public TeamPersistence getTeamPersistence() {
3149                    return teamPersistence;
3150            }
3151    
3152            /**
3153             * Sets the team persistence.
3154             *
3155             * @param teamPersistence the team persistence
3156             */
3157            public void setTeamPersistence(TeamPersistence teamPersistence) {
3158                    this.teamPersistence = teamPersistence;
3159            }
3160    
3161            /**
3162             * Returns the team finder.
3163             *
3164             * @return the team finder
3165             */
3166            public TeamFinder getTeamFinder() {
3167                    return teamFinder;
3168            }
3169    
3170            /**
3171             * Sets the team finder.
3172             *
3173             * @param teamFinder the team finder
3174             */
3175            public void setTeamFinder(TeamFinder teamFinder) {
3176                    this.teamFinder = teamFinder;
3177            }
3178    
3179            /**
3180             * Returns the theme local service.
3181             *
3182             * @return the theme local service
3183             */
3184            public com.liferay.portal.service.ThemeLocalService getThemeLocalService() {
3185                    return themeLocalService;
3186            }
3187    
3188            /**
3189             * Sets the theme local service.
3190             *
3191             * @param themeLocalService the theme local service
3192             */
3193            public void setThemeLocalService(
3194                    com.liferay.portal.service.ThemeLocalService themeLocalService) {
3195                    this.themeLocalService = themeLocalService;
3196            }
3197    
3198            /**
3199             * Returns the theme remote service.
3200             *
3201             * @return the theme remote service
3202             */
3203            public com.liferay.portal.service.ThemeService getThemeService() {
3204                    return themeService;
3205            }
3206    
3207            /**
3208             * Sets the theme remote service.
3209             *
3210             * @param themeService the theme remote service
3211             */
3212            public void setThemeService(
3213                    com.liferay.portal.service.ThemeService themeService) {
3214                    this.themeService = themeService;
3215            }
3216    
3217            /**
3218             * Returns the ticket local service.
3219             *
3220             * @return the ticket local service
3221             */
3222            public com.liferay.portal.service.TicketLocalService getTicketLocalService() {
3223                    return ticketLocalService;
3224            }
3225    
3226            /**
3227             * Sets the ticket local service.
3228             *
3229             * @param ticketLocalService the ticket local service
3230             */
3231            public void setTicketLocalService(
3232                    com.liferay.portal.service.TicketLocalService ticketLocalService) {
3233                    this.ticketLocalService = ticketLocalService;
3234            }
3235    
3236            /**
3237             * Returns the ticket persistence.
3238             *
3239             * @return the ticket persistence
3240             */
3241            public TicketPersistence getTicketPersistence() {
3242                    return ticketPersistence;
3243            }
3244    
3245            /**
3246             * Sets the ticket persistence.
3247             *
3248             * @param ticketPersistence the ticket persistence
3249             */
3250            public void setTicketPersistence(TicketPersistence ticketPersistence) {
3251                    this.ticketPersistence = ticketPersistence;
3252            }
3253    
3254            /**
3255             * Returns the user local service.
3256             *
3257             * @return the user local service
3258             */
3259            public com.liferay.portal.service.UserLocalService getUserLocalService() {
3260                    return userLocalService;
3261            }
3262    
3263            /**
3264             * Sets the user local service.
3265             *
3266             * @param userLocalService the user local service
3267             */
3268            public void setUserLocalService(
3269                    com.liferay.portal.service.UserLocalService userLocalService) {
3270                    this.userLocalService = userLocalService;
3271            }
3272    
3273            /**
3274             * Returns the user remote service.
3275             *
3276             * @return the user remote service
3277             */
3278            public com.liferay.portal.service.UserService getUserService() {
3279                    return userService;
3280            }
3281    
3282            /**
3283             * Sets the user remote service.
3284             *
3285             * @param userService the user remote service
3286             */
3287            public void setUserService(
3288                    com.liferay.portal.service.UserService userService) {
3289                    this.userService = userService;
3290            }
3291    
3292            /**
3293             * Returns the user persistence.
3294             *
3295             * @return the user persistence
3296             */
3297            public UserPersistence getUserPersistence() {
3298                    return userPersistence;
3299            }
3300    
3301            /**
3302             * Sets the user persistence.
3303             *
3304             * @param userPersistence the user persistence
3305             */
3306            public void setUserPersistence(UserPersistence userPersistence) {
3307                    this.userPersistence = userPersistence;
3308            }
3309    
3310            /**
3311             * Returns the user finder.
3312             *
3313             * @return the user finder
3314             */
3315            public UserFinder getUserFinder() {
3316                    return userFinder;
3317            }
3318    
3319            /**
3320             * Sets the user finder.
3321             *
3322             * @param userFinder the user finder
3323             */
3324            public void setUserFinder(UserFinder userFinder) {
3325                    this.userFinder = userFinder;
3326            }
3327    
3328            /**
3329             * Returns the user group local service.
3330             *
3331             * @return the user group local service
3332             */
3333            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
3334                    return userGroupLocalService;
3335            }
3336    
3337            /**
3338             * Sets the user group local service.
3339             *
3340             * @param userGroupLocalService the user group local service
3341             */
3342            public void setUserGroupLocalService(
3343                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
3344                    this.userGroupLocalService = userGroupLocalService;
3345            }
3346    
3347            /**
3348             * Returns the user group remote service.
3349             *
3350             * @return the user group remote service
3351             */
3352            public com.liferay.portal.service.UserGroupService getUserGroupService() {
3353                    return userGroupService;
3354            }
3355    
3356            /**
3357             * Sets the user group remote service.
3358             *
3359             * @param userGroupService the user group remote service
3360             */
3361            public void setUserGroupService(
3362                    com.liferay.portal.service.UserGroupService userGroupService) {
3363                    this.userGroupService = userGroupService;
3364            }
3365    
3366            /**
3367             * Returns the user group persistence.
3368             *
3369             * @return the user group persistence
3370             */
3371            public UserGroupPersistence getUserGroupPersistence() {
3372                    return userGroupPersistence;
3373            }
3374    
3375            /**
3376             * Sets the user group persistence.
3377             *
3378             * @param userGroupPersistence the user group persistence
3379             */
3380            public void setUserGroupPersistence(
3381                    UserGroupPersistence userGroupPersistence) {
3382                    this.userGroupPersistence = userGroupPersistence;
3383            }
3384    
3385            /**
3386             * Returns the user group finder.
3387             *
3388             * @return the user group finder
3389             */
3390            public UserGroupFinder getUserGroupFinder() {
3391                    return userGroupFinder;
3392            }
3393    
3394            /**
3395             * Sets the user group finder.
3396             *
3397             * @param userGroupFinder the user group finder
3398             */
3399            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
3400                    this.userGroupFinder = userGroupFinder;
3401            }
3402    
3403            /**
3404             * Returns the user group group role local service.
3405             *
3406             * @return the user group group role local service
3407             */
3408            public com.liferay.portal.service.UserGroupGroupRoleLocalService getUserGroupGroupRoleLocalService() {
3409                    return userGroupGroupRoleLocalService;
3410            }
3411    
3412            /**
3413             * Sets the user group group role local service.
3414             *
3415             * @param userGroupGroupRoleLocalService the user group group role local service
3416             */
3417            public void setUserGroupGroupRoleLocalService(
3418                    com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService) {
3419                    this.userGroupGroupRoleLocalService = userGroupGroupRoleLocalService;
3420            }
3421    
3422            /**
3423             * Returns the user group group role remote service.
3424             *
3425             * @return the user group group role remote service
3426             */
3427            public com.liferay.portal.service.UserGroupGroupRoleService getUserGroupGroupRoleService() {
3428                    return userGroupGroupRoleService;
3429            }
3430    
3431            /**
3432             * Sets the user group group role remote service.
3433             *
3434             * @param userGroupGroupRoleService the user group group role remote service
3435             */
3436            public void setUserGroupGroupRoleService(
3437                    com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService) {
3438                    this.userGroupGroupRoleService = userGroupGroupRoleService;
3439            }
3440    
3441            /**
3442             * Returns the user group group role persistence.
3443             *
3444             * @return the user group group role persistence
3445             */
3446            public UserGroupGroupRolePersistence getUserGroupGroupRolePersistence() {
3447                    return userGroupGroupRolePersistence;
3448            }
3449    
3450            /**
3451             * Sets the user group group role persistence.
3452             *
3453             * @param userGroupGroupRolePersistence the user group group role persistence
3454             */
3455            public void setUserGroupGroupRolePersistence(
3456                    UserGroupGroupRolePersistence userGroupGroupRolePersistence) {
3457                    this.userGroupGroupRolePersistence = userGroupGroupRolePersistence;
3458            }
3459    
3460            /**
3461             * Returns the user group role local service.
3462             *
3463             * @return the user group role local service
3464             */
3465            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
3466                    return userGroupRoleLocalService;
3467            }
3468    
3469            /**
3470             * Sets the user group role local service.
3471             *
3472             * @param userGroupRoleLocalService the user group role local service
3473             */
3474            public void setUserGroupRoleLocalService(
3475                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
3476                    this.userGroupRoleLocalService = userGroupRoleLocalService;
3477            }
3478    
3479            /**
3480             * Returns the user group role remote service.
3481             *
3482             * @return the user group role remote service
3483             */
3484            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
3485                    return userGroupRoleService;
3486            }
3487    
3488            /**
3489             * Sets the user group role remote service.
3490             *
3491             * @param userGroupRoleService the user group role remote service
3492             */
3493            public void setUserGroupRoleService(
3494                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
3495                    this.userGroupRoleService = userGroupRoleService;
3496            }
3497    
3498            /**
3499             * Returns the user group role persistence.
3500             *
3501             * @return the user group role persistence
3502             */
3503            public UserGroupRolePersistence getUserGroupRolePersistence() {
3504                    return userGroupRolePersistence;
3505            }
3506    
3507            /**
3508             * Sets the user group role persistence.
3509             *
3510             * @param userGroupRolePersistence the user group role persistence
3511             */
3512            public void setUserGroupRolePersistence(
3513                    UserGroupRolePersistence userGroupRolePersistence) {
3514                    this.userGroupRolePersistence = userGroupRolePersistence;
3515            }
3516    
3517            /**
3518             * Returns the user group role finder.
3519             *
3520             * @return the user group role finder
3521             */
3522            public UserGroupRoleFinder getUserGroupRoleFinder() {
3523                    return userGroupRoleFinder;
3524            }
3525    
3526            /**
3527             * Sets the user group role finder.
3528             *
3529             * @param userGroupRoleFinder the user group role finder
3530             */
3531            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
3532                    this.userGroupRoleFinder = userGroupRoleFinder;
3533            }
3534    
3535            /**
3536             * Returns the user ID mapper local service.
3537             *
3538             * @return the user ID mapper local service
3539             */
3540            public com.liferay.portal.service.UserIdMapperLocalService getUserIdMapperLocalService() {
3541                    return userIdMapperLocalService;
3542            }
3543    
3544            /**
3545             * Sets the user ID mapper local service.
3546             *
3547             * @param userIdMapperLocalService the user ID mapper local service
3548             */
3549            public void setUserIdMapperLocalService(
3550                    com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService) {
3551                    this.userIdMapperLocalService = userIdMapperLocalService;
3552            }
3553    
3554            /**
3555             * Returns the user ID mapper persistence.
3556             *
3557             * @return the user ID mapper persistence
3558             */
3559            public UserIdMapperPersistence getUserIdMapperPersistence() {
3560                    return userIdMapperPersistence;
3561            }
3562    
3563            /**
3564             * Sets the user ID mapper persistence.
3565             *
3566             * @param userIdMapperPersistence the user ID mapper persistence
3567             */
3568            public void setUserIdMapperPersistence(
3569                    UserIdMapperPersistence userIdMapperPersistence) {
3570                    this.userIdMapperPersistence = userIdMapperPersistence;
3571            }
3572    
3573            /**
3574             * Returns the user notification delivery local service.
3575             *
3576             * @return the user notification delivery local service
3577             */
3578            public com.liferay.portal.service.UserNotificationDeliveryLocalService getUserNotificationDeliveryLocalService() {
3579                    return userNotificationDeliveryLocalService;
3580            }
3581    
3582            /**
3583             * Sets the user notification delivery local service.
3584             *
3585             * @param userNotificationDeliveryLocalService the user notification delivery local service
3586             */
3587            public void setUserNotificationDeliveryLocalService(
3588                    com.liferay.portal.service.UserNotificationDeliveryLocalService userNotificationDeliveryLocalService) {
3589                    this.userNotificationDeliveryLocalService = userNotificationDeliveryLocalService;
3590            }
3591    
3592            /**
3593             * Returns the user notification delivery persistence.
3594             *
3595             * @return the user notification delivery persistence
3596             */
3597            public UserNotificationDeliveryPersistence getUserNotificationDeliveryPersistence() {
3598                    return userNotificationDeliveryPersistence;
3599            }
3600    
3601            /**
3602             * Sets the user notification delivery persistence.
3603             *
3604             * @param userNotificationDeliveryPersistence the user notification delivery persistence
3605             */
3606            public void setUserNotificationDeliveryPersistence(
3607                    UserNotificationDeliveryPersistence userNotificationDeliveryPersistence) {
3608                    this.userNotificationDeliveryPersistence = userNotificationDeliveryPersistence;
3609            }
3610    
3611            /**
3612             * Returns the user notification event local service.
3613             *
3614             * @return the user notification event local service
3615             */
3616            public com.liferay.portal.service.UserNotificationEventLocalService getUserNotificationEventLocalService() {
3617                    return userNotificationEventLocalService;
3618            }
3619    
3620            /**
3621             * Sets the user notification event local service.
3622             *
3623             * @param userNotificationEventLocalService the user notification event local service
3624             */
3625            public void setUserNotificationEventLocalService(
3626                    com.liferay.portal.service.UserNotificationEventLocalService userNotificationEventLocalService) {
3627                    this.userNotificationEventLocalService = userNotificationEventLocalService;
3628            }
3629    
3630            /**
3631             * Returns the user notification event persistence.
3632             *
3633             * @return the user notification event persistence
3634             */
3635            public UserNotificationEventPersistence getUserNotificationEventPersistence() {
3636                    return userNotificationEventPersistence;
3637            }
3638    
3639            /**
3640             * Sets the user notification event persistence.
3641             *
3642             * @param userNotificationEventPersistence the user notification event persistence
3643             */
3644            public void setUserNotificationEventPersistence(
3645                    UserNotificationEventPersistence userNotificationEventPersistence) {
3646                    this.userNotificationEventPersistence = userNotificationEventPersistence;
3647            }
3648    
3649            /**
3650             * Returns the user tracker local service.
3651             *
3652             * @return the user tracker local service
3653             */
3654            public com.liferay.portal.service.UserTrackerLocalService getUserTrackerLocalService() {
3655                    return userTrackerLocalService;
3656            }
3657    
3658            /**
3659             * Sets the user tracker local service.
3660             *
3661             * @param userTrackerLocalService the user tracker local service
3662             */
3663            public void setUserTrackerLocalService(
3664                    com.liferay.portal.service.UserTrackerLocalService userTrackerLocalService) {
3665                    this.userTrackerLocalService = userTrackerLocalService;
3666            }
3667    
3668            /**
3669             * Returns the user tracker persistence.
3670             *
3671             * @return the user tracker persistence
3672             */
3673            public UserTrackerPersistence getUserTrackerPersistence() {
3674                    return userTrackerPersistence;
3675            }
3676    
3677            /**
3678             * Sets the user tracker persistence.
3679             *
3680             * @param userTrackerPersistence the user tracker persistence
3681             */
3682            public void setUserTrackerPersistence(
3683                    UserTrackerPersistence userTrackerPersistence) {
3684                    this.userTrackerPersistence = userTrackerPersistence;
3685            }
3686    
3687            /**
3688             * Returns the user tracker path local service.
3689             *
3690             * @return the user tracker path local service
3691             */
3692            public com.liferay.portal.service.UserTrackerPathLocalService getUserTrackerPathLocalService() {
3693                    return userTrackerPathLocalService;
3694            }
3695    
3696            /**
3697             * Sets the user tracker path local service.
3698             *
3699             * @param userTrackerPathLocalService the user tracker path local service
3700             */
3701            public void setUserTrackerPathLocalService(
3702                    com.liferay.portal.service.UserTrackerPathLocalService userTrackerPathLocalService) {
3703                    this.userTrackerPathLocalService = userTrackerPathLocalService;
3704            }
3705    
3706            /**
3707             * Returns the user tracker path persistence.
3708             *
3709             * @return the user tracker path persistence
3710             */
3711            public UserTrackerPathPersistence getUserTrackerPathPersistence() {
3712                    return userTrackerPathPersistence;
3713            }
3714    
3715            /**
3716             * Sets the user tracker path persistence.
3717             *
3718             * @param userTrackerPathPersistence the user tracker path persistence
3719             */
3720            public void setUserTrackerPathPersistence(
3721                    UserTrackerPathPersistence userTrackerPathPersistence) {
3722                    this.userTrackerPathPersistence = userTrackerPathPersistence;
3723            }
3724    
3725            /**
3726             * Returns the virtual host local service.
3727             *
3728             * @return the virtual host local service
3729             */
3730            public com.liferay.portal.service.VirtualHostLocalService getVirtualHostLocalService() {
3731                    return virtualHostLocalService;
3732            }
3733    
3734            /**
3735             * Sets the virtual host local service.
3736             *
3737             * @param virtualHostLocalService the virtual host local service
3738             */
3739            public void setVirtualHostLocalService(
3740                    com.liferay.portal.service.VirtualHostLocalService virtualHostLocalService) {
3741                    this.virtualHostLocalService = virtualHostLocalService;
3742            }
3743    
3744            /**
3745             * Returns the virtual host persistence.
3746             *
3747             * @return the virtual host persistence
3748             */
3749            public VirtualHostPersistence getVirtualHostPersistence() {
3750                    return virtualHostPersistence;
3751            }
3752    
3753            /**
3754             * Sets the virtual host persistence.
3755             *
3756             * @param virtualHostPersistence the virtual host persistence
3757             */
3758            public void setVirtualHostPersistence(
3759                    VirtualHostPersistence virtualHostPersistence) {
3760                    this.virtualHostPersistence = virtualHostPersistence;
3761            }
3762    
3763            /**
3764             * Returns the web d a v props local service.
3765             *
3766             * @return the web d a v props local service
3767             */
3768            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
3769                    return webDAVPropsLocalService;
3770            }
3771    
3772            /**
3773             * Sets the web d a v props local service.
3774             *
3775             * @param webDAVPropsLocalService the web d a v props local service
3776             */
3777            public void setWebDAVPropsLocalService(
3778                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
3779                    this.webDAVPropsLocalService = webDAVPropsLocalService;
3780            }
3781    
3782            /**
3783             * Returns the web d a v props persistence.
3784             *
3785             * @return the web d a v props persistence
3786             */
3787            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
3788                    return webDAVPropsPersistence;
3789            }
3790    
3791            /**
3792             * Sets the web d a v props persistence.
3793             *
3794             * @param webDAVPropsPersistence the web d a v props persistence
3795             */
3796            public void setWebDAVPropsPersistence(
3797                    WebDAVPropsPersistence webDAVPropsPersistence) {
3798                    this.webDAVPropsPersistence = webDAVPropsPersistence;
3799            }
3800    
3801            /**
3802             * Returns the website local service.
3803             *
3804             * @return the website local service
3805             */
3806            public com.liferay.portal.service.WebsiteLocalService getWebsiteLocalService() {
3807                    return websiteLocalService;
3808            }
3809    
3810            /**
3811             * Sets the website local service.
3812             *
3813             * @param websiteLocalService the website local service
3814             */
3815            public void setWebsiteLocalService(
3816                    com.liferay.portal.service.WebsiteLocalService websiteLocalService) {
3817                    this.websiteLocalService = websiteLocalService;
3818            }
3819    
3820            /**
3821             * Returns the website remote service.
3822             *
3823             * @return the website remote service
3824             */
3825            public com.liferay.portal.service.WebsiteService getWebsiteService() {
3826                    return websiteService;
3827            }
3828    
3829            /**
3830             * Sets the website remote service.
3831             *
3832             * @param websiteService the website remote service
3833             */
3834            public void setWebsiteService(
3835                    com.liferay.portal.service.WebsiteService websiteService) {
3836                    this.websiteService = websiteService;
3837            }
3838    
3839            /**
3840             * Returns the website persistence.
3841             *
3842             * @return the website persistence
3843             */
3844            public WebsitePersistence getWebsitePersistence() {
3845                    return websitePersistence;
3846            }
3847    
3848            /**
3849             * Sets the website persistence.
3850             *
3851             * @param websitePersistence the website persistence
3852             */
3853            public void setWebsitePersistence(WebsitePersistence websitePersistence) {
3854                    this.websitePersistence = websitePersistence;
3855            }
3856    
3857            /**
3858             * Returns the workflow definition link local service.
3859             *
3860             * @return the workflow definition link local service
3861             */
3862            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
3863                    return workflowDefinitionLinkLocalService;
3864            }
3865    
3866            /**
3867             * Sets the workflow definition link local service.
3868             *
3869             * @param workflowDefinitionLinkLocalService the workflow definition link local service
3870             */
3871            public void setWorkflowDefinitionLinkLocalService(
3872                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
3873                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
3874            }
3875    
3876            /**
3877             * Returns the workflow definition link persistence.
3878             *
3879             * @return the workflow definition link persistence
3880             */
3881            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
3882                    return workflowDefinitionLinkPersistence;
3883            }
3884    
3885            /**
3886             * Sets the workflow definition link persistence.
3887             *
3888             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
3889             */
3890            public void setWorkflowDefinitionLinkPersistence(
3891                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
3892                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
3893            }
3894    
3895            /**
3896             * Returns the workflow instance link local service.
3897             *
3898             * @return the workflow instance link local service
3899             */
3900            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
3901                    return workflowInstanceLinkLocalService;
3902            }
3903    
3904            /**
3905             * Sets the workflow instance link local service.
3906             *
3907             * @param workflowInstanceLinkLocalService the workflow instance link local service
3908             */
3909            public void setWorkflowInstanceLinkLocalService(
3910                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
3911                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
3912            }
3913    
3914            /**
3915             * Returns the workflow instance link persistence.
3916             *
3917             * @return the workflow instance link persistence
3918             */
3919            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
3920                    return workflowInstanceLinkPersistence;
3921            }
3922    
3923            /**
3924             * Sets the workflow instance link persistence.
3925             *
3926             * @param workflowInstanceLinkPersistence the workflow instance link persistence
3927             */
3928            public void setWorkflowInstanceLinkPersistence(
3929                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
3930                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
3931            }
3932    
3933            /**
3934             * Returns the counter local service.
3935             *
3936             * @return the counter local service
3937             */
3938            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
3939                    return counterLocalService;
3940            }
3941    
3942            /**
3943             * Sets the counter local service.
3944             *
3945             * @param counterLocalService the counter local service
3946             */
3947            public void setCounterLocalService(
3948                    com.liferay.counter.service.CounterLocalService counterLocalService) {
3949                    this.counterLocalService = counterLocalService;
3950            }
3951    
3952            public void afterPropertiesSet() {
3953                    persistedModelLocalServiceRegistry.register("com.liferay.portal.model.LayoutPrototype",
3954                            layoutPrototypeLocalService);
3955            }
3956    
3957            public void destroy() {
3958                    persistedModelLocalServiceRegistry.unregister(
3959                            "com.liferay.portal.model.LayoutPrototype");
3960            }
3961    
3962            /**
3963             * Returns the Spring bean ID for this bean.
3964             *
3965             * @return the Spring bean ID for this bean
3966             */
3967            @Override
3968            public String getBeanIdentifier() {
3969                    return _beanIdentifier;
3970            }
3971    
3972            /**
3973             * Sets the Spring bean ID for this bean.
3974             *
3975             * @param beanIdentifier the Spring bean ID for this bean
3976             */
3977            @Override
3978            public void setBeanIdentifier(String beanIdentifier) {
3979                    _beanIdentifier = beanIdentifier;
3980            }
3981    
3982            protected Class<?> getModelClass() {
3983                    return LayoutPrototype.class;
3984            }
3985    
3986            protected String getModelClassName() {
3987                    return LayoutPrototype.class.getName();
3988            }
3989    
3990            /**
3991             * Performs an SQL query.
3992             *
3993             * @param sql the sql query
3994             */
3995            protected void runSQL(String sql) throws SystemException {
3996                    try {
3997                            DataSource dataSource = layoutPrototypePersistence.getDataSource();
3998    
3999                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
4000                                            sql, new int[0]);
4001    
4002                            sqlUpdate.update();
4003                    }
4004                    catch (Exception e) {
4005                            throw new SystemException(e);
4006                    }
4007            }
4008    
4009            @BeanReference(type = com.liferay.portal.service.AccountLocalService.class)
4010            protected com.liferay.portal.service.AccountLocalService accountLocalService;
4011            @BeanReference(type = com.liferay.portal.service.AccountService.class)
4012            protected com.liferay.portal.service.AccountService accountService;
4013            @BeanReference(type = AccountPersistence.class)
4014            protected AccountPersistence accountPersistence;
4015            @BeanReference(type = com.liferay.portal.service.AddressLocalService.class)
4016            protected com.liferay.portal.service.AddressLocalService addressLocalService;
4017            @BeanReference(type = com.liferay.portal.service.AddressService.class)
4018            protected com.liferay.portal.service.AddressService addressService;
4019            @BeanReference(type = AddressPersistence.class)
4020            protected AddressPersistence addressPersistence;
4021            @BeanReference(type = com.liferay.portal.service.BackgroundTaskLocalService.class)
4022            protected com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService;
4023            @BeanReference(type = com.liferay.portal.service.BackgroundTaskService.class)
4024            protected com.liferay.portal.service.BackgroundTaskService backgroundTaskService;
4025            @BeanReference(type = BackgroundTaskPersistence.class)
4026            protected BackgroundTaskPersistence backgroundTaskPersistence;
4027            @BeanReference(type = com.liferay.portal.service.BrowserTrackerLocalService.class)
4028            protected com.liferay.portal.service.BrowserTrackerLocalService browserTrackerLocalService;
4029            @BeanReference(type = BrowserTrackerPersistence.class)
4030            protected BrowserTrackerPersistence browserTrackerPersistence;
4031            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
4032            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
4033            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
4034            protected com.liferay.portal.service.ClassNameService classNameService;
4035            @BeanReference(type = ClassNamePersistence.class)
4036            protected ClassNamePersistence classNamePersistence;
4037            @BeanReference(type = com.liferay.portal.service.ClusterGroupLocalService.class)
4038            protected com.liferay.portal.service.ClusterGroupLocalService clusterGroupLocalService;
4039            @BeanReference(type = ClusterGroupPersistence.class)
4040            protected ClusterGroupPersistence clusterGroupPersistence;
4041            @BeanReference(type = com.liferay.portal.service.CMISRepositoryLocalService.class)
4042            protected com.liferay.portal.service.CMISRepositoryLocalService cmisRepositoryLocalService;
4043            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
4044            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
4045            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
4046            protected com.liferay.portal.service.CompanyService companyService;
4047            @BeanReference(type = CompanyPersistence.class)
4048            protected CompanyPersistence companyPersistence;
4049            @BeanReference(type = com.liferay.portal.service.ContactLocalService.class)
4050            protected com.liferay.portal.service.ContactLocalService contactLocalService;
4051            @BeanReference(type = com.liferay.portal.service.ContactService.class)
4052            protected com.liferay.portal.service.ContactService contactService;
4053            @BeanReference(type = ContactPersistence.class)
4054            protected ContactPersistence contactPersistence;
4055            @BeanReference(type = com.liferay.portal.service.CountryService.class)
4056            protected com.liferay.portal.service.CountryService countryService;
4057            @BeanReference(type = CountryPersistence.class)
4058            protected CountryPersistence countryPersistence;
4059            @BeanReference(type = com.liferay.portal.service.EmailAddressLocalService.class)
4060            protected com.liferay.portal.service.EmailAddressLocalService emailAddressLocalService;
4061            @BeanReference(type = com.liferay.portal.service.EmailAddressService.class)
4062            protected com.liferay.portal.service.EmailAddressService emailAddressService;
4063            @BeanReference(type = EmailAddressPersistence.class)
4064            protected EmailAddressPersistence emailAddressPersistence;
4065            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
4066            protected com.liferay.portal.service.GroupLocalService groupLocalService;
4067            @BeanReference(type = com.liferay.portal.service.GroupService.class)
4068            protected com.liferay.portal.service.GroupService groupService;
4069            @BeanReference(type = GroupPersistence.class)
4070            protected GroupPersistence groupPersistence;
4071            @BeanReference(type = GroupFinder.class)
4072            protected GroupFinder groupFinder;
4073            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
4074            protected com.liferay.portal.service.ImageLocalService imageLocalService;
4075            @BeanReference(type = com.liferay.portal.service.ImageService.class)
4076            protected com.liferay.portal.service.ImageService imageService;
4077            @BeanReference(type = ImagePersistence.class)
4078            protected ImagePersistence imagePersistence;
4079            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
4080            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
4081            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
4082            protected com.liferay.portal.service.LayoutService layoutService;
4083            @BeanReference(type = LayoutPersistence.class)
4084            protected LayoutPersistence layoutPersistence;
4085            @BeanReference(type = LayoutFinder.class)
4086            protected LayoutFinder layoutFinder;
4087            @BeanReference(type = com.liferay.portal.service.LayoutBranchLocalService.class)
4088            protected com.liferay.portal.service.LayoutBranchLocalService layoutBranchLocalService;
4089            @BeanReference(type = com.liferay.portal.service.LayoutBranchService.class)
4090            protected com.liferay.portal.service.LayoutBranchService layoutBranchService;
4091            @BeanReference(type = LayoutBranchPersistence.class)
4092            protected LayoutBranchPersistence layoutBranchPersistence;
4093            @BeanReference(type = com.liferay.portal.service.LayoutFriendlyURLLocalService.class)
4094            protected com.liferay.portal.service.LayoutFriendlyURLLocalService layoutFriendlyURLLocalService;
4095            @BeanReference(type = LayoutFriendlyURLPersistence.class)
4096            protected LayoutFriendlyURLPersistence layoutFriendlyURLPersistence;
4097            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeLocalService.class)
4098            protected com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService;
4099            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeService.class)
4100            protected com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService;
4101            @BeanReference(type = LayoutPrototypePersistence.class)
4102            protected LayoutPrototypePersistence layoutPrototypePersistence;
4103            @BeanReference(type = com.liferay.portal.service.LayoutRevisionLocalService.class)
4104            protected com.liferay.portal.service.LayoutRevisionLocalService layoutRevisionLocalService;
4105            @BeanReference(type = com.liferay.portal.service.LayoutRevisionService.class)
4106            protected com.liferay.portal.service.LayoutRevisionService layoutRevisionService;
4107            @BeanReference(type = LayoutRevisionPersistence.class)
4108            protected LayoutRevisionPersistence layoutRevisionPersistence;
4109            @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
4110            protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
4111            @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
4112            protected com.liferay.portal.service.LayoutSetService layoutSetService;
4113            @BeanReference(type = LayoutSetPersistence.class)
4114            protected LayoutSetPersistence layoutSetPersistence;
4115            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
4116            protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
4117            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
4118            protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
4119            @BeanReference(type = LayoutSetBranchPersistence.class)
4120            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
4121            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeLocalService.class)
4122            protected com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService;
4123            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeService.class)
4124            protected com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService;
4125            @BeanReference(type = LayoutSetPrototypePersistence.class)
4126            protected LayoutSetPrototypePersistence layoutSetPrototypePersistence;
4127            @BeanReference(type = com.liferay.portal.service.LayoutTemplateLocalService.class)
4128            protected com.liferay.portal.service.LayoutTemplateLocalService layoutTemplateLocalService;
4129            @BeanReference(type = com.liferay.portal.service.ListTypeService.class)
4130            protected com.liferay.portal.service.ListTypeService listTypeService;
4131            @BeanReference(type = ListTypePersistence.class)
4132            protected ListTypePersistence listTypePersistence;
4133            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
4134            protected com.liferay.portal.service.LockLocalService lockLocalService;
4135            @BeanReference(type = LockPersistence.class)
4136            protected LockPersistence lockPersistence;
4137            @BeanReference(type = LockFinder.class)
4138            protected LockFinder lockFinder;
4139            @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
4140            protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
4141            @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
4142            protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
4143            @BeanReference(type = MembershipRequestPersistence.class)
4144            protected MembershipRequestPersistence membershipRequestPersistence;
4145            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
4146            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
4147            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
4148            protected com.liferay.portal.service.OrganizationService organizationService;
4149            @BeanReference(type = OrganizationPersistence.class)
4150            protected OrganizationPersistence organizationPersistence;
4151            @BeanReference(type = OrganizationFinder.class)
4152            protected OrganizationFinder organizationFinder;
4153            @BeanReference(type = OrgGroupRolePersistence.class)
4154            protected OrgGroupRolePersistence orgGroupRolePersistence;
4155            @BeanReference(type = com.liferay.portal.service.OrgLaborLocalService.class)
4156            protected com.liferay.portal.service.OrgLaborLocalService orgLaborLocalService;
4157            @BeanReference(type = com.liferay.portal.service.OrgLaborService.class)
4158            protected com.liferay.portal.service.OrgLaborService orgLaborService;
4159            @BeanReference(type = OrgLaborPersistence.class)
4160            protected OrgLaborPersistence orgLaborPersistence;
4161            @BeanReference(type = com.liferay.portal.service.PasswordPolicyLocalService.class)
4162            protected com.liferay.portal.service.PasswordPolicyLocalService passwordPolicyLocalService;
4163            @BeanReference(type = com.liferay.portal.service.PasswordPolicyService.class)
4164            protected com.liferay.portal.service.PasswordPolicyService passwordPolicyService;
4165            @BeanReference(type = PasswordPolicyPersistence.class)
4166            protected PasswordPolicyPersistence passwordPolicyPersistence;
4167            @BeanReference(type = PasswordPolicyFinder.class)
4168            protected PasswordPolicyFinder passwordPolicyFinder;
4169            @BeanReference(type = com.liferay.portal.service.PasswordPolicyRelLocalService.class)
4170            protected com.liferay.portal.service.PasswordPolicyRelLocalService passwordPolicyRelLocalService;
4171            @BeanReference(type = PasswordPolicyRelPersistence.class)
4172            protected PasswordPolicyRelPersistence passwordPolicyRelPersistence;
4173            @BeanReference(type = com.liferay.portal.service.PasswordTrackerLocalService.class)
4174            protected com.liferay.portal.service.PasswordTrackerLocalService passwordTrackerLocalService;
4175            @BeanReference(type = PasswordTrackerPersistence.class)
4176            protected PasswordTrackerPersistence passwordTrackerPersistence;
4177            @BeanReference(type = com.liferay.portal.service.PermissionService.class)
4178            protected com.liferay.portal.service.PermissionService permissionService;
4179            @BeanReference(type = com.liferay.portal.service.PhoneLocalService.class)
4180            protected com.liferay.portal.service.PhoneLocalService phoneLocalService;
4181            @BeanReference(type = com.liferay.portal.service.PhoneService.class)
4182            protected com.liferay.portal.service.PhoneService phoneService;
4183            @BeanReference(type = PhonePersistence.class)
4184            protected PhonePersistence phonePersistence;
4185            @BeanReference(type = com.liferay.portal.service.PluginSettingLocalService.class)
4186            protected com.liferay.portal.service.PluginSettingLocalService pluginSettingLocalService;
4187            @BeanReference(type = com.liferay.portal.service.PluginSettingService.class)
4188            protected com.liferay.portal.service.PluginSettingService pluginSettingService;
4189            @BeanReference(type = PluginSettingPersistence.class)
4190            protected PluginSettingPersistence pluginSettingPersistence;
4191            @BeanReference(type = com.liferay.portal.service.PortalLocalService.class)
4192            protected com.liferay.portal.service.PortalLocalService portalLocalService;
4193            @BeanReference(type = com.liferay.portal.service.PortalService.class)
4194            protected com.liferay.portal.service.PortalService portalService;
4195            @BeanReference(type = com.liferay.portal.service.PortalPreferencesLocalService.class)
4196            protected com.liferay.portal.service.PortalPreferencesLocalService portalPreferencesLocalService;
4197            @BeanReference(type = PortalPreferencesPersistence.class)
4198            protected PortalPreferencesPersistence portalPreferencesPersistence;
4199            @BeanReference(type = com.liferay.portal.service.PortletLocalService.class)
4200            protected com.liferay.portal.service.PortletLocalService portletLocalService;
4201            @BeanReference(type = com.liferay.portal.service.PortletService.class)
4202            protected com.liferay.portal.service.PortletService portletService;
4203            @BeanReference(type = PortletPersistence.class)
4204            protected PortletPersistence portletPersistence;
4205            @BeanReference(type = com.liferay.portal.service.PortletItemLocalService.class)
4206            protected com.liferay.portal.service.PortletItemLocalService portletItemLocalService;
4207            @BeanReference(type = PortletItemPersistence.class)
4208            protected PortletItemPersistence portletItemPersistence;
4209            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
4210            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
4211            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
4212            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
4213            @BeanReference(type = PortletPreferencesPersistence.class)
4214            protected PortletPreferencesPersistence portletPreferencesPersistence;
4215            @BeanReference(type = PortletPreferencesFinder.class)
4216            protected PortletPreferencesFinder portletPreferencesFinder;
4217            @BeanReference(type = com.liferay.portal.service.QuartzLocalService.class)
4218            protected com.liferay.portal.service.QuartzLocalService quartzLocalService;
4219            @BeanReference(type = com.liferay.portal.service.RegionService.class)
4220            protected com.liferay.portal.service.RegionService regionService;
4221            @BeanReference(type = RegionPersistence.class)
4222            protected RegionPersistence regionPersistence;
4223            @BeanReference(type = com.liferay.portal.service.ReleaseLocalService.class)
4224            protected com.liferay.portal.service.ReleaseLocalService releaseLocalService;
4225            @BeanReference(type = ReleasePersistence.class)
4226            protected ReleasePersistence releasePersistence;
4227            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
4228            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
4229            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
4230            protected com.liferay.portal.service.RepositoryService repositoryService;
4231            @BeanReference(type = RepositoryPersistence.class)
4232            protected RepositoryPersistence repositoryPersistence;
4233            @BeanReference(type = com.liferay.portal.service.RepositoryEntryLocalService.class)
4234            protected com.liferay.portal.service.RepositoryEntryLocalService repositoryEntryLocalService;
4235            @BeanReference(type = RepositoryEntryPersistence.class)
4236            protected RepositoryEntryPersistence repositoryEntryPersistence;
4237            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
4238            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
4239            @BeanReference(type = com.liferay.portal.service.ResourceActionLocalService.class)
4240            protected com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService;
4241            @BeanReference(type = ResourceActionPersistence.class)
4242            protected ResourceActionPersistence resourceActionPersistence;
4243            @BeanReference(type = com.liferay.portal.service.ResourceBlockLocalService.class)
4244            protected com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService;
4245            @BeanReference(type = com.liferay.portal.service.ResourceBlockService.class)
4246            protected com.liferay.portal.service.ResourceBlockService resourceBlockService;
4247            @BeanReference(type = ResourceBlockPersistence.class)
4248            protected ResourceBlockPersistence resourceBlockPersistence;
4249            @BeanReference(type = ResourceBlockFinder.class)
4250            protected ResourceBlockFinder resourceBlockFinder;
4251            @BeanReference(type = com.liferay.portal.service.ResourceBlockPermissionLocalService.class)
4252            protected com.liferay.portal.service.ResourceBlockPermissionLocalService resourceBlockPermissionLocalService;
4253            @BeanReference(type = ResourceBlockPermissionPersistence.class)
4254            protected ResourceBlockPermissionPersistence resourceBlockPermissionPersistence;
4255            @BeanReference(type = com.liferay.portal.service.ResourcePermissionLocalService.class)
4256            protected com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService;
4257            @BeanReference(type = com.liferay.portal.service.ResourcePermissionService.class)
4258            protected com.liferay.portal.service.ResourcePermissionService resourcePermissionService;
4259            @BeanReference(type = ResourcePermissionPersistence.class)
4260            protected ResourcePermissionPersistence resourcePermissionPersistence;
4261            @BeanReference(type = ResourcePermissionFinder.class)
4262            protected ResourcePermissionFinder resourcePermissionFinder;
4263            @BeanReference(type = com.liferay.portal.service.ResourceTypePermissionLocalService.class)
4264            protected com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService;
4265            @BeanReference(type = ResourceTypePermissionPersistence.class)
4266            protected ResourceTypePermissionPersistence resourceTypePermissionPersistence;
4267            @BeanReference(type = ResourceTypePermissionFinder.class)
4268            protected ResourceTypePermissionFinder resourceTypePermissionFinder;
4269            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
4270            protected com.liferay.portal.service.RoleLocalService roleLocalService;
4271            @BeanReference(type = com.liferay.portal.service.RoleService.class)
4272            protected com.liferay.portal.service.RoleService roleService;
4273            @BeanReference(type = RolePersistence.class)
4274            protected RolePersistence rolePersistence;
4275            @BeanReference(type = RoleFinder.class)
4276            protected RoleFinder roleFinder;
4277            @BeanReference(type = com.liferay.portal.service.ServiceComponentLocalService.class)
4278            protected com.liferay.portal.service.ServiceComponentLocalService serviceComponentLocalService;
4279            @BeanReference(type = ServiceComponentPersistence.class)
4280            protected ServiceComponentPersistence serviceComponentPersistence;
4281            @BeanReference(type = com.liferay.portal.service.ShardLocalService.class)
4282            protected com.liferay.portal.service.ShardLocalService shardLocalService;
4283            @BeanReference(type = ShardPersistence.class)
4284            protected ShardPersistence shardPersistence;
4285            @BeanReference(type = com.liferay.portal.service.StagingLocalService.class)
4286            protected com.liferay.portal.service.StagingLocalService stagingLocalService;
4287            @BeanReference(type = com.liferay.portal.service.StagingService.class)
4288            protected com.liferay.portal.service.StagingService stagingService;
4289            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
4290            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
4291            @BeanReference(type = SubscriptionPersistence.class)
4292            protected SubscriptionPersistence subscriptionPersistence;
4293            @BeanReference(type = com.liferay.portal.service.SystemEventLocalService.class)
4294            protected com.liferay.portal.service.SystemEventLocalService systemEventLocalService;
4295            @BeanReference(type = SystemEventPersistence.class)
4296            protected SystemEventPersistence systemEventPersistence;
4297            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
4298            protected com.liferay.portal.service.TeamLocalService teamLocalService;
4299            @BeanReference(type = com.liferay.portal.service.TeamService.class)
4300            protected com.liferay.portal.service.TeamService teamService;
4301            @BeanReference(type = TeamPersistence.class)
4302            protected TeamPersistence teamPersistence;
4303            @BeanReference(type = TeamFinder.class)
4304            protected TeamFinder teamFinder;
4305            @BeanReference(type = com.liferay.portal.service.ThemeLocalService.class)
4306            protected com.liferay.portal.service.ThemeLocalService themeLocalService;
4307            @BeanReference(type = com.liferay.portal.service.ThemeService.class)
4308            protected com.liferay.portal.service.ThemeService themeService;
4309            @BeanReference(type = com.liferay.portal.service.TicketLocalService.class)
4310            protected com.liferay.portal.service.TicketLocalService ticketLocalService;
4311            @BeanReference(type = TicketPersistence.class)
4312            protected TicketPersistence ticketPersistence;
4313            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
4314            protected com.liferay.portal.service.UserLocalService userLocalService;
4315            @BeanReference(type = com.liferay.portal.service.UserService.class)
4316            protected com.liferay.portal.service.UserService userService;
4317            @BeanReference(type = UserPersistence.class)
4318            protected UserPersistence userPersistence;
4319            @BeanReference(type = UserFinder.class)
4320            protected UserFinder userFinder;
4321            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
4322            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
4323            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
4324            protected com.liferay.portal.service.UserGroupService userGroupService;
4325            @BeanReference(type = UserGroupPersistence.class)
4326            protected UserGroupPersistence userGroupPersistence;
4327            @BeanReference(type = UserGroupFinder.class)
4328            protected UserGroupFinder userGroupFinder;
4329            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleLocalService.class)
4330            protected com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService;
4331            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleService.class)
4332            protected com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService;
4333            @BeanReference(type = UserGroupGroupRolePersistence.class)
4334            protected UserGroupGroupRolePersistence userGroupGroupRolePersistence;
4335            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
4336            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
4337            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
4338            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
4339            @BeanReference(type = UserGroupRolePersistence.class)
4340            protected UserGroupRolePersistence userGroupRolePersistence;
4341            @BeanReference(type = UserGroupRoleFinder.class)
4342            protected UserGroupRoleFinder userGroupRoleFinder;
4343            @BeanReference(type = com.liferay.portal.service.UserIdMapperLocalService.class)
4344            protected com.liferay.portal.service.UserIdMapperLocalService userIdMapperLocalService;
4345            @BeanReference(type = UserIdMapperPersistence.class)
4346            protected UserIdMapperPersistence userIdMapperPersistence;
4347            @BeanReference(type = com.liferay.portal.service.UserNotificationDeliveryLocalService.class)
4348            protected com.liferay.portal.service.UserNotificationDeliveryLocalService userNotificationDeliveryLocalService;
4349            @BeanReference(type = UserNotificationDeliveryPersistence.class)
4350            protected UserNotificationDeliveryPersistence userNotificationDeliveryPersistence;
4351            @BeanReference(type = com.liferay.portal.service.UserNotificationEventLocalService.class)
4352            protected com.liferay.portal.service.UserNotificationEventLocalService userNotificationEventLocalService;
4353            @BeanReference(type = UserNotificationEventPersistence.class)
4354            protected UserNotificationEventPersistence userNotificationEventPersistence;
4355            @BeanReference(type = com.liferay.portal.service.UserTrackerLocalService.class)
4356            protected com.liferay.portal.service.UserTrackerLocalService userTrackerLocalService;
4357            @BeanReference(type = UserTrackerPersistence.class)
4358            protected UserTrackerPersistence userTrackerPersistence;
4359            @BeanReference(type = com.liferay.portal.service.UserTrackerPathLocalService.class)
4360            protected com.liferay.portal.service.UserTrackerPathLocalService userTrackerPathLocalService;
4361            @BeanReference(type = UserTrackerPathPersistence.class)
4362            protected UserTrackerPathPersistence userTrackerPathPersistence;
4363            @BeanReference(type = com.liferay.portal.service.VirtualHostLocalService.class)
4364            protected com.liferay.portal.service.VirtualHostLocalService virtualHostLocalService;
4365            @BeanReference(type = VirtualHostPersistence.class)
4366            protected VirtualHostPersistence virtualHostPersistence;
4367            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
4368            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
4369            @BeanReference(type = WebDAVPropsPersistence.class)
4370            protected WebDAVPropsPersistence webDAVPropsPersistence;
4371            @BeanReference(type = com.liferay.portal.service.WebsiteLocalService.class)
4372            protected com.liferay.portal.service.WebsiteLocalService websiteLocalService;
4373            @BeanReference(type = com.liferay.portal.service.WebsiteService.class)
4374            protected com.liferay.portal.service.WebsiteService websiteService;
4375            @BeanReference(type = WebsitePersistence.class)
4376            protected WebsitePersistence websitePersistence;
4377            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
4378            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
4379            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
4380            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
4381            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
4382            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
4383            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
4384            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
4385            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
4386            protected com.liferay.counter.service.CounterLocalService counterLocalService;
4387            @BeanReference(type = PersistedModelLocalServiceRegistry.class)
4388            protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
4389            private String _beanIdentifier;
4390    }