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