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