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