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