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