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