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