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