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