001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service.base;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.db.DB;
022    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025    import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
026    import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
027    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
028    import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
029    import com.liferay.portal.kernel.dao.orm.Projection;
030    import com.liferay.portal.kernel.exception.PortalException;
031    import com.liferay.portal.kernel.exception.SystemException;
032    import com.liferay.portal.kernel.search.Indexable;
033    import com.liferay.portal.kernel.search.IndexableType;
034    import com.liferay.portal.kernel.util.OrderByComparator;
035    import com.liferay.portal.model.Group;
036    import com.liferay.portal.model.PersistedModel;
037    import com.liferay.portal.service.BaseLocalServiceImpl;
038    import com.liferay.portal.service.GroupLocalService;
039    import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
040    import com.liferay.portal.service.persistence.AccountPersistence;
041    import com.liferay.portal.service.persistence.BackgroundTaskPersistence;
042    import com.liferay.portal.service.persistence.ClassNamePersistence;
043    import com.liferay.portal.service.persistence.CompanyPersistence;
044    import com.liferay.portal.service.persistence.GroupFinder;
045    import com.liferay.portal.service.persistence.GroupPersistence;
046    import com.liferay.portal.service.persistence.LayoutFinder;
047    import com.liferay.portal.service.persistence.LayoutPersistence;
048    import com.liferay.portal.service.persistence.LayoutPrototypePersistence;
049    import com.liferay.portal.service.persistence.LayoutSetBranchPersistence;
050    import com.liferay.portal.service.persistence.LayoutSetPersistence;
051    import com.liferay.portal.service.persistence.LayoutSetPrototypePersistence;
052    import com.liferay.portal.service.persistence.MembershipRequestPersistence;
053    import com.liferay.portal.service.persistence.OrganizationFinder;
054    import com.liferay.portal.service.persistence.OrganizationPersistence;
055    import com.liferay.portal.service.persistence.PortletPersistence;
056    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
057    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
058    import com.liferay.portal.service.persistence.ResourceActionPersistence;
059    import com.liferay.portal.service.persistence.ResourceBlockFinder;
060    import com.liferay.portal.service.persistence.ResourceBlockPersistence;
061    import com.liferay.portal.service.persistence.ResourcePermissionFinder;
062    import com.liferay.portal.service.persistence.ResourcePermissionPersistence;
063    import com.liferay.portal.service.persistence.ResourceTypePermissionFinder;
064    import com.liferay.portal.service.persistence.ResourceTypePermissionPersistence;
065    import com.liferay.portal.service.persistence.RoleFinder;
066    import com.liferay.portal.service.persistence.RolePersistence;
067    import com.liferay.portal.service.persistence.SubscriptionPersistence;
068    import com.liferay.portal.service.persistence.TeamFinder;
069    import com.liferay.portal.service.persistence.TeamPersistence;
070    import com.liferay.portal.service.persistence.UserFinder;
071    import com.liferay.portal.service.persistence.UserGroupFinder;
072    import com.liferay.portal.service.persistence.UserGroupGroupRoleFinder;
073    import com.liferay.portal.service.persistence.UserGroupGroupRolePersistence;
074    import com.liferay.portal.service.persistence.UserGroupPersistence;
075    import com.liferay.portal.service.persistence.UserGroupRoleFinder;
076    import com.liferay.portal.service.persistence.UserGroupRolePersistence;
077    import com.liferay.portal.service.persistence.UserPersistence;
078    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
079    import com.liferay.portal.util.PortalUtil;
080    
081    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
082    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
083    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
084    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
085    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
086    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
087    import com.liferay.portlet.asset.service.persistence.AssetVocabularyFinder;
088    import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
089    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
090    import com.liferay.portlet.exportimport.service.persistence.ExportImportConfigurationPersistence;
091    import com.liferay.portlet.shopping.service.persistence.ShoppingCartPersistence;
092    import com.liferay.portlet.shopping.service.persistence.ShoppingCategoryPersistence;
093    import com.liferay.portlet.shopping.service.persistence.ShoppingCouponFinder;
094    import com.liferay.portlet.shopping.service.persistence.ShoppingCouponPersistence;
095    import com.liferay.portlet.shopping.service.persistence.ShoppingOrderFinder;
096    import com.liferay.portlet.shopping.service.persistence.ShoppingOrderPersistence;
097    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
098    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
099    import com.liferay.portlet.social.service.persistence.SocialActivitySettingPersistence;
100    import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
101    import com.liferay.portlet.softwarecatalog.service.persistence.SCFrameworkVersionPersistence;
102    import com.liferay.portlet.softwarecatalog.service.persistence.SCProductEntryPersistence;
103    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
104    
105    import java.io.Serializable;
106    
107    import java.util.List;
108    
109    import javax.sql.DataSource;
110    
111    /**
112     * Provides the base implementation for the group local service.
113     *
114     * <p>
115     * 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.GroupLocalServiceImpl}.
116     * </p>
117     *
118     * @author Brian Wing Shun Chan
119     * @see com.liferay.portal.service.impl.GroupLocalServiceImpl
120     * @see com.liferay.portal.service.GroupLocalServiceUtil
121     * @generated
122     */
123    @ProviderType
124    public abstract class GroupLocalServiceBaseImpl extends BaseLocalServiceImpl
125            implements GroupLocalService, IdentifiableBean {
126            /*
127             * NOTE FOR DEVELOPERS:
128             *
129             * Never modify or reference this class directly. Always use {@link com.liferay.portal.service.GroupLocalServiceUtil} to access the group local service.
130             */
131    
132            /**
133             * Adds the group to the database. Also notifies the appropriate model listeners.
134             *
135             * @param group the group
136             * @return the group that was added
137             */
138            @Indexable(type = IndexableType.REINDEX)
139            @Override
140            public Group addGroup(Group group) {
141                    group.setNew(true);
142    
143                    return groupPersistence.update(group);
144            }
145    
146            /**
147             * Creates a new group with the primary key. Does not add the group to the database.
148             *
149             * @param groupId the primary key for the new group
150             * @return the new group
151             */
152            @Override
153            public Group createGroup(long groupId) {
154                    return groupPersistence.create(groupId);
155            }
156    
157            /**
158             * Deletes the group with the primary key from the database. Also notifies the appropriate model listeners.
159             *
160             * @param groupId the primary key of the group
161             * @return the group that was removed
162             * @throws PortalException if a group with the primary key could not be found
163             */
164            @Indexable(type = IndexableType.DELETE)
165            @Override
166            public Group deleteGroup(long groupId) throws PortalException {
167                    return groupPersistence.remove(groupId);
168            }
169    
170            /**
171             * Deletes the group from the database. Also notifies the appropriate model listeners.
172             *
173             * @param group the group
174             * @return the group that was removed
175             * @throws PortalException
176             */
177            @Indexable(type = IndexableType.DELETE)
178            @Override
179            public Group deleteGroup(Group group) throws PortalException {
180                    return groupPersistence.remove(group);
181            }
182    
183            @Override
184            public DynamicQuery dynamicQuery() {
185                    Class<?> clazz = getClass();
186    
187                    return DynamicQueryFactoryUtil.forClass(Group.class,
188                            clazz.getClassLoader());
189            }
190    
191            /**
192             * Performs a dynamic query on the database and returns the matching rows.
193             *
194             * @param dynamicQuery the dynamic query
195             * @return the matching rows
196             */
197            @Override
198            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
199                    return groupPersistence.findWithDynamicQuery(dynamicQuery);
200            }
201    
202            /**
203             * Performs a dynamic query on the database and returns a range of the matching rows.
204             *
205             * <p>
206             * 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.GroupModelImpl}. 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.
207             * </p>
208             *
209             * @param dynamicQuery the dynamic query
210             * @param start the lower bound of the range of model instances
211             * @param end the upper bound of the range of model instances (not inclusive)
212             * @return the range of matching rows
213             */
214            @Override
215            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
216                    int end) {
217                    return groupPersistence.findWithDynamicQuery(dynamicQuery, start, end);
218            }
219    
220            /**
221             * Performs a dynamic query on the database and returns an ordered range of the matching rows.
222             *
223             * <p>
224             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portal.model.impl.GroupModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
225             * </p>
226             *
227             * @param dynamicQuery the dynamic query
228             * @param start the lower bound of the range of model instances
229             * @param end the upper bound of the range of model instances (not inclusive)
230             * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
231             * @return the ordered range of matching rows
232             */
233            @Override
234            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
235                    int end, OrderByComparator<T> orderByComparator) {
236                    return groupPersistence.findWithDynamicQuery(dynamicQuery, start, end,
237                            orderByComparator);
238            }
239    
240            /**
241             * Returns the number of rows matching the dynamic query.
242             *
243             * @param dynamicQuery the dynamic query
244             * @return the number of rows matching the dynamic query
245             */
246            @Override
247            public long dynamicQueryCount(DynamicQuery dynamicQuery) {
248                    return groupPersistence.countWithDynamicQuery(dynamicQuery);
249            }
250    
251            /**
252             * Returns the number of rows matching the dynamic query.
253             *
254             * @param dynamicQuery the dynamic query
255             * @param projection the projection to apply to the query
256             * @return the number of rows matching the dynamic query
257             */
258            @Override
259            public long dynamicQueryCount(DynamicQuery dynamicQuery,
260                    Projection projection) {
261                    return groupPersistence.countWithDynamicQuery(dynamicQuery, projection);
262            }
263    
264            @Override
265            public Group fetchGroup(long groupId) {
266                    return groupPersistence.fetchByPrimaryKey(groupId);
267            }
268    
269            /**
270             * Returns the group with the matching UUID and company.
271             *
272             * @param uuid the group's UUID
273             * @param companyId the primary key of the company
274             * @return the matching group, or <code>null</code> if a matching group could not be found
275             */
276            @Override
277            public Group fetchGroupByUuidAndCompanyId(String uuid, long companyId) {
278                    return groupPersistence.fetchByUuid_C_First(uuid, companyId, null);
279            }
280    
281            /**
282             * Returns the group with the primary key.
283             *
284             * @param groupId the primary key of the group
285             * @return the group
286             * @throws PortalException if a group with the primary key could not be found
287             */
288            @Override
289            public Group getGroup(long groupId) throws PortalException {
290                    return groupPersistence.findByPrimaryKey(groupId);
291            }
292    
293            @Override
294            public ActionableDynamicQuery getActionableDynamicQuery() {
295                    ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
296    
297                    actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.GroupLocalServiceUtil.getService());
298                    actionableDynamicQuery.setClass(Group.class);
299                    actionableDynamicQuery.setClassLoader(getClassLoader());
300    
301                    actionableDynamicQuery.setPrimaryKeyPropertyName("groupId");
302    
303                    return actionableDynamicQuery;
304            }
305    
306            protected void initActionableDynamicQuery(
307                    ActionableDynamicQuery actionableDynamicQuery) {
308                    actionableDynamicQuery.setBaseLocalService(com.liferay.portal.service.GroupLocalServiceUtil.getService());
309                    actionableDynamicQuery.setClass(Group.class);
310                    actionableDynamicQuery.setClassLoader(getClassLoader());
311    
312                    actionableDynamicQuery.setPrimaryKeyPropertyName("groupId");
313            }
314    
315            /**
316             * @throws PortalException
317             */
318            @Override
319            public PersistedModel deletePersistedModel(PersistedModel persistedModel)
320                    throws PortalException {
321                    return groupLocalService.deleteGroup((Group)persistedModel);
322            }
323    
324            @Override
325            public PersistedModel getPersistedModel(Serializable primaryKeyObj)
326                    throws PortalException {
327                    return groupPersistence.findByPrimaryKey(primaryKeyObj);
328            }
329    
330            /**
331             * Returns the group with the matching UUID and company.
332             *
333             * @param uuid the group's UUID
334             * @param companyId the primary key of the company
335             * @return the matching group
336             * @throws PortalException if a matching group could not be found
337             */
338            @Override
339            public Group getGroupByUuidAndCompanyId(String uuid, long companyId)
340                    throws PortalException {
341                    return groupPersistence.findByUuid_C_First(uuid, companyId, null);
342            }
343    
344            /**
345             * Returns a range of all the groups.
346             *
347             * <p>
348             * 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.GroupModelImpl}. 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.
349             * </p>
350             *
351             * @param start the lower bound of the range of groups
352             * @param end the upper bound of the range of groups (not inclusive)
353             * @return the range of groups
354             */
355            @Override
356            public List<Group> getGroups(int start, int end) {
357                    return groupPersistence.findAll(start, end);
358            }
359    
360            /**
361             * Returns the number of groups.
362             *
363             * @return the number of groups
364             */
365            @Override
366            public int getGroupsCount() {
367                    return groupPersistence.countAll();
368            }
369    
370            /**
371             * Updates the group in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
372             *
373             * @param group the group
374             * @return the group that was updated
375             */
376            @Indexable(type = IndexableType.REINDEX)
377            @Override
378            public Group updateGroup(Group group) {
379                    return groupPersistence.update(group);
380            }
381    
382            /**
383             */
384            @Override
385            public void addOrganizationGroup(long organizationId, long groupId) {
386                    organizationPersistence.addGroup(organizationId, groupId);
387            }
388    
389            /**
390             */
391            @Override
392            public void addOrganizationGroup(long organizationId, Group group) {
393                    organizationPersistence.addGroup(organizationId, group);
394            }
395    
396            /**
397             */
398            @Override
399            public void addOrganizationGroups(long organizationId, long[] groupIds) {
400                    organizationPersistence.addGroups(organizationId, groupIds);
401            }
402    
403            /**
404             */
405            @Override
406            public void addOrganizationGroups(long organizationId, List<Group> Groups) {
407                    organizationPersistence.addGroups(organizationId, Groups);
408            }
409    
410            /**
411             */
412            @Override
413            public void clearOrganizationGroups(long organizationId) {
414                    organizationPersistence.clearGroups(organizationId);
415            }
416    
417            /**
418             */
419            @Override
420            public void deleteOrganizationGroup(long organizationId, long groupId) {
421                    organizationPersistence.removeGroup(organizationId, groupId);
422            }
423    
424            /**
425             */
426            @Override
427            public void deleteOrganizationGroup(long organizationId, Group group) {
428                    organizationPersistence.removeGroup(organizationId, group);
429            }
430    
431            /**
432             */
433            @Override
434            public void deleteOrganizationGroups(long organizationId, long[] groupIds) {
435                    organizationPersistence.removeGroups(organizationId, groupIds);
436            }
437    
438            /**
439             */
440            @Override
441            public void deleteOrganizationGroups(long organizationId, List<Group> Groups) {
442                    organizationPersistence.removeGroups(organizationId, Groups);
443            }
444    
445            /**
446             * Returns the organizationIds of the organizations associated with the group.
447             *
448             * @param groupId the groupId of the group
449             * @return long[] the organizationIds of organizations associated with the group
450             */
451            @Override
452            public long[] getOrganizationPrimaryKeys(long groupId) {
453                    return groupPersistence.getOrganizationPrimaryKeys(groupId);
454            }
455    
456            /**
457             */
458            @Override
459            public List<Group> getOrganizationGroups(long organizationId) {
460                    return organizationPersistence.getGroups(organizationId);
461            }
462    
463            /**
464             */
465            @Override
466            public List<Group> getOrganizationGroups(long organizationId, int start,
467                    int end) {
468                    return organizationPersistence.getGroups(organizationId, start, end);
469            }
470    
471            /**
472             */
473            @Override
474            public List<Group> getOrganizationGroups(long organizationId, int start,
475                    int end, OrderByComparator<Group> orderByComparator) {
476                    return organizationPersistence.getGroups(organizationId, start, end,
477                            orderByComparator);
478            }
479    
480            /**
481             */
482            @Override
483            public int getOrganizationGroupsCount(long organizationId) {
484                    return organizationPersistence.getGroupsSize(organizationId);
485            }
486    
487            /**
488             */
489            @Override
490            public boolean hasOrganizationGroup(long organizationId, long groupId) {
491                    return organizationPersistence.containsGroup(organizationId, groupId);
492            }
493    
494            /**
495             */
496            @Override
497            public boolean hasOrganizationGroups(long organizationId) {
498                    return organizationPersistence.containsGroups(organizationId);
499            }
500    
501            /**
502             */
503            @Override
504            public void setOrganizationGroups(long organizationId, long[] groupIds) {
505                    organizationPersistence.setGroups(organizationId, groupIds);
506            }
507    
508            /**
509             */
510            @Override
511            public void addRoleGroup(long roleId, long groupId) {
512                    rolePersistence.addGroup(roleId, groupId);
513            }
514    
515            /**
516             */
517            @Override
518            public void addRoleGroup(long roleId, Group group) {
519                    rolePersistence.addGroup(roleId, group);
520            }
521    
522            /**
523             */
524            @Override
525            public void addRoleGroups(long roleId, long[] groupIds) {
526                    rolePersistence.addGroups(roleId, groupIds);
527            }
528    
529            /**
530             */
531            @Override
532            public void addRoleGroups(long roleId, List<Group> Groups) {
533                    rolePersistence.addGroups(roleId, Groups);
534            }
535    
536            /**
537             */
538            @Override
539            public void clearRoleGroups(long roleId) {
540                    rolePersistence.clearGroups(roleId);
541            }
542    
543            /**
544             */
545            @Override
546            public void deleteRoleGroup(long roleId, long groupId) {
547                    rolePersistence.removeGroup(roleId, groupId);
548            }
549    
550            /**
551             */
552            @Override
553            public void deleteRoleGroup(long roleId, Group group) {
554                    rolePersistence.removeGroup(roleId, group);
555            }
556    
557            /**
558             */
559            @Override
560            public void deleteRoleGroups(long roleId, long[] groupIds) {
561                    rolePersistence.removeGroups(roleId, groupIds);
562            }
563    
564            /**
565             */
566            @Override
567            public void deleteRoleGroups(long roleId, List<Group> Groups) {
568                    rolePersistence.removeGroups(roleId, Groups);
569            }
570    
571            /**
572             * Returns the roleIds of the roles associated with the group.
573             *
574             * @param groupId the groupId of the group
575             * @return long[] the roleIds of roles associated with the group
576             */
577            @Override
578            public long[] getRolePrimaryKeys(long groupId) {
579                    return groupPersistence.getRolePrimaryKeys(groupId);
580            }
581    
582            /**
583             */
584            @Override
585            public List<Group> getRoleGroups(long roleId) {
586                    return rolePersistence.getGroups(roleId);
587            }
588    
589            /**
590             */
591            @Override
592            public List<Group> getRoleGroups(long roleId, int start, int end) {
593                    return rolePersistence.getGroups(roleId, start, end);
594            }
595    
596            /**
597             */
598            @Override
599            public List<Group> getRoleGroups(long roleId, int start, int end,
600                    OrderByComparator<Group> orderByComparator) {
601                    return rolePersistence.getGroups(roleId, start, end, orderByComparator);
602            }
603    
604            /**
605             */
606            @Override
607            public int getRoleGroupsCount(long roleId) {
608                    return rolePersistence.getGroupsSize(roleId);
609            }
610    
611            /**
612             */
613            @Override
614            public boolean hasRoleGroup(long roleId, long groupId) {
615                    return rolePersistence.containsGroup(roleId, groupId);
616            }
617    
618            /**
619             */
620            @Override
621            public boolean hasRoleGroups(long roleId) {
622                    return rolePersistence.containsGroups(roleId);
623            }
624    
625            /**
626             */
627            @Override
628            public void setRoleGroups(long roleId, long[] groupIds) {
629                    rolePersistence.setGroups(roleId, groupIds);
630            }
631    
632            /**
633             */
634            @Override
635            public void addUserGroupGroup(long userGroupId, long groupId) {
636                    userGroupPersistence.addGroup(userGroupId, groupId);
637            }
638    
639            /**
640             */
641            @Override
642            public void addUserGroupGroup(long userGroupId, Group group) {
643                    userGroupPersistence.addGroup(userGroupId, group);
644            }
645    
646            /**
647             */
648            @Override
649            public void addUserGroupGroups(long userGroupId, long[] groupIds) {
650                    userGroupPersistence.addGroups(userGroupId, groupIds);
651            }
652    
653            /**
654             */
655            @Override
656            public void addUserGroupGroups(long userGroupId, List<Group> Groups) {
657                    userGroupPersistence.addGroups(userGroupId, Groups);
658            }
659    
660            /**
661             */
662            @Override
663            public void clearUserGroupGroups(long userGroupId) {
664                    userGroupPersistence.clearGroups(userGroupId);
665            }
666    
667            /**
668             */
669            @Override
670            public void deleteUserGroupGroup(long userGroupId, long groupId) {
671                    userGroupPersistence.removeGroup(userGroupId, groupId);
672            }
673    
674            /**
675             */
676            @Override
677            public void deleteUserGroupGroup(long userGroupId, Group group) {
678                    userGroupPersistence.removeGroup(userGroupId, group);
679            }
680    
681            /**
682             */
683            @Override
684            public void deleteUserGroupGroups(long userGroupId, long[] groupIds) {
685                    userGroupPersistence.removeGroups(userGroupId, groupIds);
686            }
687    
688            /**
689             */
690            @Override
691            public void deleteUserGroupGroups(long userGroupId, List<Group> Groups) {
692                    userGroupPersistence.removeGroups(userGroupId, Groups);
693            }
694    
695            /**
696             * Returns the userGroupIds of the user groups associated with the group.
697             *
698             * @param groupId the groupId of the group
699             * @return long[] the userGroupIds of user groups associated with the group
700             */
701            @Override
702            public long[] getUserGroupPrimaryKeys(long groupId) {
703                    return groupPersistence.getUserGroupPrimaryKeys(groupId);
704            }
705    
706            /**
707             */
708            @Override
709            public List<Group> getUserGroupGroups(long userGroupId) {
710                    return userGroupPersistence.getGroups(userGroupId);
711            }
712    
713            /**
714             */
715            @Override
716            public List<Group> getUserGroupGroups(long userGroupId, int start, int end) {
717                    return userGroupPersistence.getGroups(userGroupId, start, end);
718            }
719    
720            /**
721             */
722            @Override
723            public List<Group> getUserGroupGroups(long userGroupId, int start, int end,
724                    OrderByComparator<Group> orderByComparator) {
725                    return userGroupPersistence.getGroups(userGroupId, start, end,
726                            orderByComparator);
727            }
728    
729            /**
730             */
731            @Override
732            public int getUserGroupGroupsCount(long userGroupId) {
733                    return userGroupPersistence.getGroupsSize(userGroupId);
734            }
735    
736            /**
737             */
738            @Override
739            public boolean hasUserGroupGroup(long userGroupId, long groupId) {
740                    return userGroupPersistence.containsGroup(userGroupId, groupId);
741            }
742    
743            /**
744             */
745            @Override
746            public boolean hasUserGroupGroups(long userGroupId) {
747                    return userGroupPersistence.containsGroups(userGroupId);
748            }
749    
750            /**
751             */
752            @Override
753            public void setUserGroupGroups(long userGroupId, long[] groupIds) {
754                    userGroupPersistence.setGroups(userGroupId, groupIds);
755            }
756    
757            /**
758             */
759            @Override
760            public void addUserGroup(long userId, long groupId) {
761                    userPersistence.addGroup(userId, groupId);
762            }
763    
764            /**
765             */
766            @Override
767            public void addUserGroup(long userId, Group group) {
768                    userPersistence.addGroup(userId, group);
769            }
770    
771            /**
772             */
773            @Override
774            public void addUserGroups(long userId, long[] groupIds) {
775                    userPersistence.addGroups(userId, groupIds);
776            }
777    
778            /**
779             */
780            @Override
781            public void addUserGroups(long userId, List<Group> Groups) {
782                    userPersistence.addGroups(userId, Groups);
783            }
784    
785            /**
786             */
787            @Override
788            public void clearUserGroups(long userId) {
789                    userPersistence.clearGroups(userId);
790            }
791    
792            /**
793             */
794            @Override
795            public void deleteUserGroup(long userId, long groupId) {
796                    userPersistence.removeGroup(userId, groupId);
797            }
798    
799            /**
800             */
801            @Override
802            public void deleteUserGroup(long userId, Group group) {
803                    userPersistence.removeGroup(userId, group);
804            }
805    
806            /**
807             */
808            @Override
809            public void deleteUserGroups(long userId, long[] groupIds) {
810                    userPersistence.removeGroups(userId, groupIds);
811            }
812    
813            /**
814             */
815            @Override
816            public void deleteUserGroups(long userId, List<Group> Groups) {
817                    userPersistence.removeGroups(userId, Groups);
818            }
819    
820            /**
821             * Returns the userIds of the users associated with the group.
822             *
823             * @param groupId the groupId of the group
824             * @return long[] the userIds of users associated with the group
825             */
826            @Override
827            public long[] getUserPrimaryKeys(long groupId) {
828                    return groupPersistence.getUserPrimaryKeys(groupId);
829            }
830    
831            /**
832             */
833            @Override
834            public List<Group> getUserGroups(long userId) {
835                    return userPersistence.getGroups(userId);
836            }
837    
838            /**
839             */
840            @Override
841            public List<Group> getUserGroups(long userId, int start, int end) {
842                    return userPersistence.getGroups(userId, start, end);
843            }
844    
845            /**
846             * @throws PortalException
847             */
848            @Override
849            public List<Group> getUserGroups(long userId, int start, int end,
850                    OrderByComparator<Group> orderByComparator) throws PortalException {
851                    return userPersistence.getGroups(userId, start, end, orderByComparator);
852            }
853    
854            /**
855             */
856            @Override
857            public int getUserGroupsCount(long userId) {
858                    return userPersistence.getGroupsSize(userId);
859            }
860    
861            /**
862             */
863            @Override
864            public boolean hasUserGroup(long userId, long groupId) {
865                    return userPersistence.containsGroup(userId, groupId);
866            }
867    
868            /**
869             */
870            @Override
871            public boolean hasUserGroups(long userId) {
872                    return userPersistence.containsGroups(userId);
873            }
874    
875            /**
876             */
877            @Override
878            public void setUserGroups(long userId, long[] groupIds) {
879                    userPersistence.setGroups(userId, groupIds);
880            }
881    
882            /**
883             * Returns the group local service.
884             *
885             * @return the group local service
886             */
887            public GroupLocalService getGroupLocalService() {
888                    return groupLocalService;
889            }
890    
891            /**
892             * Sets the group local service.
893             *
894             * @param groupLocalService the group local service
895             */
896            public void setGroupLocalService(GroupLocalService groupLocalService) {
897                    this.groupLocalService = groupLocalService;
898            }
899    
900            /**
901             * Returns the group remote service.
902             *
903             * @return the group remote service
904             */
905            public com.liferay.portal.service.GroupService getGroupService() {
906                    return groupService;
907            }
908    
909            /**
910             * Sets the group remote service.
911             *
912             * @param groupService the group remote service
913             */
914            public void setGroupService(
915                    com.liferay.portal.service.GroupService groupService) {
916                    this.groupService = groupService;
917            }
918    
919            /**
920             * Returns the group persistence.
921             *
922             * @return the group persistence
923             */
924            public GroupPersistence getGroupPersistence() {
925                    return groupPersistence;
926            }
927    
928            /**
929             * Sets the group persistence.
930             *
931             * @param groupPersistence the group persistence
932             */
933            public void setGroupPersistence(GroupPersistence groupPersistence) {
934                    this.groupPersistence = groupPersistence;
935            }
936    
937            /**
938             * Returns the group finder.
939             *
940             * @return the group finder
941             */
942            public GroupFinder getGroupFinder() {
943                    return groupFinder;
944            }
945    
946            /**
947             * Sets the group finder.
948             *
949             * @param groupFinder the group finder
950             */
951            public void setGroupFinder(GroupFinder groupFinder) {
952                    this.groupFinder = groupFinder;
953            }
954    
955            /**
956             * Returns the counter local service.
957             *
958             * @return the counter local service
959             */
960            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
961                    return counterLocalService;
962            }
963    
964            /**
965             * Sets the counter local service.
966             *
967             * @param counterLocalService the counter local service
968             */
969            public void setCounterLocalService(
970                    com.liferay.counter.service.CounterLocalService counterLocalService) {
971                    this.counterLocalService = counterLocalService;
972            }
973    
974            /**
975             * Returns the account local service.
976             *
977             * @return the account local service
978             */
979            public com.liferay.portal.service.AccountLocalService getAccountLocalService() {
980                    return accountLocalService;
981            }
982    
983            /**
984             * Sets the account local service.
985             *
986             * @param accountLocalService the account local service
987             */
988            public void setAccountLocalService(
989                    com.liferay.portal.service.AccountLocalService accountLocalService) {
990                    this.accountLocalService = accountLocalService;
991            }
992    
993            /**
994             * Returns the account remote service.
995             *
996             * @return the account remote service
997             */
998            public com.liferay.portal.service.AccountService getAccountService() {
999                    return accountService;
1000            }
1001    
1002            /**
1003             * Sets the account remote service.
1004             *
1005             * @param accountService the account remote service
1006             */
1007            public void setAccountService(
1008                    com.liferay.portal.service.AccountService accountService) {
1009                    this.accountService = accountService;
1010            }
1011    
1012            /**
1013             * Returns the account persistence.
1014             *
1015             * @return the account persistence
1016             */
1017            public AccountPersistence getAccountPersistence() {
1018                    return accountPersistence;
1019            }
1020    
1021            /**
1022             * Sets the account persistence.
1023             *
1024             * @param accountPersistence the account persistence
1025             */
1026            public void setAccountPersistence(AccountPersistence accountPersistence) {
1027                    this.accountPersistence = accountPersistence;
1028            }
1029    
1030            /**
1031             * Returns the background task local service.
1032             *
1033             * @return the background task local service
1034             */
1035            public com.liferay.portal.service.BackgroundTaskLocalService getBackgroundTaskLocalService() {
1036                    return backgroundTaskLocalService;
1037            }
1038    
1039            /**
1040             * Sets the background task local service.
1041             *
1042             * @param backgroundTaskLocalService the background task local service
1043             */
1044            public void setBackgroundTaskLocalService(
1045                    com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService) {
1046                    this.backgroundTaskLocalService = backgroundTaskLocalService;
1047            }
1048    
1049            /**
1050             * Returns the background task remote service.
1051             *
1052             * @return the background task remote service
1053             */
1054            public com.liferay.portal.service.BackgroundTaskService getBackgroundTaskService() {
1055                    return backgroundTaskService;
1056            }
1057    
1058            /**
1059             * Sets the background task remote service.
1060             *
1061             * @param backgroundTaskService the background task remote service
1062             */
1063            public void setBackgroundTaskService(
1064                    com.liferay.portal.service.BackgroundTaskService backgroundTaskService) {
1065                    this.backgroundTaskService = backgroundTaskService;
1066            }
1067    
1068            /**
1069             * Returns the background task persistence.
1070             *
1071             * @return the background task persistence
1072             */
1073            public BackgroundTaskPersistence getBackgroundTaskPersistence() {
1074                    return backgroundTaskPersistence;
1075            }
1076    
1077            /**
1078             * Sets the background task persistence.
1079             *
1080             * @param backgroundTaskPersistence the background task persistence
1081             */
1082            public void setBackgroundTaskPersistence(
1083                    BackgroundTaskPersistence backgroundTaskPersistence) {
1084                    this.backgroundTaskPersistence = backgroundTaskPersistence;
1085            }
1086    
1087            /**
1088             * Returns the class name local service.
1089             *
1090             * @return the class name local service
1091             */
1092            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
1093                    return classNameLocalService;
1094            }
1095    
1096            /**
1097             * Sets the class name local service.
1098             *
1099             * @param classNameLocalService the class name local service
1100             */
1101            public void setClassNameLocalService(
1102                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
1103                    this.classNameLocalService = classNameLocalService;
1104            }
1105    
1106            /**
1107             * Returns the class name remote service.
1108             *
1109             * @return the class name remote service
1110             */
1111            public com.liferay.portal.service.ClassNameService getClassNameService() {
1112                    return classNameService;
1113            }
1114    
1115            /**
1116             * Sets the class name remote service.
1117             *
1118             * @param classNameService the class name remote service
1119             */
1120            public void setClassNameService(
1121                    com.liferay.portal.service.ClassNameService classNameService) {
1122                    this.classNameService = classNameService;
1123            }
1124    
1125            /**
1126             * Returns the class name persistence.
1127             *
1128             * @return the class name persistence
1129             */
1130            public ClassNamePersistence getClassNamePersistence() {
1131                    return classNamePersistence;
1132            }
1133    
1134            /**
1135             * Sets the class name persistence.
1136             *
1137             * @param classNamePersistence the class name persistence
1138             */
1139            public void setClassNamePersistence(
1140                    ClassNamePersistence classNamePersistence) {
1141                    this.classNamePersistence = classNamePersistence;
1142            }
1143    
1144            /**
1145             * Returns the company local service.
1146             *
1147             * @return the company local service
1148             */
1149            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
1150                    return companyLocalService;
1151            }
1152    
1153            /**
1154             * Sets the company local service.
1155             *
1156             * @param companyLocalService the company local service
1157             */
1158            public void setCompanyLocalService(
1159                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
1160                    this.companyLocalService = companyLocalService;
1161            }
1162    
1163            /**
1164             * Returns the company remote service.
1165             *
1166             * @return the company remote service
1167             */
1168            public com.liferay.portal.service.CompanyService getCompanyService() {
1169                    return companyService;
1170            }
1171    
1172            /**
1173             * Sets the company remote service.
1174             *
1175             * @param companyService the company remote service
1176             */
1177            public void setCompanyService(
1178                    com.liferay.portal.service.CompanyService companyService) {
1179                    this.companyService = companyService;
1180            }
1181    
1182            /**
1183             * Returns the company persistence.
1184             *
1185             * @return the company persistence
1186             */
1187            public CompanyPersistence getCompanyPersistence() {
1188                    return companyPersistence;
1189            }
1190    
1191            /**
1192             * Sets the company persistence.
1193             *
1194             * @param companyPersistence the company persistence
1195             */
1196            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
1197                    this.companyPersistence = companyPersistence;
1198            }
1199    
1200            /**
1201             * Returns the asset category local service.
1202             *
1203             * @return the asset category local service
1204             */
1205            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1206                    return assetCategoryLocalService;
1207            }
1208    
1209            /**
1210             * Sets the asset category local service.
1211             *
1212             * @param assetCategoryLocalService the asset category local service
1213             */
1214            public void setAssetCategoryLocalService(
1215                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1216                    this.assetCategoryLocalService = assetCategoryLocalService;
1217            }
1218    
1219            /**
1220             * Returns the asset category remote service.
1221             *
1222             * @return the asset category remote service
1223             */
1224            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1225                    return assetCategoryService;
1226            }
1227    
1228            /**
1229             * Sets the asset category remote service.
1230             *
1231             * @param assetCategoryService the asset category remote service
1232             */
1233            public void setAssetCategoryService(
1234                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1235                    this.assetCategoryService = assetCategoryService;
1236            }
1237    
1238            /**
1239             * Returns the asset category persistence.
1240             *
1241             * @return the asset category persistence
1242             */
1243            public AssetCategoryPersistence getAssetCategoryPersistence() {
1244                    return assetCategoryPersistence;
1245            }
1246    
1247            /**
1248             * Sets the asset category persistence.
1249             *
1250             * @param assetCategoryPersistence the asset category persistence
1251             */
1252            public void setAssetCategoryPersistence(
1253                    AssetCategoryPersistence assetCategoryPersistence) {
1254                    this.assetCategoryPersistence = assetCategoryPersistence;
1255            }
1256    
1257            /**
1258             * Returns the asset category finder.
1259             *
1260             * @return the asset category finder
1261             */
1262            public AssetCategoryFinder getAssetCategoryFinder() {
1263                    return assetCategoryFinder;
1264            }
1265    
1266            /**
1267             * Sets the asset category finder.
1268             *
1269             * @param assetCategoryFinder the asset category finder
1270             */
1271            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1272                    this.assetCategoryFinder = assetCategoryFinder;
1273            }
1274    
1275            /**
1276             * Returns the asset entry local service.
1277             *
1278             * @return the asset entry local service
1279             */
1280            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1281                    return assetEntryLocalService;
1282            }
1283    
1284            /**
1285             * Sets the asset entry local service.
1286             *
1287             * @param assetEntryLocalService the asset entry local service
1288             */
1289            public void setAssetEntryLocalService(
1290                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1291                    this.assetEntryLocalService = assetEntryLocalService;
1292            }
1293    
1294            /**
1295             * Returns the asset entry remote service.
1296             *
1297             * @return the asset entry remote service
1298             */
1299            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1300                    return assetEntryService;
1301            }
1302    
1303            /**
1304             * Sets the asset entry remote service.
1305             *
1306             * @param assetEntryService the asset entry remote service
1307             */
1308            public void setAssetEntryService(
1309                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1310                    this.assetEntryService = assetEntryService;
1311            }
1312    
1313            /**
1314             * Returns the asset entry persistence.
1315             *
1316             * @return the asset entry persistence
1317             */
1318            public AssetEntryPersistence getAssetEntryPersistence() {
1319                    return assetEntryPersistence;
1320            }
1321    
1322            /**
1323             * Sets the asset entry persistence.
1324             *
1325             * @param assetEntryPersistence the asset entry persistence
1326             */
1327            public void setAssetEntryPersistence(
1328                    AssetEntryPersistence assetEntryPersistence) {
1329                    this.assetEntryPersistence = assetEntryPersistence;
1330            }
1331    
1332            /**
1333             * Returns the asset entry finder.
1334             *
1335             * @return the asset entry finder
1336             */
1337            public AssetEntryFinder getAssetEntryFinder() {
1338                    return assetEntryFinder;
1339            }
1340    
1341            /**
1342             * Sets the asset entry finder.
1343             *
1344             * @param assetEntryFinder the asset entry finder
1345             */
1346            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1347                    this.assetEntryFinder = assetEntryFinder;
1348            }
1349    
1350            /**
1351             * Returns the asset tag local service.
1352             *
1353             * @return the asset tag local service
1354             */
1355            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1356                    return assetTagLocalService;
1357            }
1358    
1359            /**
1360             * Sets the asset tag local service.
1361             *
1362             * @param assetTagLocalService the asset tag local service
1363             */
1364            public void setAssetTagLocalService(
1365                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1366                    this.assetTagLocalService = assetTagLocalService;
1367            }
1368    
1369            /**
1370             * Returns the asset tag remote service.
1371             *
1372             * @return the asset tag remote service
1373             */
1374            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1375                    return assetTagService;
1376            }
1377    
1378            /**
1379             * Sets the asset tag remote service.
1380             *
1381             * @param assetTagService the asset tag remote service
1382             */
1383            public void setAssetTagService(
1384                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1385                    this.assetTagService = assetTagService;
1386            }
1387    
1388            /**
1389             * Returns the asset tag persistence.
1390             *
1391             * @return the asset tag persistence
1392             */
1393            public AssetTagPersistence getAssetTagPersistence() {
1394                    return assetTagPersistence;
1395            }
1396    
1397            /**
1398             * Sets the asset tag persistence.
1399             *
1400             * @param assetTagPersistence the asset tag persistence
1401             */
1402            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1403                    this.assetTagPersistence = assetTagPersistence;
1404            }
1405    
1406            /**
1407             * Returns the asset tag finder.
1408             *
1409             * @return the asset tag finder
1410             */
1411            public AssetTagFinder getAssetTagFinder() {
1412                    return assetTagFinder;
1413            }
1414    
1415            /**
1416             * Sets the asset tag finder.
1417             *
1418             * @param assetTagFinder the asset tag finder
1419             */
1420            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1421                    this.assetTagFinder = assetTagFinder;
1422            }
1423    
1424            /**
1425             * Returns the asset vocabulary local service.
1426             *
1427             * @return the asset vocabulary local service
1428             */
1429            public com.liferay.portlet.asset.service.AssetVocabularyLocalService getAssetVocabularyLocalService() {
1430                    return assetVocabularyLocalService;
1431            }
1432    
1433            /**
1434             * Sets the asset vocabulary local service.
1435             *
1436             * @param assetVocabularyLocalService the asset vocabulary local service
1437             */
1438            public void setAssetVocabularyLocalService(
1439                    com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService) {
1440                    this.assetVocabularyLocalService = assetVocabularyLocalService;
1441            }
1442    
1443            /**
1444             * Returns the asset vocabulary remote service.
1445             *
1446             * @return the asset vocabulary remote service
1447             */
1448            public com.liferay.portlet.asset.service.AssetVocabularyService getAssetVocabularyService() {
1449                    return assetVocabularyService;
1450            }
1451    
1452            /**
1453             * Sets the asset vocabulary remote service.
1454             *
1455             * @param assetVocabularyService the asset vocabulary remote service
1456             */
1457            public void setAssetVocabularyService(
1458                    com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService) {
1459                    this.assetVocabularyService = assetVocabularyService;
1460            }
1461    
1462            /**
1463             * Returns the asset vocabulary persistence.
1464             *
1465             * @return the asset vocabulary persistence
1466             */
1467            public AssetVocabularyPersistence getAssetVocabularyPersistence() {
1468                    return assetVocabularyPersistence;
1469            }
1470    
1471            /**
1472             * Sets the asset vocabulary persistence.
1473             *
1474             * @param assetVocabularyPersistence the asset vocabulary persistence
1475             */
1476            public void setAssetVocabularyPersistence(
1477                    AssetVocabularyPersistence assetVocabularyPersistence) {
1478                    this.assetVocabularyPersistence = assetVocabularyPersistence;
1479            }
1480    
1481            /**
1482             * Returns the asset vocabulary finder.
1483             *
1484             * @return the asset vocabulary finder
1485             */
1486            public AssetVocabularyFinder getAssetVocabularyFinder() {
1487                    return assetVocabularyFinder;
1488            }
1489    
1490            /**
1491             * Sets the asset vocabulary finder.
1492             *
1493             * @param assetVocabularyFinder the asset vocabulary finder
1494             */
1495            public void setAssetVocabularyFinder(
1496                    AssetVocabularyFinder assetVocabularyFinder) {
1497                    this.assetVocabularyFinder = assetVocabularyFinder;
1498            }
1499    
1500            /**
1501             * Returns the d l app local service.
1502             *
1503             * @return the d l app local service
1504             */
1505            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
1506                    return dlAppLocalService;
1507            }
1508    
1509            /**
1510             * Sets the d l app local service.
1511             *
1512             * @param dlAppLocalService the d l app local service
1513             */
1514            public void setDLAppLocalService(
1515                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
1516                    this.dlAppLocalService = dlAppLocalService;
1517            }
1518    
1519            /**
1520             * Returns the d l app remote service.
1521             *
1522             * @return the d l app remote service
1523             */
1524            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
1525                    return dlAppService;
1526            }
1527    
1528            /**
1529             * Sets the d l app remote service.
1530             *
1531             * @param dlAppService the d l app remote service
1532             */
1533            public void setDLAppService(
1534                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
1535                    this.dlAppService = dlAppService;
1536            }
1537    
1538            /**
1539             * Returns the expando row local service.
1540             *
1541             * @return the expando row local service
1542             */
1543            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1544                    return expandoRowLocalService;
1545            }
1546    
1547            /**
1548             * Sets the expando row local service.
1549             *
1550             * @param expandoRowLocalService the expando row local service
1551             */
1552            public void setExpandoRowLocalService(
1553                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1554                    this.expandoRowLocalService = expandoRowLocalService;
1555            }
1556    
1557            /**
1558             * Returns the expando row persistence.
1559             *
1560             * @return the expando row persistence
1561             */
1562            public ExpandoRowPersistence getExpandoRowPersistence() {
1563                    return expandoRowPersistence;
1564            }
1565    
1566            /**
1567             * Sets the expando row persistence.
1568             *
1569             * @param expandoRowPersistence the expando row persistence
1570             */
1571            public void setExpandoRowPersistence(
1572                    ExpandoRowPersistence expandoRowPersistence) {
1573                    this.expandoRowPersistence = expandoRowPersistence;
1574            }
1575    
1576            /**
1577             * Returns the export import local service.
1578             *
1579             * @return the export import local service
1580             */
1581            public com.liferay.portlet.exportimport.service.ExportImportLocalService getExportImportLocalService() {
1582                    return exportImportLocalService;
1583            }
1584    
1585            /**
1586             * Sets the export import local service.
1587             *
1588             * @param exportImportLocalService the export import local service
1589             */
1590            public void setExportImportLocalService(
1591                    com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService) {
1592                    this.exportImportLocalService = exportImportLocalService;
1593            }
1594    
1595            /**
1596             * Returns the export import remote service.
1597             *
1598             * @return the export import remote service
1599             */
1600            public com.liferay.portlet.exportimport.service.ExportImportService getExportImportService() {
1601                    return exportImportService;
1602            }
1603    
1604            /**
1605             * Sets the export import remote service.
1606             *
1607             * @param exportImportService the export import remote service
1608             */
1609            public void setExportImportService(
1610                    com.liferay.portlet.exportimport.service.ExportImportService exportImportService) {
1611                    this.exportImportService = exportImportService;
1612            }
1613    
1614            /**
1615             * Returns the export import configuration local service.
1616             *
1617             * @return the export import configuration local service
1618             */
1619            public com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService getExportImportConfigurationLocalService() {
1620                    return exportImportConfigurationLocalService;
1621            }
1622    
1623            /**
1624             * Sets the export import configuration local service.
1625             *
1626             * @param exportImportConfigurationLocalService the export import configuration local service
1627             */
1628            public void setExportImportConfigurationLocalService(
1629                    com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService) {
1630                    this.exportImportConfigurationLocalService = exportImportConfigurationLocalService;
1631            }
1632    
1633            /**
1634             * Returns the export import configuration remote service.
1635             *
1636             * @return the export import configuration remote service
1637             */
1638            public com.liferay.portlet.exportimport.service.ExportImportConfigurationService getExportImportConfigurationService() {
1639                    return exportImportConfigurationService;
1640            }
1641    
1642            /**
1643             * Sets the export import configuration remote service.
1644             *
1645             * @param exportImportConfigurationService the export import configuration remote service
1646             */
1647            public void setExportImportConfigurationService(
1648                    com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService) {
1649                    this.exportImportConfigurationService = exportImportConfigurationService;
1650            }
1651    
1652            /**
1653             * Returns the export import configuration persistence.
1654             *
1655             * @return the export import configuration persistence
1656             */
1657            public ExportImportConfigurationPersistence getExportImportConfigurationPersistence() {
1658                    return exportImportConfigurationPersistence;
1659            }
1660    
1661            /**
1662             * Sets the export import configuration persistence.
1663             *
1664             * @param exportImportConfigurationPersistence the export import configuration persistence
1665             */
1666            public void setExportImportConfigurationPersistence(
1667                    ExportImportConfigurationPersistence exportImportConfigurationPersistence) {
1668                    this.exportImportConfigurationPersistence = exportImportConfigurationPersistence;
1669            }
1670    
1671            /**
1672             * Returns the staging local service.
1673             *
1674             * @return the staging local service
1675             */
1676            public com.liferay.portlet.exportimport.service.StagingLocalService getStagingLocalService() {
1677                    return stagingLocalService;
1678            }
1679    
1680            /**
1681             * Sets the staging local service.
1682             *
1683             * @param stagingLocalService the staging local service
1684             */
1685            public void setStagingLocalService(
1686                    com.liferay.portlet.exportimport.service.StagingLocalService stagingLocalService) {
1687                    this.stagingLocalService = stagingLocalService;
1688            }
1689    
1690            /**
1691             * Returns the staging remote service.
1692             *
1693             * @return the staging remote service
1694             */
1695            public com.liferay.portlet.exportimport.service.StagingService getStagingService() {
1696                    return stagingService;
1697            }
1698    
1699            /**
1700             * Sets the staging remote service.
1701             *
1702             * @param stagingService the staging remote service
1703             */
1704            public void setStagingService(
1705                    com.liferay.portlet.exportimport.service.StagingService stagingService) {
1706                    this.stagingService = stagingService;
1707            }
1708    
1709            /**
1710             * Returns the shopping cart local service.
1711             *
1712             * @return the shopping cart local service
1713             */
1714            public com.liferay.portlet.shopping.service.ShoppingCartLocalService getShoppingCartLocalService() {
1715                    return shoppingCartLocalService;
1716            }
1717    
1718            /**
1719             * Sets the shopping cart local service.
1720             *
1721             * @param shoppingCartLocalService the shopping cart local service
1722             */
1723            public void setShoppingCartLocalService(
1724                    com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService) {
1725                    this.shoppingCartLocalService = shoppingCartLocalService;
1726            }
1727    
1728            /**
1729             * Returns the shopping cart persistence.
1730             *
1731             * @return the shopping cart persistence
1732             */
1733            public ShoppingCartPersistence getShoppingCartPersistence() {
1734                    return shoppingCartPersistence;
1735            }
1736    
1737            /**
1738             * Sets the shopping cart persistence.
1739             *
1740             * @param shoppingCartPersistence the shopping cart persistence
1741             */
1742            public void setShoppingCartPersistence(
1743                    ShoppingCartPersistence shoppingCartPersistence) {
1744                    this.shoppingCartPersistence = shoppingCartPersistence;
1745            }
1746    
1747            /**
1748             * Returns the shopping category local service.
1749             *
1750             * @return the shopping category local service
1751             */
1752            public com.liferay.portlet.shopping.service.ShoppingCategoryLocalService getShoppingCategoryLocalService() {
1753                    return shoppingCategoryLocalService;
1754            }
1755    
1756            /**
1757             * Sets the shopping category local service.
1758             *
1759             * @param shoppingCategoryLocalService the shopping category local service
1760             */
1761            public void setShoppingCategoryLocalService(
1762                    com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService) {
1763                    this.shoppingCategoryLocalService = shoppingCategoryLocalService;
1764            }
1765    
1766            /**
1767             * Returns the shopping category remote service.
1768             *
1769             * @return the shopping category remote service
1770             */
1771            public com.liferay.portlet.shopping.service.ShoppingCategoryService getShoppingCategoryService() {
1772                    return shoppingCategoryService;
1773            }
1774    
1775            /**
1776             * Sets the shopping category remote service.
1777             *
1778             * @param shoppingCategoryService the shopping category remote service
1779             */
1780            public void setShoppingCategoryService(
1781                    com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService) {
1782                    this.shoppingCategoryService = shoppingCategoryService;
1783            }
1784    
1785            /**
1786             * Returns the shopping category persistence.
1787             *
1788             * @return the shopping category persistence
1789             */
1790            public ShoppingCategoryPersistence getShoppingCategoryPersistence() {
1791                    return shoppingCategoryPersistence;
1792            }
1793    
1794            /**
1795             * Sets the shopping category persistence.
1796             *
1797             * @param shoppingCategoryPersistence the shopping category persistence
1798             */
1799            public void setShoppingCategoryPersistence(
1800                    ShoppingCategoryPersistence shoppingCategoryPersistence) {
1801                    this.shoppingCategoryPersistence = shoppingCategoryPersistence;
1802            }
1803    
1804            /**
1805             * Returns the shopping coupon local service.
1806             *
1807             * @return the shopping coupon local service
1808             */
1809            public com.liferay.portlet.shopping.service.ShoppingCouponLocalService getShoppingCouponLocalService() {
1810                    return shoppingCouponLocalService;
1811            }
1812    
1813            /**
1814             * Sets the shopping coupon local service.
1815             *
1816             * @param shoppingCouponLocalService the shopping coupon local service
1817             */
1818            public void setShoppingCouponLocalService(
1819                    com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService) {
1820                    this.shoppingCouponLocalService = shoppingCouponLocalService;
1821            }
1822    
1823            /**
1824             * Returns the shopping coupon remote service.
1825             *
1826             * @return the shopping coupon remote service
1827             */
1828            public com.liferay.portlet.shopping.service.ShoppingCouponService getShoppingCouponService() {
1829                    return shoppingCouponService;
1830            }
1831    
1832            /**
1833             * Sets the shopping coupon remote service.
1834             *
1835             * @param shoppingCouponService the shopping coupon remote service
1836             */
1837            public void setShoppingCouponService(
1838                    com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService) {
1839                    this.shoppingCouponService = shoppingCouponService;
1840            }
1841    
1842            /**
1843             * Returns the shopping coupon persistence.
1844             *
1845             * @return the shopping coupon persistence
1846             */
1847            public ShoppingCouponPersistence getShoppingCouponPersistence() {
1848                    return shoppingCouponPersistence;
1849            }
1850    
1851            /**
1852             * Sets the shopping coupon persistence.
1853             *
1854             * @param shoppingCouponPersistence the shopping coupon persistence
1855             */
1856            public void setShoppingCouponPersistence(
1857                    ShoppingCouponPersistence shoppingCouponPersistence) {
1858                    this.shoppingCouponPersistence = shoppingCouponPersistence;
1859            }
1860    
1861            /**
1862             * Returns the shopping coupon finder.
1863             *
1864             * @return the shopping coupon finder
1865             */
1866            public ShoppingCouponFinder getShoppingCouponFinder() {
1867                    return shoppingCouponFinder;
1868            }
1869    
1870            /**
1871             * Sets the shopping coupon finder.
1872             *
1873             * @param shoppingCouponFinder the shopping coupon finder
1874             */
1875            public void setShoppingCouponFinder(
1876                    ShoppingCouponFinder shoppingCouponFinder) {
1877                    this.shoppingCouponFinder = shoppingCouponFinder;
1878            }
1879    
1880            /**
1881             * Returns the shopping order local service.
1882             *
1883             * @return the shopping order local service
1884             */
1885            public com.liferay.portlet.shopping.service.ShoppingOrderLocalService getShoppingOrderLocalService() {
1886                    return shoppingOrderLocalService;
1887            }
1888    
1889            /**
1890             * Sets the shopping order local service.
1891             *
1892             * @param shoppingOrderLocalService the shopping order local service
1893             */
1894            public void setShoppingOrderLocalService(
1895                    com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService) {
1896                    this.shoppingOrderLocalService = shoppingOrderLocalService;
1897            }
1898    
1899            /**
1900             * Returns the shopping order remote service.
1901             *
1902             * @return the shopping order remote service
1903             */
1904            public com.liferay.portlet.shopping.service.ShoppingOrderService getShoppingOrderService() {
1905                    return shoppingOrderService;
1906            }
1907    
1908            /**
1909             * Sets the shopping order remote service.
1910             *
1911             * @param shoppingOrderService the shopping order remote service
1912             */
1913            public void setShoppingOrderService(
1914                    com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService) {
1915                    this.shoppingOrderService = shoppingOrderService;
1916            }
1917    
1918            /**
1919             * Returns the shopping order persistence.
1920             *
1921             * @return the shopping order persistence
1922             */
1923            public ShoppingOrderPersistence getShoppingOrderPersistence() {
1924                    return shoppingOrderPersistence;
1925            }
1926    
1927            /**
1928             * Sets the shopping order persistence.
1929             *
1930             * @param shoppingOrderPersistence the shopping order persistence
1931             */
1932            public void setShoppingOrderPersistence(
1933                    ShoppingOrderPersistence shoppingOrderPersistence) {
1934                    this.shoppingOrderPersistence = shoppingOrderPersistence;
1935            }
1936    
1937            /**
1938             * Returns the shopping order finder.
1939             *
1940             * @return the shopping order finder
1941             */
1942            public ShoppingOrderFinder getShoppingOrderFinder() {
1943                    return shoppingOrderFinder;
1944            }
1945    
1946            /**
1947             * Sets the shopping order finder.
1948             *
1949             * @param shoppingOrderFinder the shopping order finder
1950             */
1951            public void setShoppingOrderFinder(ShoppingOrderFinder shoppingOrderFinder) {
1952                    this.shoppingOrderFinder = shoppingOrderFinder;
1953            }
1954    
1955            /**
1956             * Returns the social activity local service.
1957             *
1958             * @return the social activity local service
1959             */
1960            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1961                    return socialActivityLocalService;
1962            }
1963    
1964            /**
1965             * Sets the social activity local service.
1966             *
1967             * @param socialActivityLocalService the social activity local service
1968             */
1969            public void setSocialActivityLocalService(
1970                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1971                    this.socialActivityLocalService = socialActivityLocalService;
1972            }
1973    
1974            /**
1975             * Returns the social activity remote service.
1976             *
1977             * @return the social activity remote service
1978             */
1979            public com.liferay.portlet.social.service.SocialActivityService getSocialActivityService() {
1980                    return socialActivityService;
1981            }
1982    
1983            /**
1984             * Sets the social activity remote service.
1985             *
1986             * @param socialActivityService the social activity remote service
1987             */
1988            public void setSocialActivityService(
1989                    com.liferay.portlet.social.service.SocialActivityService socialActivityService) {
1990                    this.socialActivityService = socialActivityService;
1991            }
1992    
1993            /**
1994             * Returns the social activity persistence.
1995             *
1996             * @return the social activity persistence
1997             */
1998            public SocialActivityPersistence getSocialActivityPersistence() {
1999                    return socialActivityPersistence;
2000            }
2001    
2002            /**
2003             * Sets the social activity persistence.
2004             *
2005             * @param socialActivityPersistence the social activity persistence
2006             */
2007            public void setSocialActivityPersistence(
2008                    SocialActivityPersistence socialActivityPersistence) {
2009                    this.socialActivityPersistence = socialActivityPersistence;
2010            }
2011    
2012            /**
2013             * Returns the social activity finder.
2014             *
2015             * @return the social activity finder
2016             */
2017            public SocialActivityFinder getSocialActivityFinder() {
2018                    return socialActivityFinder;
2019            }
2020    
2021            /**
2022             * Sets the social activity finder.
2023             *
2024             * @param socialActivityFinder the social activity finder
2025             */
2026            public void setSocialActivityFinder(
2027                    SocialActivityFinder socialActivityFinder) {
2028                    this.socialActivityFinder = socialActivityFinder;
2029            }
2030    
2031            /**
2032             * Returns the social activity setting local service.
2033             *
2034             * @return the social activity setting local service
2035             */
2036            public com.liferay.portlet.social.service.SocialActivitySettingLocalService getSocialActivitySettingLocalService() {
2037                    return socialActivitySettingLocalService;
2038            }
2039    
2040            /**
2041             * Sets the social activity setting local service.
2042             *
2043             * @param socialActivitySettingLocalService the social activity setting local service
2044             */
2045            public void setSocialActivitySettingLocalService(
2046                    com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService) {
2047                    this.socialActivitySettingLocalService = socialActivitySettingLocalService;
2048            }
2049    
2050            /**
2051             * Returns the social activity setting remote service.
2052             *
2053             * @return the social activity setting remote service
2054             */
2055            public com.liferay.portlet.social.service.SocialActivitySettingService getSocialActivitySettingService() {
2056                    return socialActivitySettingService;
2057            }
2058    
2059            /**
2060             * Sets the social activity setting remote service.
2061             *
2062             * @param socialActivitySettingService the social activity setting remote service
2063             */
2064            public void setSocialActivitySettingService(
2065                    com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService) {
2066                    this.socialActivitySettingService = socialActivitySettingService;
2067            }
2068    
2069            /**
2070             * Returns the social activity setting persistence.
2071             *
2072             * @return the social activity setting persistence
2073             */
2074            public SocialActivitySettingPersistence getSocialActivitySettingPersistence() {
2075                    return socialActivitySettingPersistence;
2076            }
2077    
2078            /**
2079             * Sets the social activity setting persistence.
2080             *
2081             * @param socialActivitySettingPersistence the social activity setting persistence
2082             */
2083            public void setSocialActivitySettingPersistence(
2084                    SocialActivitySettingPersistence socialActivitySettingPersistence) {
2085                    this.socialActivitySettingPersistence = socialActivitySettingPersistence;
2086            }
2087    
2088            /**
2089             * Returns the social request local service.
2090             *
2091             * @return the social request local service
2092             */
2093            public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
2094                    return socialRequestLocalService;
2095            }
2096    
2097            /**
2098             * Sets the social request local service.
2099             *
2100             * @param socialRequestLocalService the social request local service
2101             */
2102            public void setSocialRequestLocalService(
2103                    com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
2104                    this.socialRequestLocalService = socialRequestLocalService;
2105            }
2106    
2107            /**
2108             * Returns the social request remote service.
2109             *
2110             * @return the social request remote service
2111             */
2112            public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
2113                    return socialRequestService;
2114            }
2115    
2116            /**
2117             * Sets the social request remote service.
2118             *
2119             * @param socialRequestService the social request remote service
2120             */
2121            public void setSocialRequestService(
2122                    com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
2123                    this.socialRequestService = socialRequestService;
2124            }
2125    
2126            /**
2127             * Returns the social request persistence.
2128             *
2129             * @return the social request persistence
2130             */
2131            public SocialRequestPersistence getSocialRequestPersistence() {
2132                    return socialRequestPersistence;
2133            }
2134    
2135            /**
2136             * Sets the social request persistence.
2137             *
2138             * @param socialRequestPersistence the social request persistence
2139             */
2140            public void setSocialRequestPersistence(
2141                    SocialRequestPersistence socialRequestPersistence) {
2142                    this.socialRequestPersistence = socialRequestPersistence;
2143            }
2144    
2145            /**
2146             * Returns the s c framework version local service.
2147             *
2148             * @return the s c framework version local service
2149             */
2150            public com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService getSCFrameworkVersionLocalService() {
2151                    return scFrameworkVersionLocalService;
2152            }
2153    
2154            /**
2155             * Sets the s c framework version local service.
2156             *
2157             * @param scFrameworkVersionLocalService the s c framework version local service
2158             */
2159            public void setSCFrameworkVersionLocalService(
2160                    com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService scFrameworkVersionLocalService) {
2161                    this.scFrameworkVersionLocalService = scFrameworkVersionLocalService;
2162            }
2163    
2164            /**
2165             * Returns the s c framework version remote service.
2166             *
2167             * @return the s c framework version remote service
2168             */
2169            public com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService getSCFrameworkVersionService() {
2170                    return scFrameworkVersionService;
2171            }
2172    
2173            /**
2174             * Sets the s c framework version remote service.
2175             *
2176             * @param scFrameworkVersionService the s c framework version remote service
2177             */
2178            public void setSCFrameworkVersionService(
2179                    com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService scFrameworkVersionService) {
2180                    this.scFrameworkVersionService = scFrameworkVersionService;
2181            }
2182    
2183            /**
2184             * Returns the s c framework version persistence.
2185             *
2186             * @return the s c framework version persistence
2187             */
2188            public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence() {
2189                    return scFrameworkVersionPersistence;
2190            }
2191    
2192            /**
2193             * Sets the s c framework version persistence.
2194             *
2195             * @param scFrameworkVersionPersistence the s c framework version persistence
2196             */
2197            public void setSCFrameworkVersionPersistence(
2198                    SCFrameworkVersionPersistence scFrameworkVersionPersistence) {
2199                    this.scFrameworkVersionPersistence = scFrameworkVersionPersistence;
2200            }
2201    
2202            /**
2203             * Returns the s c product entry local service.
2204             *
2205             * @return the s c product entry local service
2206             */
2207            public com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService getSCProductEntryLocalService() {
2208                    return scProductEntryLocalService;
2209            }
2210    
2211            /**
2212             * Sets the s c product entry local service.
2213             *
2214             * @param scProductEntryLocalService the s c product entry local service
2215             */
2216            public void setSCProductEntryLocalService(
2217                    com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService scProductEntryLocalService) {
2218                    this.scProductEntryLocalService = scProductEntryLocalService;
2219            }
2220    
2221            /**
2222             * Returns the s c product entry remote service.
2223             *
2224             * @return the s c product entry remote service
2225             */
2226            public com.liferay.portlet.softwarecatalog.service.SCProductEntryService getSCProductEntryService() {
2227                    return scProductEntryService;
2228            }
2229    
2230            /**
2231             * Sets the s c product entry remote service.
2232             *
2233             * @param scProductEntryService the s c product entry remote service
2234             */
2235            public void setSCProductEntryService(
2236                    com.liferay.portlet.softwarecatalog.service.SCProductEntryService scProductEntryService) {
2237                    this.scProductEntryService = scProductEntryService;
2238            }
2239    
2240            /**
2241             * Returns the s c product entry persistence.
2242             *
2243             * @return the s c product entry persistence
2244             */
2245            public SCProductEntryPersistence getSCProductEntryPersistence() {
2246                    return scProductEntryPersistence;
2247            }
2248    
2249            /**
2250             * Sets the s c product entry persistence.
2251             *
2252             * @param scProductEntryPersistence the s c product entry persistence
2253             */
2254            public void setSCProductEntryPersistence(
2255                    SCProductEntryPersistence scProductEntryPersistence) {
2256                    this.scProductEntryPersistence = scProductEntryPersistence;
2257            }
2258    
2259            /**
2260             * Returns the trash entry local service.
2261             *
2262             * @return the trash entry local service
2263             */
2264            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
2265                    return trashEntryLocalService;
2266            }
2267    
2268            /**
2269             * Sets the trash entry local service.
2270             *
2271             * @param trashEntryLocalService the trash entry local service
2272             */
2273            public void setTrashEntryLocalService(
2274                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
2275                    this.trashEntryLocalService = trashEntryLocalService;
2276            }
2277    
2278            /**
2279             * Returns the trash entry remote service.
2280             *
2281             * @return the trash entry remote service
2282             */
2283            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
2284                    return trashEntryService;
2285            }
2286    
2287            /**
2288             * Sets the trash entry remote service.
2289             *
2290             * @param trashEntryService the trash entry remote service
2291             */
2292            public void setTrashEntryService(
2293                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
2294                    this.trashEntryService = trashEntryService;
2295            }
2296    
2297            /**
2298             * Returns the trash entry persistence.
2299             *
2300             * @return the trash entry persistence
2301             */
2302            public TrashEntryPersistence getTrashEntryPersistence() {
2303                    return trashEntryPersistence;
2304            }
2305    
2306            /**
2307             * Sets the trash entry persistence.
2308             *
2309             * @param trashEntryPersistence the trash entry persistence
2310             */
2311            public void setTrashEntryPersistence(
2312                    TrashEntryPersistence trashEntryPersistence) {
2313                    this.trashEntryPersistence = trashEntryPersistence;
2314            }
2315    
2316            /**
2317             * Returns the layout local service.
2318             *
2319             * @return the layout local service
2320             */
2321            public com.liferay.portal.service.LayoutLocalService getLayoutLocalService() {
2322                    return layoutLocalService;
2323            }
2324    
2325            /**
2326             * Sets the layout local service.
2327             *
2328             * @param layoutLocalService the layout local service
2329             */
2330            public void setLayoutLocalService(
2331                    com.liferay.portal.service.LayoutLocalService layoutLocalService) {
2332                    this.layoutLocalService = layoutLocalService;
2333            }
2334    
2335            /**
2336             * Returns the layout remote service.
2337             *
2338             * @return the layout remote service
2339             */
2340            public com.liferay.portal.service.LayoutService getLayoutService() {
2341                    return layoutService;
2342            }
2343    
2344            /**
2345             * Sets the layout remote service.
2346             *
2347             * @param layoutService the layout remote service
2348             */
2349            public void setLayoutService(
2350                    com.liferay.portal.service.LayoutService layoutService) {
2351                    this.layoutService = layoutService;
2352            }
2353    
2354            /**
2355             * Returns the layout persistence.
2356             *
2357             * @return the layout persistence
2358             */
2359            public LayoutPersistence getLayoutPersistence() {
2360                    return layoutPersistence;
2361            }
2362    
2363            /**
2364             * Sets the layout persistence.
2365             *
2366             * @param layoutPersistence the layout persistence
2367             */
2368            public void setLayoutPersistence(LayoutPersistence layoutPersistence) {
2369                    this.layoutPersistence = layoutPersistence;
2370            }
2371    
2372            /**
2373             * Returns the layout finder.
2374             *
2375             * @return the layout finder
2376             */
2377            public LayoutFinder getLayoutFinder() {
2378                    return layoutFinder;
2379            }
2380    
2381            /**
2382             * Sets the layout finder.
2383             *
2384             * @param layoutFinder the layout finder
2385             */
2386            public void setLayoutFinder(LayoutFinder layoutFinder) {
2387                    this.layoutFinder = layoutFinder;
2388            }
2389    
2390            /**
2391             * Returns the layout prototype local service.
2392             *
2393             * @return the layout prototype local service
2394             */
2395            public com.liferay.portal.service.LayoutPrototypeLocalService getLayoutPrototypeLocalService() {
2396                    return layoutPrototypeLocalService;
2397            }
2398    
2399            /**
2400             * Sets the layout prototype local service.
2401             *
2402             * @param layoutPrototypeLocalService the layout prototype local service
2403             */
2404            public void setLayoutPrototypeLocalService(
2405                    com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService) {
2406                    this.layoutPrototypeLocalService = layoutPrototypeLocalService;
2407            }
2408    
2409            /**
2410             * Returns the layout prototype remote service.
2411             *
2412             * @return the layout prototype remote service
2413             */
2414            public com.liferay.portal.service.LayoutPrototypeService getLayoutPrototypeService() {
2415                    return layoutPrototypeService;
2416            }
2417    
2418            /**
2419             * Sets the layout prototype remote service.
2420             *
2421             * @param layoutPrototypeService the layout prototype remote service
2422             */
2423            public void setLayoutPrototypeService(
2424                    com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService) {
2425                    this.layoutPrototypeService = layoutPrototypeService;
2426            }
2427    
2428            /**
2429             * Returns the layout prototype persistence.
2430             *
2431             * @return the layout prototype persistence
2432             */
2433            public LayoutPrototypePersistence getLayoutPrototypePersistence() {
2434                    return layoutPrototypePersistence;
2435            }
2436    
2437            /**
2438             * Sets the layout prototype persistence.
2439             *
2440             * @param layoutPrototypePersistence the layout prototype persistence
2441             */
2442            public void setLayoutPrototypePersistence(
2443                    LayoutPrototypePersistence layoutPrototypePersistence) {
2444                    this.layoutPrototypePersistence = layoutPrototypePersistence;
2445            }
2446    
2447            /**
2448             * Returns the layout set local service.
2449             *
2450             * @return the layout set local service
2451             */
2452            public com.liferay.portal.service.LayoutSetLocalService getLayoutSetLocalService() {
2453                    return layoutSetLocalService;
2454            }
2455    
2456            /**
2457             * Sets the layout set local service.
2458             *
2459             * @param layoutSetLocalService the layout set local service
2460             */
2461            public void setLayoutSetLocalService(
2462                    com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService) {
2463                    this.layoutSetLocalService = layoutSetLocalService;
2464            }
2465    
2466            /**
2467             * Returns the layout set remote service.
2468             *
2469             * @return the layout set remote service
2470             */
2471            public com.liferay.portal.service.LayoutSetService getLayoutSetService() {
2472                    return layoutSetService;
2473            }
2474    
2475            /**
2476             * Sets the layout set remote service.
2477             *
2478             * @param layoutSetService the layout set remote service
2479             */
2480            public void setLayoutSetService(
2481                    com.liferay.portal.service.LayoutSetService layoutSetService) {
2482                    this.layoutSetService = layoutSetService;
2483            }
2484    
2485            /**
2486             * Returns the layout set persistence.
2487             *
2488             * @return the layout set persistence
2489             */
2490            public LayoutSetPersistence getLayoutSetPersistence() {
2491                    return layoutSetPersistence;
2492            }
2493    
2494            /**
2495             * Sets the layout set persistence.
2496             *
2497             * @param layoutSetPersistence the layout set persistence
2498             */
2499            public void setLayoutSetPersistence(
2500                    LayoutSetPersistence layoutSetPersistence) {
2501                    this.layoutSetPersistence = layoutSetPersistence;
2502            }
2503    
2504            /**
2505             * Returns the layout set branch local service.
2506             *
2507             * @return the layout set branch local service
2508             */
2509            public com.liferay.portal.service.LayoutSetBranchLocalService getLayoutSetBranchLocalService() {
2510                    return layoutSetBranchLocalService;
2511            }
2512    
2513            /**
2514             * Sets the layout set branch local service.
2515             *
2516             * @param layoutSetBranchLocalService the layout set branch local service
2517             */
2518            public void setLayoutSetBranchLocalService(
2519                    com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService) {
2520                    this.layoutSetBranchLocalService = layoutSetBranchLocalService;
2521            }
2522    
2523            /**
2524             * Returns the layout set branch remote service.
2525             *
2526             * @return the layout set branch remote service
2527             */
2528            public com.liferay.portal.service.LayoutSetBranchService getLayoutSetBranchService() {
2529                    return layoutSetBranchService;
2530            }
2531    
2532            /**
2533             * Sets the layout set branch remote service.
2534             *
2535             * @param layoutSetBranchService the layout set branch remote service
2536             */
2537            public void setLayoutSetBranchService(
2538                    com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService) {
2539                    this.layoutSetBranchService = layoutSetBranchService;
2540            }
2541    
2542            /**
2543             * Returns the layout set branch persistence.
2544             *
2545             * @return the layout set branch persistence
2546             */
2547            public LayoutSetBranchPersistence getLayoutSetBranchPersistence() {
2548                    return layoutSetBranchPersistence;
2549            }
2550    
2551            /**
2552             * Sets the layout set branch persistence.
2553             *
2554             * @param layoutSetBranchPersistence the layout set branch persistence
2555             */
2556            public void setLayoutSetBranchPersistence(
2557                    LayoutSetBranchPersistence layoutSetBranchPersistence) {
2558                    this.layoutSetBranchPersistence = layoutSetBranchPersistence;
2559            }
2560    
2561            /**
2562             * Returns the layout set prototype local service.
2563             *
2564             * @return the layout set prototype local service
2565             */
2566            public com.liferay.portal.service.LayoutSetPrototypeLocalService getLayoutSetPrototypeLocalService() {
2567                    return layoutSetPrototypeLocalService;
2568            }
2569    
2570            /**
2571             * Sets the layout set prototype local service.
2572             *
2573             * @param layoutSetPrototypeLocalService the layout set prototype local service
2574             */
2575            public void setLayoutSetPrototypeLocalService(
2576                    com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService) {
2577                    this.layoutSetPrototypeLocalService = layoutSetPrototypeLocalService;
2578            }
2579    
2580            /**
2581             * Returns the layout set prototype remote service.
2582             *
2583             * @return the layout set prototype remote service
2584             */
2585            public com.liferay.portal.service.LayoutSetPrototypeService getLayoutSetPrototypeService() {
2586                    return layoutSetPrototypeService;
2587            }
2588    
2589            /**
2590             * Sets the layout set prototype remote service.
2591             *
2592             * @param layoutSetPrototypeService the layout set prototype remote service
2593             */
2594            public void setLayoutSetPrototypeService(
2595                    com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService) {
2596                    this.layoutSetPrototypeService = layoutSetPrototypeService;
2597            }
2598    
2599            /**
2600             * Returns the layout set prototype persistence.
2601             *
2602             * @return the layout set prototype persistence
2603             */
2604            public LayoutSetPrototypePersistence getLayoutSetPrototypePersistence() {
2605                    return layoutSetPrototypePersistence;
2606            }
2607    
2608            /**
2609             * Sets the layout set prototype persistence.
2610             *
2611             * @param layoutSetPrototypePersistence the layout set prototype persistence
2612             */
2613            public void setLayoutSetPrototypePersistence(
2614                    LayoutSetPrototypePersistence layoutSetPrototypePersistence) {
2615                    this.layoutSetPrototypePersistence = layoutSetPrototypePersistence;
2616            }
2617    
2618            /**
2619             * Returns the membership request local service.
2620             *
2621             * @return the membership request local service
2622             */
2623            public com.liferay.portal.service.MembershipRequestLocalService getMembershipRequestLocalService() {
2624                    return membershipRequestLocalService;
2625            }
2626    
2627            /**
2628             * Sets the membership request local service.
2629             *
2630             * @param membershipRequestLocalService the membership request local service
2631             */
2632            public void setMembershipRequestLocalService(
2633                    com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService) {
2634                    this.membershipRequestLocalService = membershipRequestLocalService;
2635            }
2636    
2637            /**
2638             * Returns the membership request remote service.
2639             *
2640             * @return the membership request remote service
2641             */
2642            public com.liferay.portal.service.MembershipRequestService getMembershipRequestService() {
2643                    return membershipRequestService;
2644            }
2645    
2646            /**
2647             * Sets the membership request remote service.
2648             *
2649             * @param membershipRequestService the membership request remote service
2650             */
2651            public void setMembershipRequestService(
2652                    com.liferay.portal.service.MembershipRequestService membershipRequestService) {
2653                    this.membershipRequestService = membershipRequestService;
2654            }
2655    
2656            /**
2657             * Returns the membership request persistence.
2658             *
2659             * @return the membership request persistence
2660             */
2661            public MembershipRequestPersistence getMembershipRequestPersistence() {
2662                    return membershipRequestPersistence;
2663            }
2664    
2665            /**
2666             * Sets the membership request persistence.
2667             *
2668             * @param membershipRequestPersistence the membership request persistence
2669             */
2670            public void setMembershipRequestPersistence(
2671                    MembershipRequestPersistence membershipRequestPersistence) {
2672                    this.membershipRequestPersistence = membershipRequestPersistence;
2673            }
2674    
2675            /**
2676             * Returns the organization local service.
2677             *
2678             * @return the organization local service
2679             */
2680            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
2681                    return organizationLocalService;
2682            }
2683    
2684            /**
2685             * Sets the organization local service.
2686             *
2687             * @param organizationLocalService the organization local service
2688             */
2689            public void setOrganizationLocalService(
2690                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
2691                    this.organizationLocalService = organizationLocalService;
2692            }
2693    
2694            /**
2695             * Returns the organization remote service.
2696             *
2697             * @return the organization remote service
2698             */
2699            public com.liferay.portal.service.OrganizationService getOrganizationService() {
2700                    return organizationService;
2701            }
2702    
2703            /**
2704             * Sets the organization remote service.
2705             *
2706             * @param organizationService the organization remote service
2707             */
2708            public void setOrganizationService(
2709                    com.liferay.portal.service.OrganizationService organizationService) {
2710                    this.organizationService = organizationService;
2711            }
2712    
2713            /**
2714             * Returns the organization persistence.
2715             *
2716             * @return the organization persistence
2717             */
2718            public OrganizationPersistence getOrganizationPersistence() {
2719                    return organizationPersistence;
2720            }
2721    
2722            /**
2723             * Sets the organization persistence.
2724             *
2725             * @param organizationPersistence the organization persistence
2726             */
2727            public void setOrganizationPersistence(
2728                    OrganizationPersistence organizationPersistence) {
2729                    this.organizationPersistence = organizationPersistence;
2730            }
2731    
2732            /**
2733             * Returns the organization finder.
2734             *
2735             * @return the organization finder
2736             */
2737            public OrganizationFinder getOrganizationFinder() {
2738                    return organizationFinder;
2739            }
2740    
2741            /**
2742             * Sets the organization finder.
2743             *
2744             * @param organizationFinder the organization finder
2745             */
2746            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
2747                    this.organizationFinder = organizationFinder;
2748            }
2749    
2750            /**
2751             * Returns the portlet local service.
2752             *
2753             * @return the portlet local service
2754             */
2755            public com.liferay.portal.service.PortletLocalService getPortletLocalService() {
2756                    return portletLocalService;
2757            }
2758    
2759            /**
2760             * Sets the portlet local service.
2761             *
2762             * @param portletLocalService the portlet local service
2763             */
2764            public void setPortletLocalService(
2765                    com.liferay.portal.service.PortletLocalService portletLocalService) {
2766                    this.portletLocalService = portletLocalService;
2767            }
2768    
2769            /**
2770             * Returns the portlet remote service.
2771             *
2772             * @return the portlet remote service
2773             */
2774            public com.liferay.portal.service.PortletService getPortletService() {
2775                    return portletService;
2776            }
2777    
2778            /**
2779             * Sets the portlet remote service.
2780             *
2781             * @param portletService the portlet remote service
2782             */
2783            public void setPortletService(
2784                    com.liferay.portal.service.PortletService portletService) {
2785                    this.portletService = portletService;
2786            }
2787    
2788            /**
2789             * Returns the portlet persistence.
2790             *
2791             * @return the portlet persistence
2792             */
2793            public PortletPersistence getPortletPersistence() {
2794                    return portletPersistence;
2795            }
2796    
2797            /**
2798             * Sets the portlet persistence.
2799             *
2800             * @param portletPersistence the portlet persistence
2801             */
2802            public void setPortletPersistence(PortletPersistence portletPersistence) {
2803                    this.portletPersistence = portletPersistence;
2804            }
2805    
2806            /**
2807             * Returns the portlet preferences local service.
2808             *
2809             * @return the portlet preferences local service
2810             */
2811            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
2812                    return portletPreferencesLocalService;
2813            }
2814    
2815            /**
2816             * Sets the portlet preferences local service.
2817             *
2818             * @param portletPreferencesLocalService the portlet preferences local service
2819             */
2820            public void setPortletPreferencesLocalService(
2821                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
2822                    this.portletPreferencesLocalService = portletPreferencesLocalService;
2823            }
2824    
2825            /**
2826             * Returns the portlet preferences remote service.
2827             *
2828             * @return the portlet preferences remote service
2829             */
2830            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
2831                    return portletPreferencesService;
2832            }
2833    
2834            /**
2835             * Sets the portlet preferences remote service.
2836             *
2837             * @param portletPreferencesService the portlet preferences remote service
2838             */
2839            public void setPortletPreferencesService(
2840                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
2841                    this.portletPreferencesService = portletPreferencesService;
2842            }
2843    
2844            /**
2845             * Returns the portlet preferences persistence.
2846             *
2847             * @return the portlet preferences persistence
2848             */
2849            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
2850                    return portletPreferencesPersistence;
2851            }
2852    
2853            /**
2854             * Sets the portlet preferences persistence.
2855             *
2856             * @param portletPreferencesPersistence the portlet preferences persistence
2857             */
2858            public void setPortletPreferencesPersistence(
2859                    PortletPreferencesPersistence portletPreferencesPersistence) {
2860                    this.portletPreferencesPersistence = portletPreferencesPersistence;
2861            }
2862    
2863            /**
2864             * Returns the portlet preferences finder.
2865             *
2866             * @return the portlet preferences finder
2867             */
2868            public PortletPreferencesFinder getPortletPreferencesFinder() {
2869                    return portletPreferencesFinder;
2870            }
2871    
2872            /**
2873             * Sets the portlet preferences finder.
2874             *
2875             * @param portletPreferencesFinder the portlet preferences finder
2876             */
2877            public void setPortletPreferencesFinder(
2878                    PortletPreferencesFinder portletPreferencesFinder) {
2879                    this.portletPreferencesFinder = portletPreferencesFinder;
2880            }
2881    
2882            /**
2883             * Returns the resource local service.
2884             *
2885             * @return the resource local service
2886             */
2887            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
2888                    return resourceLocalService;
2889            }
2890    
2891            /**
2892             * Sets the resource local service.
2893             *
2894             * @param resourceLocalService the resource local service
2895             */
2896            public void setResourceLocalService(
2897                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
2898                    this.resourceLocalService = resourceLocalService;
2899            }
2900    
2901            /**
2902             * Returns the resource action local service.
2903             *
2904             * @return the resource action local service
2905             */
2906            public com.liferay.portal.service.ResourceActionLocalService getResourceActionLocalService() {
2907                    return resourceActionLocalService;
2908            }
2909    
2910            /**
2911             * Sets the resource action local service.
2912             *
2913             * @param resourceActionLocalService the resource action local service
2914             */
2915            public void setResourceActionLocalService(
2916                    com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService) {
2917                    this.resourceActionLocalService = resourceActionLocalService;
2918            }
2919    
2920            /**
2921             * Returns the resource action persistence.
2922             *
2923             * @return the resource action persistence
2924             */
2925            public ResourceActionPersistence getResourceActionPersistence() {
2926                    return resourceActionPersistence;
2927            }
2928    
2929            /**
2930             * Sets the resource action persistence.
2931             *
2932             * @param resourceActionPersistence the resource action persistence
2933             */
2934            public void setResourceActionPersistence(
2935                    ResourceActionPersistence resourceActionPersistence) {
2936                    this.resourceActionPersistence = resourceActionPersistence;
2937            }
2938    
2939            /**
2940             * Returns the resource block local service.
2941             *
2942             * @return the resource block local service
2943             */
2944            public com.liferay.portal.service.ResourceBlockLocalService getResourceBlockLocalService() {
2945                    return resourceBlockLocalService;
2946            }
2947    
2948            /**
2949             * Sets the resource block local service.
2950             *
2951             * @param resourceBlockLocalService the resource block local service
2952             */
2953            public void setResourceBlockLocalService(
2954                    com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService) {
2955                    this.resourceBlockLocalService = resourceBlockLocalService;
2956            }
2957    
2958            /**
2959             * Returns the resource block remote service.
2960             *
2961             * @return the resource block remote service
2962             */
2963            public com.liferay.portal.service.ResourceBlockService getResourceBlockService() {
2964                    return resourceBlockService;
2965            }
2966    
2967            /**
2968             * Sets the resource block remote service.
2969             *
2970             * @param resourceBlockService the resource block remote service
2971             */
2972            public void setResourceBlockService(
2973                    com.liferay.portal.service.ResourceBlockService resourceBlockService) {
2974                    this.resourceBlockService = resourceBlockService;
2975            }
2976    
2977            /**
2978             * Returns the resource block persistence.
2979             *
2980             * @return the resource block persistence
2981             */
2982            public ResourceBlockPersistence getResourceBlockPersistence() {
2983                    return resourceBlockPersistence;
2984            }
2985    
2986            /**
2987             * Sets the resource block persistence.
2988             *
2989             * @param resourceBlockPersistence the resource block persistence
2990             */
2991            public void setResourceBlockPersistence(
2992                    ResourceBlockPersistence resourceBlockPersistence) {
2993                    this.resourceBlockPersistence = resourceBlockPersistence;
2994            }
2995    
2996            /**
2997             * Returns the resource block finder.
2998             *
2999             * @return the resource block finder
3000             */
3001            public ResourceBlockFinder getResourceBlockFinder() {
3002                    return resourceBlockFinder;
3003            }
3004    
3005            /**
3006             * Sets the resource block finder.
3007             *
3008             * @param resourceBlockFinder the resource block finder
3009             */
3010            public void setResourceBlockFinder(ResourceBlockFinder resourceBlockFinder) {
3011                    this.resourceBlockFinder = resourceBlockFinder;
3012            }
3013    
3014            /**
3015             * Returns the resource permission local service.
3016             *
3017             * @return the resource permission local service
3018             */
3019            public com.liferay.portal.service.ResourcePermissionLocalService getResourcePermissionLocalService() {
3020                    return resourcePermissionLocalService;
3021            }
3022    
3023            /**
3024             * Sets the resource permission local service.
3025             *
3026             * @param resourcePermissionLocalService the resource permission local service
3027             */
3028            public void setResourcePermissionLocalService(
3029                    com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService) {
3030                    this.resourcePermissionLocalService = resourcePermissionLocalService;
3031            }
3032    
3033            /**
3034             * Returns the resource permission remote service.
3035             *
3036             * @return the resource permission remote service
3037             */
3038            public com.liferay.portal.service.ResourcePermissionService getResourcePermissionService() {
3039                    return resourcePermissionService;
3040            }
3041    
3042            /**
3043             * Sets the resource permission remote service.
3044             *
3045             * @param resourcePermissionService the resource permission remote service
3046             */
3047            public void setResourcePermissionService(
3048                    com.liferay.portal.service.ResourcePermissionService resourcePermissionService) {
3049                    this.resourcePermissionService = resourcePermissionService;
3050            }
3051    
3052            /**
3053             * Returns the resource permission persistence.
3054             *
3055             * @return the resource permission persistence
3056             */
3057            public ResourcePermissionPersistence getResourcePermissionPersistence() {
3058                    return resourcePermissionPersistence;
3059            }
3060    
3061            /**
3062             * Sets the resource permission persistence.
3063             *
3064             * @param resourcePermissionPersistence the resource permission persistence
3065             */
3066            public void setResourcePermissionPersistence(
3067                    ResourcePermissionPersistence resourcePermissionPersistence) {
3068                    this.resourcePermissionPersistence = resourcePermissionPersistence;
3069            }
3070    
3071            /**
3072             * Returns the resource permission finder.
3073             *
3074             * @return the resource permission finder
3075             */
3076            public ResourcePermissionFinder getResourcePermissionFinder() {
3077                    return resourcePermissionFinder;
3078            }
3079    
3080            /**
3081             * Sets the resource permission finder.
3082             *
3083             * @param resourcePermissionFinder the resource permission finder
3084             */
3085            public void setResourcePermissionFinder(
3086                    ResourcePermissionFinder resourcePermissionFinder) {
3087                    this.resourcePermissionFinder = resourcePermissionFinder;
3088            }
3089    
3090            /**
3091             * Returns the resource type permission local service.
3092             *
3093             * @return the resource type permission local service
3094             */
3095            public com.liferay.portal.service.ResourceTypePermissionLocalService getResourceTypePermissionLocalService() {
3096                    return resourceTypePermissionLocalService;
3097            }
3098    
3099            /**
3100             * Sets the resource type permission local service.
3101             *
3102             * @param resourceTypePermissionLocalService the resource type permission local service
3103             */
3104            public void setResourceTypePermissionLocalService(
3105                    com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService) {
3106                    this.resourceTypePermissionLocalService = resourceTypePermissionLocalService;
3107            }
3108    
3109            /**
3110             * Returns the resource type permission persistence.
3111             *
3112             * @return the resource type permission persistence
3113             */
3114            public ResourceTypePermissionPersistence getResourceTypePermissionPersistence() {
3115                    return resourceTypePermissionPersistence;
3116            }
3117    
3118            /**
3119             * Sets the resource type permission persistence.
3120             *
3121             * @param resourceTypePermissionPersistence the resource type permission persistence
3122             */
3123            public void setResourceTypePermissionPersistence(
3124                    ResourceTypePermissionPersistence resourceTypePermissionPersistence) {
3125                    this.resourceTypePermissionPersistence = resourceTypePermissionPersistence;
3126            }
3127    
3128            /**
3129             * Returns the resource type permission finder.
3130             *
3131             * @return the resource type permission finder
3132             */
3133            public ResourceTypePermissionFinder getResourceTypePermissionFinder() {
3134                    return resourceTypePermissionFinder;
3135            }
3136    
3137            /**
3138             * Sets the resource type permission finder.
3139             *
3140             * @param resourceTypePermissionFinder the resource type permission finder
3141             */
3142            public void setResourceTypePermissionFinder(
3143                    ResourceTypePermissionFinder resourceTypePermissionFinder) {
3144                    this.resourceTypePermissionFinder = resourceTypePermissionFinder;
3145            }
3146    
3147            /**
3148             * Returns the role local service.
3149             *
3150             * @return the role local service
3151             */
3152            public com.liferay.portal.service.RoleLocalService getRoleLocalService() {
3153                    return roleLocalService;
3154            }
3155    
3156            /**
3157             * Sets the role local service.
3158             *
3159             * @param roleLocalService the role local service
3160             */
3161            public void setRoleLocalService(
3162                    com.liferay.portal.service.RoleLocalService roleLocalService) {
3163                    this.roleLocalService = roleLocalService;
3164            }
3165    
3166            /**
3167             * Returns the role remote service.
3168             *
3169             * @return the role remote service
3170             */
3171            public com.liferay.portal.service.RoleService getRoleService() {
3172                    return roleService;
3173            }
3174    
3175            /**
3176             * Sets the role remote service.
3177             *
3178             * @param roleService the role remote service
3179             */
3180            public void setRoleService(
3181                    com.liferay.portal.service.RoleService roleService) {
3182                    this.roleService = roleService;
3183            }
3184    
3185            /**
3186             * Returns the role persistence.
3187             *
3188             * @return the role persistence
3189             */
3190            public RolePersistence getRolePersistence() {
3191                    return rolePersistence;
3192            }
3193    
3194            /**
3195             * Sets the role persistence.
3196             *
3197             * @param rolePersistence the role persistence
3198             */
3199            public void setRolePersistence(RolePersistence rolePersistence) {
3200                    this.rolePersistence = rolePersistence;
3201            }
3202    
3203            /**
3204             * Returns the role finder.
3205             *
3206             * @return the role finder
3207             */
3208            public RoleFinder getRoleFinder() {
3209                    return roleFinder;
3210            }
3211    
3212            /**
3213             * Sets the role finder.
3214             *
3215             * @param roleFinder the role finder
3216             */
3217            public void setRoleFinder(RoleFinder roleFinder) {
3218                    this.roleFinder = roleFinder;
3219            }
3220    
3221            /**
3222             * Returns the subscription local service.
3223             *
3224             * @return the subscription local service
3225             */
3226            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
3227                    return subscriptionLocalService;
3228            }
3229    
3230            /**
3231             * Sets the subscription local service.
3232             *
3233             * @param subscriptionLocalService the subscription local service
3234             */
3235            public void setSubscriptionLocalService(
3236                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
3237                    this.subscriptionLocalService = subscriptionLocalService;
3238            }
3239    
3240            /**
3241             * Returns the subscription persistence.
3242             *
3243             * @return the subscription persistence
3244             */
3245            public SubscriptionPersistence getSubscriptionPersistence() {
3246                    return subscriptionPersistence;
3247            }
3248    
3249            /**
3250             * Sets the subscription persistence.
3251             *
3252             * @param subscriptionPersistence the subscription persistence
3253             */
3254            public void setSubscriptionPersistence(
3255                    SubscriptionPersistence subscriptionPersistence) {
3256                    this.subscriptionPersistence = subscriptionPersistence;
3257            }
3258    
3259            /**
3260             * Returns the team local service.
3261             *
3262             * @return the team local service
3263             */
3264            public com.liferay.portal.service.TeamLocalService getTeamLocalService() {
3265                    return teamLocalService;
3266            }
3267    
3268            /**
3269             * Sets the team local service.
3270             *
3271             * @param teamLocalService the team local service
3272             */
3273            public void setTeamLocalService(
3274                    com.liferay.portal.service.TeamLocalService teamLocalService) {
3275                    this.teamLocalService = teamLocalService;
3276            }
3277    
3278            /**
3279             * Returns the team remote service.
3280             *
3281             * @return the team remote service
3282             */
3283            public com.liferay.portal.service.TeamService getTeamService() {
3284                    return teamService;
3285            }
3286    
3287            /**
3288             * Sets the team remote service.
3289             *
3290             * @param teamService the team remote service
3291             */
3292            public void setTeamService(
3293                    com.liferay.portal.service.TeamService teamService) {
3294                    this.teamService = teamService;
3295            }
3296    
3297            /**
3298             * Returns the team persistence.
3299             *
3300             * @return the team persistence
3301             */
3302            public TeamPersistence getTeamPersistence() {
3303                    return teamPersistence;
3304            }
3305    
3306            /**
3307             * Sets the team persistence.
3308             *
3309             * @param teamPersistence the team persistence
3310             */
3311            public void setTeamPersistence(TeamPersistence teamPersistence) {
3312                    this.teamPersistence = teamPersistence;
3313            }
3314    
3315            /**
3316             * Returns the team finder.
3317             *
3318             * @return the team finder
3319             */
3320            public TeamFinder getTeamFinder() {
3321                    return teamFinder;
3322            }
3323    
3324            /**
3325             * Sets the team finder.
3326             *
3327             * @param teamFinder the team finder
3328             */
3329            public void setTeamFinder(TeamFinder teamFinder) {
3330                    this.teamFinder = teamFinder;
3331            }
3332    
3333            /**
3334             * Returns the user local service.
3335             *
3336             * @return the user local service
3337             */
3338            public com.liferay.portal.service.UserLocalService getUserLocalService() {
3339                    return userLocalService;
3340            }
3341    
3342            /**
3343             * Sets the user local service.
3344             *
3345             * @param userLocalService the user local service
3346             */
3347            public void setUserLocalService(
3348                    com.liferay.portal.service.UserLocalService userLocalService) {
3349                    this.userLocalService = userLocalService;
3350            }
3351    
3352            /**
3353             * Returns the user remote service.
3354             *
3355             * @return the user remote service
3356             */
3357            public com.liferay.portal.service.UserService getUserService() {
3358                    return userService;
3359            }
3360    
3361            /**
3362             * Sets the user remote service.
3363             *
3364             * @param userService the user remote service
3365             */
3366            public void setUserService(
3367                    com.liferay.portal.service.UserService userService) {
3368                    this.userService = userService;
3369            }
3370    
3371            /**
3372             * Returns the user persistence.
3373             *
3374             * @return the user persistence
3375             */
3376            public UserPersistence getUserPersistence() {
3377                    return userPersistence;
3378            }
3379    
3380            /**
3381             * Sets the user persistence.
3382             *
3383             * @param userPersistence the user persistence
3384             */
3385            public void setUserPersistence(UserPersistence userPersistence) {
3386                    this.userPersistence = userPersistence;
3387            }
3388    
3389            /**
3390             * Returns the user finder.
3391             *
3392             * @return the user finder
3393             */
3394            public UserFinder getUserFinder() {
3395                    return userFinder;
3396            }
3397    
3398            /**
3399             * Sets the user finder.
3400             *
3401             * @param userFinder the user finder
3402             */
3403            public void setUserFinder(UserFinder userFinder) {
3404                    this.userFinder = userFinder;
3405            }
3406    
3407            /**
3408             * Returns the user group local service.
3409             *
3410             * @return the user group local service
3411             */
3412            public com.liferay.portal.service.UserGroupLocalService getUserGroupLocalService() {
3413                    return userGroupLocalService;
3414            }
3415    
3416            /**
3417             * Sets the user group local service.
3418             *
3419             * @param userGroupLocalService the user group local service
3420             */
3421            public void setUserGroupLocalService(
3422                    com.liferay.portal.service.UserGroupLocalService userGroupLocalService) {
3423                    this.userGroupLocalService = userGroupLocalService;
3424            }
3425    
3426            /**
3427             * Returns the user group remote service.
3428             *
3429             * @return the user group remote service
3430             */
3431            public com.liferay.portal.service.UserGroupService getUserGroupService() {
3432                    return userGroupService;
3433            }
3434    
3435            /**
3436             * Sets the user group remote service.
3437             *
3438             * @param userGroupService the user group remote service
3439             */
3440            public void setUserGroupService(
3441                    com.liferay.portal.service.UserGroupService userGroupService) {
3442                    this.userGroupService = userGroupService;
3443            }
3444    
3445            /**
3446             * Returns the user group persistence.
3447             *
3448             * @return the user group persistence
3449             */
3450            public UserGroupPersistence getUserGroupPersistence() {
3451                    return userGroupPersistence;
3452            }
3453    
3454            /**
3455             * Sets the user group persistence.
3456             *
3457             * @param userGroupPersistence the user group persistence
3458             */
3459            public void setUserGroupPersistence(
3460                    UserGroupPersistence userGroupPersistence) {
3461                    this.userGroupPersistence = userGroupPersistence;
3462            }
3463    
3464            /**
3465             * Returns the user group finder.
3466             *
3467             * @return the user group finder
3468             */
3469            public UserGroupFinder getUserGroupFinder() {
3470                    return userGroupFinder;
3471            }
3472    
3473            /**
3474             * Sets the user group finder.
3475             *
3476             * @param userGroupFinder the user group finder
3477             */
3478            public void setUserGroupFinder(UserGroupFinder userGroupFinder) {
3479                    this.userGroupFinder = userGroupFinder;
3480            }
3481    
3482            /**
3483             * Returns the user group group role local service.
3484             *
3485             * @return the user group group role local service
3486             */
3487            public com.liferay.portal.service.UserGroupGroupRoleLocalService getUserGroupGroupRoleLocalService() {
3488                    return userGroupGroupRoleLocalService;
3489            }
3490    
3491            /**
3492             * Sets the user group group role local service.
3493             *
3494             * @param userGroupGroupRoleLocalService the user group group role local service
3495             */
3496            public void setUserGroupGroupRoleLocalService(
3497                    com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService) {
3498                    this.userGroupGroupRoleLocalService = userGroupGroupRoleLocalService;
3499            }
3500    
3501            /**
3502             * Returns the user group group role remote service.
3503             *
3504             * @return the user group group role remote service
3505             */
3506            public com.liferay.portal.service.UserGroupGroupRoleService getUserGroupGroupRoleService() {
3507                    return userGroupGroupRoleService;
3508            }
3509    
3510            /**
3511             * Sets the user group group role remote service.
3512             *
3513             * @param userGroupGroupRoleService the user group group role remote service
3514             */
3515            public void setUserGroupGroupRoleService(
3516                    com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService) {
3517                    this.userGroupGroupRoleService = userGroupGroupRoleService;
3518            }
3519    
3520            /**
3521             * Returns the user group group role persistence.
3522             *
3523             * @return the user group group role persistence
3524             */
3525            public UserGroupGroupRolePersistence getUserGroupGroupRolePersistence() {
3526                    return userGroupGroupRolePersistence;
3527            }
3528    
3529            /**
3530             * Sets the user group group role persistence.
3531             *
3532             * @param userGroupGroupRolePersistence the user group group role persistence
3533             */
3534            public void setUserGroupGroupRolePersistence(
3535                    UserGroupGroupRolePersistence userGroupGroupRolePersistence) {
3536                    this.userGroupGroupRolePersistence = userGroupGroupRolePersistence;
3537            }
3538    
3539            /**
3540             * Returns the user group group role finder.
3541             *
3542             * @return the user group group role finder
3543             */
3544            public UserGroupGroupRoleFinder getUserGroupGroupRoleFinder() {
3545                    return userGroupGroupRoleFinder;
3546            }
3547    
3548            /**
3549             * Sets the user group group role finder.
3550             *
3551             * @param userGroupGroupRoleFinder the user group group role finder
3552             */
3553            public void setUserGroupGroupRoleFinder(
3554                    UserGroupGroupRoleFinder userGroupGroupRoleFinder) {
3555                    this.userGroupGroupRoleFinder = userGroupGroupRoleFinder;
3556            }
3557    
3558            /**
3559             * Returns the user group role local service.
3560             *
3561             * @return the user group role local service
3562             */
3563            public com.liferay.portal.service.UserGroupRoleLocalService getUserGroupRoleLocalService() {
3564                    return userGroupRoleLocalService;
3565            }
3566    
3567            /**
3568             * Sets the user group role local service.
3569             *
3570             * @param userGroupRoleLocalService the user group role local service
3571             */
3572            public void setUserGroupRoleLocalService(
3573                    com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService) {
3574                    this.userGroupRoleLocalService = userGroupRoleLocalService;
3575            }
3576    
3577            /**
3578             * Returns the user group role remote service.
3579             *
3580             * @return the user group role remote service
3581             */
3582            public com.liferay.portal.service.UserGroupRoleService getUserGroupRoleService() {
3583                    return userGroupRoleService;
3584            }
3585    
3586            /**
3587             * Sets the user group role remote service.
3588             *
3589             * @param userGroupRoleService the user group role remote service
3590             */
3591            public void setUserGroupRoleService(
3592                    com.liferay.portal.service.UserGroupRoleService userGroupRoleService) {
3593                    this.userGroupRoleService = userGroupRoleService;
3594            }
3595    
3596            /**
3597             * Returns the user group role persistence.
3598             *
3599             * @return the user group role persistence
3600             */
3601            public UserGroupRolePersistence getUserGroupRolePersistence() {
3602                    return userGroupRolePersistence;
3603            }
3604    
3605            /**
3606             * Sets the user group role persistence.
3607             *
3608             * @param userGroupRolePersistence the user group role persistence
3609             */
3610            public void setUserGroupRolePersistence(
3611                    UserGroupRolePersistence userGroupRolePersistence) {
3612                    this.userGroupRolePersistence = userGroupRolePersistence;
3613            }
3614    
3615            /**
3616             * Returns the user group role finder.
3617             *
3618             * @return the user group role finder
3619             */
3620            public UserGroupRoleFinder getUserGroupRoleFinder() {
3621                    return userGroupRoleFinder;
3622            }
3623    
3624            /**
3625             * Sets the user group role finder.
3626             *
3627             * @param userGroupRoleFinder the user group role finder
3628             */
3629            public void setUserGroupRoleFinder(UserGroupRoleFinder userGroupRoleFinder) {
3630                    this.userGroupRoleFinder = userGroupRoleFinder;
3631            }
3632    
3633            /**
3634             * Returns the workflow definition link local service.
3635             *
3636             * @return the workflow definition link local service
3637             */
3638            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
3639                    return workflowDefinitionLinkLocalService;
3640            }
3641    
3642            /**
3643             * Sets the workflow definition link local service.
3644             *
3645             * @param workflowDefinitionLinkLocalService the workflow definition link local service
3646             */
3647            public void setWorkflowDefinitionLinkLocalService(
3648                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
3649                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
3650            }
3651    
3652            /**
3653             * Returns the workflow definition link persistence.
3654             *
3655             * @return the workflow definition link persistence
3656             */
3657            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
3658                    return workflowDefinitionLinkPersistence;
3659            }
3660    
3661            /**
3662             * Sets the workflow definition link persistence.
3663             *
3664             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
3665             */
3666            public void setWorkflowDefinitionLinkPersistence(
3667                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
3668                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
3669            }
3670    
3671            public void afterPropertiesSet() {
3672                    persistedModelLocalServiceRegistry.register("com.liferay.portal.model.Group",
3673                            groupLocalService);
3674            }
3675    
3676            public void destroy() {
3677                    persistedModelLocalServiceRegistry.unregister(
3678                            "com.liferay.portal.model.Group");
3679            }
3680    
3681            /**
3682             * Returns the Spring bean ID for this bean.
3683             *
3684             * @return the Spring bean ID for this bean
3685             */
3686            @Override
3687            public String getBeanIdentifier() {
3688                    return _beanIdentifier;
3689            }
3690    
3691            /**
3692             * Sets the Spring bean ID for this bean.
3693             *
3694             * @param beanIdentifier the Spring bean ID for this bean
3695             */
3696            @Override
3697            public void setBeanIdentifier(String beanIdentifier) {
3698                    _beanIdentifier = beanIdentifier;
3699            }
3700    
3701            protected Class<?> getModelClass() {
3702                    return Group.class;
3703            }
3704    
3705            protected String getModelClassName() {
3706                    return Group.class.getName();
3707            }
3708    
3709            /**
3710             * Performs a SQL query.
3711             *
3712             * @param sql the sql query
3713             */
3714            protected void runSQL(String sql) {
3715                    try {
3716                            DataSource dataSource = groupPersistence.getDataSource();
3717    
3718                            DB db = DBFactoryUtil.getDB();
3719    
3720                            sql = db.buildSQL(sql);
3721                            sql = PortalUtil.transformSQL(sql);
3722    
3723                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
3724                                            sql, new int[0]);
3725    
3726                            sqlUpdate.update();
3727                    }
3728                    catch (Exception e) {
3729                            throw new SystemException(e);
3730                    }
3731            }
3732    
3733            @BeanReference(type = GroupLocalService.class)
3734            protected GroupLocalService groupLocalService;
3735            @BeanReference(type = com.liferay.portal.service.GroupService.class)
3736            protected com.liferay.portal.service.GroupService groupService;
3737            @BeanReference(type = GroupPersistence.class)
3738            protected GroupPersistence groupPersistence;
3739            @BeanReference(type = GroupFinder.class)
3740            protected GroupFinder groupFinder;
3741            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
3742            protected com.liferay.counter.service.CounterLocalService counterLocalService;
3743            @BeanReference(type = com.liferay.portal.service.AccountLocalService.class)
3744            protected com.liferay.portal.service.AccountLocalService accountLocalService;
3745            @BeanReference(type = com.liferay.portal.service.AccountService.class)
3746            protected com.liferay.portal.service.AccountService accountService;
3747            @BeanReference(type = AccountPersistence.class)
3748            protected AccountPersistence accountPersistence;
3749            @BeanReference(type = com.liferay.portal.service.BackgroundTaskLocalService.class)
3750            protected com.liferay.portal.service.BackgroundTaskLocalService backgroundTaskLocalService;
3751            @BeanReference(type = com.liferay.portal.service.BackgroundTaskService.class)
3752            protected com.liferay.portal.service.BackgroundTaskService backgroundTaskService;
3753            @BeanReference(type = BackgroundTaskPersistence.class)
3754            protected BackgroundTaskPersistence backgroundTaskPersistence;
3755            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
3756            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
3757            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
3758            protected com.liferay.portal.service.ClassNameService classNameService;
3759            @BeanReference(type = ClassNamePersistence.class)
3760            protected ClassNamePersistence classNamePersistence;
3761            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
3762            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
3763            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
3764            protected com.liferay.portal.service.CompanyService companyService;
3765            @BeanReference(type = CompanyPersistence.class)
3766            protected CompanyPersistence companyPersistence;
3767            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
3768            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
3769            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
3770            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
3771            @BeanReference(type = AssetCategoryPersistence.class)
3772            protected AssetCategoryPersistence assetCategoryPersistence;
3773            @BeanReference(type = AssetCategoryFinder.class)
3774            protected AssetCategoryFinder assetCategoryFinder;
3775            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
3776            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
3777            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
3778            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
3779            @BeanReference(type = AssetEntryPersistence.class)
3780            protected AssetEntryPersistence assetEntryPersistence;
3781            @BeanReference(type = AssetEntryFinder.class)
3782            protected AssetEntryFinder assetEntryFinder;
3783            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
3784            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
3785            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
3786            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
3787            @BeanReference(type = AssetTagPersistence.class)
3788            protected AssetTagPersistence assetTagPersistence;
3789            @BeanReference(type = AssetTagFinder.class)
3790            protected AssetTagFinder assetTagFinder;
3791            @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyLocalService.class)
3792            protected com.liferay.portlet.asset.service.AssetVocabularyLocalService assetVocabularyLocalService;
3793            @BeanReference(type = com.liferay.portlet.asset.service.AssetVocabularyService.class)
3794            protected com.liferay.portlet.asset.service.AssetVocabularyService assetVocabularyService;
3795            @BeanReference(type = AssetVocabularyPersistence.class)
3796            protected AssetVocabularyPersistence assetVocabularyPersistence;
3797            @BeanReference(type = AssetVocabularyFinder.class)
3798            protected AssetVocabularyFinder assetVocabularyFinder;
3799            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
3800            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
3801            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
3802            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
3803            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
3804            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
3805            @BeanReference(type = ExpandoRowPersistence.class)
3806            protected ExpandoRowPersistence expandoRowPersistence;
3807            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportLocalService.class)
3808            protected com.liferay.portlet.exportimport.service.ExportImportLocalService exportImportLocalService;
3809            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportService.class)
3810            protected com.liferay.portlet.exportimport.service.ExportImportService exportImportService;
3811            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService.class)
3812            protected com.liferay.portlet.exportimport.service.ExportImportConfigurationLocalService exportImportConfigurationLocalService;
3813            @BeanReference(type = com.liferay.portlet.exportimport.service.ExportImportConfigurationService.class)
3814            protected com.liferay.portlet.exportimport.service.ExportImportConfigurationService exportImportConfigurationService;
3815            @BeanReference(type = ExportImportConfigurationPersistence.class)
3816            protected ExportImportConfigurationPersistence exportImportConfigurationPersistence;
3817            @BeanReference(type = com.liferay.portlet.exportimport.service.StagingLocalService.class)
3818            protected com.liferay.portlet.exportimport.service.StagingLocalService stagingLocalService;
3819            @BeanReference(type = com.liferay.portlet.exportimport.service.StagingService.class)
3820            protected com.liferay.portlet.exportimport.service.StagingService stagingService;
3821            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCartLocalService.class)
3822            protected com.liferay.portlet.shopping.service.ShoppingCartLocalService shoppingCartLocalService;
3823            @BeanReference(type = ShoppingCartPersistence.class)
3824            protected ShoppingCartPersistence shoppingCartPersistence;
3825            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryLocalService.class)
3826            protected com.liferay.portlet.shopping.service.ShoppingCategoryLocalService shoppingCategoryLocalService;
3827            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCategoryService.class)
3828            protected com.liferay.portlet.shopping.service.ShoppingCategoryService shoppingCategoryService;
3829            @BeanReference(type = ShoppingCategoryPersistence.class)
3830            protected ShoppingCategoryPersistence shoppingCategoryPersistence;
3831            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponLocalService.class)
3832            protected com.liferay.portlet.shopping.service.ShoppingCouponLocalService shoppingCouponLocalService;
3833            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingCouponService.class)
3834            protected com.liferay.portlet.shopping.service.ShoppingCouponService shoppingCouponService;
3835            @BeanReference(type = ShoppingCouponPersistence.class)
3836            protected ShoppingCouponPersistence shoppingCouponPersistence;
3837            @BeanReference(type = ShoppingCouponFinder.class)
3838            protected ShoppingCouponFinder shoppingCouponFinder;
3839            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderLocalService.class)
3840            protected com.liferay.portlet.shopping.service.ShoppingOrderLocalService shoppingOrderLocalService;
3841            @BeanReference(type = com.liferay.portlet.shopping.service.ShoppingOrderService.class)
3842            protected com.liferay.portlet.shopping.service.ShoppingOrderService shoppingOrderService;
3843            @BeanReference(type = ShoppingOrderPersistence.class)
3844            protected ShoppingOrderPersistence shoppingOrderPersistence;
3845            @BeanReference(type = ShoppingOrderFinder.class)
3846            protected ShoppingOrderFinder shoppingOrderFinder;
3847            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
3848            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
3849            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityService.class)
3850            protected com.liferay.portlet.social.service.SocialActivityService socialActivityService;
3851            @BeanReference(type = SocialActivityPersistence.class)
3852            protected SocialActivityPersistence socialActivityPersistence;
3853            @BeanReference(type = SocialActivityFinder.class)
3854            protected SocialActivityFinder socialActivityFinder;
3855            @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingLocalService.class)
3856            protected com.liferay.portlet.social.service.SocialActivitySettingLocalService socialActivitySettingLocalService;
3857            @BeanReference(type = com.liferay.portlet.social.service.SocialActivitySettingService.class)
3858            protected com.liferay.portlet.social.service.SocialActivitySettingService socialActivitySettingService;
3859            @BeanReference(type = SocialActivitySettingPersistence.class)
3860            protected SocialActivitySettingPersistence socialActivitySettingPersistence;
3861            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
3862            protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
3863            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
3864            protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
3865            @BeanReference(type = SocialRequestPersistence.class)
3866            protected SocialRequestPersistence socialRequestPersistence;
3867            @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService.class)
3868            protected com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService scFrameworkVersionLocalService;
3869            @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService.class)
3870            protected com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionService scFrameworkVersionService;
3871            @BeanReference(type = SCFrameworkVersionPersistence.class)
3872            protected SCFrameworkVersionPersistence scFrameworkVersionPersistence;
3873            @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService.class)
3874            protected com.liferay.portlet.softwarecatalog.service.SCProductEntryLocalService scProductEntryLocalService;
3875            @BeanReference(type = com.liferay.portlet.softwarecatalog.service.SCProductEntryService.class)
3876            protected com.liferay.portlet.softwarecatalog.service.SCProductEntryService scProductEntryService;
3877            @BeanReference(type = SCProductEntryPersistence.class)
3878            protected SCProductEntryPersistence scProductEntryPersistence;
3879            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
3880            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
3881            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
3882            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
3883            @BeanReference(type = TrashEntryPersistence.class)
3884            protected TrashEntryPersistence trashEntryPersistence;
3885            @BeanReference(type = com.liferay.portal.service.LayoutLocalService.class)
3886            protected com.liferay.portal.service.LayoutLocalService layoutLocalService;
3887            @BeanReference(type = com.liferay.portal.service.LayoutService.class)
3888            protected com.liferay.portal.service.LayoutService layoutService;
3889            @BeanReference(type = LayoutPersistence.class)
3890            protected LayoutPersistence layoutPersistence;
3891            @BeanReference(type = LayoutFinder.class)
3892            protected LayoutFinder layoutFinder;
3893            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeLocalService.class)
3894            protected com.liferay.portal.service.LayoutPrototypeLocalService layoutPrototypeLocalService;
3895            @BeanReference(type = com.liferay.portal.service.LayoutPrototypeService.class)
3896            protected com.liferay.portal.service.LayoutPrototypeService layoutPrototypeService;
3897            @BeanReference(type = LayoutPrototypePersistence.class)
3898            protected LayoutPrototypePersistence layoutPrototypePersistence;
3899            @BeanReference(type = com.liferay.portal.service.LayoutSetLocalService.class)
3900            protected com.liferay.portal.service.LayoutSetLocalService layoutSetLocalService;
3901            @BeanReference(type = com.liferay.portal.service.LayoutSetService.class)
3902            protected com.liferay.portal.service.LayoutSetService layoutSetService;
3903            @BeanReference(type = LayoutSetPersistence.class)
3904            protected LayoutSetPersistence layoutSetPersistence;
3905            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchLocalService.class)
3906            protected com.liferay.portal.service.LayoutSetBranchLocalService layoutSetBranchLocalService;
3907            @BeanReference(type = com.liferay.portal.service.LayoutSetBranchService.class)
3908            protected com.liferay.portal.service.LayoutSetBranchService layoutSetBranchService;
3909            @BeanReference(type = LayoutSetBranchPersistence.class)
3910            protected LayoutSetBranchPersistence layoutSetBranchPersistence;
3911            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeLocalService.class)
3912            protected com.liferay.portal.service.LayoutSetPrototypeLocalService layoutSetPrototypeLocalService;
3913            @BeanReference(type = com.liferay.portal.service.LayoutSetPrototypeService.class)
3914            protected com.liferay.portal.service.LayoutSetPrototypeService layoutSetPrototypeService;
3915            @BeanReference(type = LayoutSetPrototypePersistence.class)
3916            protected LayoutSetPrototypePersistence layoutSetPrototypePersistence;
3917            @BeanReference(type = com.liferay.portal.service.MembershipRequestLocalService.class)
3918            protected com.liferay.portal.service.MembershipRequestLocalService membershipRequestLocalService;
3919            @BeanReference(type = com.liferay.portal.service.MembershipRequestService.class)
3920            protected com.liferay.portal.service.MembershipRequestService membershipRequestService;
3921            @BeanReference(type = MembershipRequestPersistence.class)
3922            protected MembershipRequestPersistence membershipRequestPersistence;
3923            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
3924            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
3925            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
3926            protected com.liferay.portal.service.OrganizationService organizationService;
3927            @BeanReference(type = OrganizationPersistence.class)
3928            protected OrganizationPersistence organizationPersistence;
3929            @BeanReference(type = OrganizationFinder.class)
3930            protected OrganizationFinder organizationFinder;
3931            @BeanReference(type = com.liferay.portal.service.PortletLocalService.class)
3932            protected com.liferay.portal.service.PortletLocalService portletLocalService;
3933            @BeanReference(type = com.liferay.portal.service.PortletService.class)
3934            protected com.liferay.portal.service.PortletService portletService;
3935            @BeanReference(type = PortletPersistence.class)
3936            protected PortletPersistence portletPersistence;
3937            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
3938            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
3939            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
3940            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
3941            @BeanReference(type = PortletPreferencesPersistence.class)
3942            protected PortletPreferencesPersistence portletPreferencesPersistence;
3943            @BeanReference(type = PortletPreferencesFinder.class)
3944            protected PortletPreferencesFinder portletPreferencesFinder;
3945            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
3946            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
3947            @BeanReference(type = com.liferay.portal.service.ResourceActionLocalService.class)
3948            protected com.liferay.portal.service.ResourceActionLocalService resourceActionLocalService;
3949            @BeanReference(type = ResourceActionPersistence.class)
3950            protected ResourceActionPersistence resourceActionPersistence;
3951            @BeanReference(type = com.liferay.portal.service.ResourceBlockLocalService.class)
3952            protected com.liferay.portal.service.ResourceBlockLocalService resourceBlockLocalService;
3953            @BeanReference(type = com.liferay.portal.service.ResourceBlockService.class)
3954            protected com.liferay.portal.service.ResourceBlockService resourceBlockService;
3955            @BeanReference(type = ResourceBlockPersistence.class)
3956            protected ResourceBlockPersistence resourceBlockPersistence;
3957            @BeanReference(type = ResourceBlockFinder.class)
3958            protected ResourceBlockFinder resourceBlockFinder;
3959            @BeanReference(type = com.liferay.portal.service.ResourcePermissionLocalService.class)
3960            protected com.liferay.portal.service.ResourcePermissionLocalService resourcePermissionLocalService;
3961            @BeanReference(type = com.liferay.portal.service.ResourcePermissionService.class)
3962            protected com.liferay.portal.service.ResourcePermissionService resourcePermissionService;
3963            @BeanReference(type = ResourcePermissionPersistence.class)
3964            protected ResourcePermissionPersistence resourcePermissionPersistence;
3965            @BeanReference(type = ResourcePermissionFinder.class)
3966            protected ResourcePermissionFinder resourcePermissionFinder;
3967            @BeanReference(type = com.liferay.portal.service.ResourceTypePermissionLocalService.class)
3968            protected com.liferay.portal.service.ResourceTypePermissionLocalService resourceTypePermissionLocalService;
3969            @BeanReference(type = ResourceTypePermissionPersistence.class)
3970            protected ResourceTypePermissionPersistence resourceTypePermissionPersistence;
3971            @BeanReference(type = ResourceTypePermissionFinder.class)
3972            protected ResourceTypePermissionFinder resourceTypePermissionFinder;
3973            @BeanReference(type = com.liferay.portal.service.RoleLocalService.class)
3974            protected com.liferay.portal.service.RoleLocalService roleLocalService;
3975            @BeanReference(type = com.liferay.portal.service.RoleService.class)
3976            protected com.liferay.portal.service.RoleService roleService;
3977            @BeanReference(type = RolePersistence.class)
3978            protected RolePersistence rolePersistence;
3979            @BeanReference(type = RoleFinder.class)
3980            protected RoleFinder roleFinder;
3981            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
3982            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
3983            @BeanReference(type = SubscriptionPersistence.class)
3984            protected SubscriptionPersistence subscriptionPersistence;
3985            @BeanReference(type = com.liferay.portal.service.TeamLocalService.class)
3986            protected com.liferay.portal.service.TeamLocalService teamLocalService;
3987            @BeanReference(type = com.liferay.portal.service.TeamService.class)
3988            protected com.liferay.portal.service.TeamService teamService;
3989            @BeanReference(type = TeamPersistence.class)
3990            protected TeamPersistence teamPersistence;
3991            @BeanReference(type = TeamFinder.class)
3992            protected TeamFinder teamFinder;
3993            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
3994            protected com.liferay.portal.service.UserLocalService userLocalService;
3995            @BeanReference(type = com.liferay.portal.service.UserService.class)
3996            protected com.liferay.portal.service.UserService userService;
3997            @BeanReference(type = UserPersistence.class)
3998            protected UserPersistence userPersistence;
3999            @BeanReference(type = UserFinder.class)
4000            protected UserFinder userFinder;
4001            @BeanReference(type = com.liferay.portal.service.UserGroupLocalService.class)
4002            protected com.liferay.portal.service.UserGroupLocalService userGroupLocalService;
4003            @BeanReference(type = com.liferay.portal.service.UserGroupService.class)
4004            protected com.liferay.portal.service.UserGroupService userGroupService;
4005            @BeanReference(type = UserGroupPersistence.class)
4006            protected UserGroupPersistence userGroupPersistence;
4007            @BeanReference(type = UserGroupFinder.class)
4008            protected UserGroupFinder userGroupFinder;
4009            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleLocalService.class)
4010            protected com.liferay.portal.service.UserGroupGroupRoleLocalService userGroupGroupRoleLocalService;
4011            @BeanReference(type = com.liferay.portal.service.UserGroupGroupRoleService.class)
4012            protected com.liferay.portal.service.UserGroupGroupRoleService userGroupGroupRoleService;
4013            @BeanReference(type = UserGroupGroupRolePersistence.class)
4014            protected UserGroupGroupRolePersistence userGroupGroupRolePersistence;
4015            @BeanReference(type = UserGroupGroupRoleFinder.class)
4016            protected UserGroupGroupRoleFinder userGroupGroupRoleFinder;
4017            @BeanReference(type = com.liferay.portal.service.UserGroupRoleLocalService.class)
4018            protected com.liferay.portal.service.UserGroupRoleLocalService userGroupRoleLocalService;
4019            @BeanReference(type = com.liferay.portal.service.UserGroupRoleService.class)
4020            protected com.liferay.portal.service.UserGroupRoleService userGroupRoleService;
4021            @BeanReference(type = UserGroupRolePersistence.class)
4022            protected UserGroupRolePersistence userGroupRolePersistence;
4023            @BeanReference(type = UserGroupRoleFinder.class)
4024            protected UserGroupRoleFinder userGroupRoleFinder;
4025            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
4026            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
4027            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
4028            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
4029            @BeanReference(type = PersistedModelLocalServiceRegistry.class)
4030            protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
4031            private String _beanIdentifier;
4032    }