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