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