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