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