001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.social.service.base;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.kernel.bean.BeanReference;
020    import com.liferay.portal.kernel.bean.IdentifiableBean;
021    import com.liferay.portal.kernel.dao.db.DB;
022    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
023    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
024    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
025    import com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery;
026    import com.liferay.portal.kernel.dao.orm.DefaultActionableDynamicQuery;
027    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
028    import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
029    import com.liferay.portal.kernel.dao.orm.Projection;
030    import com.liferay.portal.kernel.exception.PortalException;
031    import com.liferay.portal.kernel.exception.SystemException;
032    import com.liferay.portal.kernel.search.Indexable;
033    import com.liferay.portal.kernel.search.IndexableType;
034    import com.liferay.portal.kernel.util.OrderByComparator;
035    import com.liferay.portal.model.PersistedModel;
036    import com.liferay.portal.service.BaseLocalServiceImpl;
037    import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
038    import com.liferay.portal.service.persistence.ClassNamePersistence;
039    import com.liferay.portal.service.persistence.UserFinder;
040    import com.liferay.portal.service.persistence.UserPersistence;
041    import com.liferay.portal.util.PortalUtil;
042    
043    import com.liferay.portlet.social.model.SocialRequest;
044    import com.liferay.portlet.social.service.SocialRequestLocalService;
045    import com.liferay.portlet.social.service.persistence.SocialRequestPersistence;
046    
047    import java.io.Serializable;
048    
049    import java.util.List;
050    
051    import javax.sql.DataSource;
052    
053    /**
054     * Provides the base implementation for the social request local service.
055     *
056     * <p>
057     * 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.portlet.social.service.impl.SocialRequestLocalServiceImpl}.
058     * </p>
059     *
060     * @author Brian Wing Shun Chan
061     * @see com.liferay.portlet.social.service.impl.SocialRequestLocalServiceImpl
062     * @see com.liferay.portlet.social.service.SocialRequestLocalServiceUtil
063     * @generated
064     */
065    @ProviderType
066    public abstract class SocialRequestLocalServiceBaseImpl
067            extends BaseLocalServiceImpl implements SocialRequestLocalService,
068                    IdentifiableBean {
069            /*
070             * NOTE FOR DEVELOPERS:
071             *
072             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.social.service.SocialRequestLocalServiceUtil} to access the social request local service.
073             */
074    
075            /**
076             * Adds the social request to the database. Also notifies the appropriate model listeners.
077             *
078             * @param socialRequest the social request
079             * @return the social request that was added
080             */
081            @Indexable(type = IndexableType.REINDEX)
082            @Override
083            public SocialRequest addSocialRequest(SocialRequest socialRequest) {
084                    socialRequest.setNew(true);
085    
086                    return socialRequestPersistence.update(socialRequest);
087            }
088    
089            /**
090             * Creates a new social request with the primary key. Does not add the social request to the database.
091             *
092             * @param requestId the primary key for the new social request
093             * @return the new social request
094             */
095            @Override
096            public SocialRequest createSocialRequest(long requestId) {
097                    return socialRequestPersistence.create(requestId);
098            }
099    
100            /**
101             * Deletes the social request with the primary key from the database. Also notifies the appropriate model listeners.
102             *
103             * @param requestId the primary key of the social request
104             * @return the social request that was removed
105             * @throws PortalException if a social request with the primary key could not be found
106             */
107            @Indexable(type = IndexableType.DELETE)
108            @Override
109            public SocialRequest deleteSocialRequest(long requestId)
110                    throws PortalException {
111                    return socialRequestPersistence.remove(requestId);
112            }
113    
114            /**
115             * Deletes the social request from the database. Also notifies the appropriate model listeners.
116             *
117             * @param socialRequest the social request
118             * @return the social request that was removed
119             */
120            @Indexable(type = IndexableType.DELETE)
121            @Override
122            public SocialRequest deleteSocialRequest(SocialRequest socialRequest) {
123                    return socialRequestPersistence.remove(socialRequest);
124            }
125    
126            @Override
127            public DynamicQuery dynamicQuery() {
128                    Class<?> clazz = getClass();
129    
130                    return DynamicQueryFactoryUtil.forClass(SocialRequest.class,
131                            clazz.getClassLoader());
132            }
133    
134            /**
135             * Performs a dynamic query on the database and returns the matching rows.
136             *
137             * @param dynamicQuery the dynamic query
138             * @return the matching rows
139             */
140            @Override
141            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery) {
142                    return socialRequestPersistence.findWithDynamicQuery(dynamicQuery);
143            }
144    
145            /**
146             * Performs a dynamic query on the database and returns a range of the matching rows.
147             *
148             * <p>
149             * 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.portlet.social.model.impl.SocialRequestModelImpl}. 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.
150             * </p>
151             *
152             * @param dynamicQuery the dynamic query
153             * @param start the lower bound of the range of model instances
154             * @param end the upper bound of the range of model instances (not inclusive)
155             * @return the range of matching rows
156             */
157            @Override
158            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
159                    int end) {
160                    return socialRequestPersistence.findWithDynamicQuery(dynamicQuery,
161                            start, end);
162            }
163    
164            /**
165             * Performs a dynamic query on the database and returns an ordered range of the matching rows.
166             *
167             * <p>
168             * 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.portlet.social.model.impl.SocialRequestModelImpl}. 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.
169             * </p>
170             *
171             * @param dynamicQuery the dynamic query
172             * @param start the lower bound of the range of model instances
173             * @param end the upper bound of the range of model instances (not inclusive)
174             * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
175             * @return the ordered range of matching rows
176             */
177            @Override
178            public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start,
179                    int end, OrderByComparator<T> orderByComparator) {
180                    return socialRequestPersistence.findWithDynamicQuery(dynamicQuery,
181                            start, end, orderByComparator);
182            }
183    
184            /**
185             * Returns the number of rows that match the dynamic query.
186             *
187             * @param dynamicQuery the dynamic query
188             * @return the number of rows that match the dynamic query
189             */
190            @Override
191            public long dynamicQueryCount(DynamicQuery dynamicQuery) {
192                    return socialRequestPersistence.countWithDynamicQuery(dynamicQuery);
193            }
194    
195            /**
196             * Returns the number of rows that match the dynamic query.
197             *
198             * @param dynamicQuery the dynamic query
199             * @param projection the projection to apply to the query
200             * @return the number of rows that match the dynamic query
201             */
202            @Override
203            public long dynamicQueryCount(DynamicQuery dynamicQuery,
204                    Projection projection) {
205                    return socialRequestPersistence.countWithDynamicQuery(dynamicQuery,
206                            projection);
207            }
208    
209            @Override
210            public SocialRequest fetchSocialRequest(long requestId) {
211                    return socialRequestPersistence.fetchByPrimaryKey(requestId);
212            }
213    
214            /**
215             * Returns the social request matching the UUID and group.
216             *
217             * @param uuid the social request's UUID
218             * @param groupId the primary key of the group
219             * @return the matching social request, or <code>null</code> if a matching social request could not be found
220             */
221            @Override
222            public SocialRequest fetchSocialRequestByUuidAndGroupId(String uuid,
223                    long groupId) {
224                    return socialRequestPersistence.fetchByUUID_G(uuid, groupId);
225            }
226    
227            /**
228             * Returns the social request with the primary key.
229             *
230             * @param requestId the primary key of the social request
231             * @return the social request
232             * @throws PortalException if a social request with the primary key could not be found
233             */
234            @Override
235            public SocialRequest getSocialRequest(long requestId)
236                    throws PortalException {
237                    return socialRequestPersistence.findByPrimaryKey(requestId);
238            }
239    
240            @Override
241            public ActionableDynamicQuery getActionableDynamicQuery() {
242                    ActionableDynamicQuery actionableDynamicQuery = new DefaultActionableDynamicQuery();
243    
244                    actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.social.service.SocialRequestLocalServiceUtil.getService());
245                    actionableDynamicQuery.setClass(SocialRequest.class);
246                    actionableDynamicQuery.setClassLoader(getClassLoader());
247    
248                    actionableDynamicQuery.setPrimaryKeyPropertyName("requestId");
249    
250                    return actionableDynamicQuery;
251            }
252    
253            protected void initActionableDynamicQuery(
254                    ActionableDynamicQuery actionableDynamicQuery) {
255                    actionableDynamicQuery.setBaseLocalService(com.liferay.portlet.social.service.SocialRequestLocalServiceUtil.getService());
256                    actionableDynamicQuery.setClass(SocialRequest.class);
257                    actionableDynamicQuery.setClassLoader(getClassLoader());
258    
259                    actionableDynamicQuery.setPrimaryKeyPropertyName("requestId");
260            }
261    
262            /**
263             * @throws PortalException
264             */
265            @Override
266            public PersistedModel deletePersistedModel(PersistedModel persistedModel)
267                    throws PortalException {
268                    return socialRequestLocalService.deleteSocialRequest((SocialRequest)persistedModel);
269            }
270    
271            @Override
272            public PersistedModel getPersistedModel(Serializable primaryKeyObj)
273                    throws PortalException {
274                    return socialRequestPersistence.findByPrimaryKey(primaryKeyObj);
275            }
276    
277            @Override
278            public List<SocialRequest> getSocialRequestsByUuidAndCompanyId(
279                    String uuid, long companyId) {
280                    return socialRequestPersistence.findByUuid_C(uuid, companyId);
281            }
282    
283            @Override
284            public List<SocialRequest> getSocialRequestsByUuidAndCompanyId(
285                    String uuid, long companyId, int start, int end,
286                    OrderByComparator<SocialRequest> orderByComparator) {
287                    return socialRequestPersistence.findByUuid_C(uuid, companyId, start,
288                            end, orderByComparator);
289            }
290    
291            /**
292             * Returns the social request matching the UUID and group.
293             *
294             * @param uuid the social request's UUID
295             * @param groupId the primary key of the group
296             * @return the matching social request
297             * @throws PortalException if a matching social request could not be found
298             */
299            @Override
300            public SocialRequest getSocialRequestByUuidAndGroupId(String uuid,
301                    long groupId) throws PortalException {
302                    return socialRequestPersistence.findByUUID_G(uuid, groupId);
303            }
304    
305            /**
306             * Returns a range of all the social requests.
307             *
308             * <p>
309             * 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.portlet.social.model.impl.SocialRequestModelImpl}. 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.
310             * </p>
311             *
312             * @param start the lower bound of the range of social requests
313             * @param end the upper bound of the range of social requests (not inclusive)
314             * @return the range of social requests
315             */
316            @Override
317            public List<SocialRequest> getSocialRequests(int start, int end) {
318                    return socialRequestPersistence.findAll(start, end);
319            }
320    
321            /**
322             * Returns the number of social requests.
323             *
324             * @return the number of social requests
325             */
326            @Override
327            public int getSocialRequestsCount() {
328                    return socialRequestPersistence.countAll();
329            }
330    
331            /**
332             * Updates the social request in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
333             *
334             * @param socialRequest the social request
335             * @return the social request that was updated
336             */
337            @Indexable(type = IndexableType.REINDEX)
338            @Override
339            public SocialRequest updateSocialRequest(SocialRequest socialRequest) {
340                    return socialRequestPersistence.update(socialRequest);
341            }
342    
343            /**
344             * Returns the social request local service.
345             *
346             * @return the social request local service
347             */
348            public com.liferay.portlet.social.service.SocialRequestLocalService getSocialRequestLocalService() {
349                    return socialRequestLocalService;
350            }
351    
352            /**
353             * Sets the social request local service.
354             *
355             * @param socialRequestLocalService the social request local service
356             */
357            public void setSocialRequestLocalService(
358                    com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService) {
359                    this.socialRequestLocalService = socialRequestLocalService;
360            }
361    
362            /**
363             * Returns the social request remote service.
364             *
365             * @return the social request remote service
366             */
367            public com.liferay.portlet.social.service.SocialRequestService getSocialRequestService() {
368                    return socialRequestService;
369            }
370    
371            /**
372             * Sets the social request remote service.
373             *
374             * @param socialRequestService the social request remote service
375             */
376            public void setSocialRequestService(
377                    com.liferay.portlet.social.service.SocialRequestService socialRequestService) {
378                    this.socialRequestService = socialRequestService;
379            }
380    
381            /**
382             * Returns the social request persistence.
383             *
384             * @return the social request persistence
385             */
386            public SocialRequestPersistence getSocialRequestPersistence() {
387                    return socialRequestPersistence;
388            }
389    
390            /**
391             * Sets the social request persistence.
392             *
393             * @param socialRequestPersistence the social request persistence
394             */
395            public void setSocialRequestPersistence(
396                    SocialRequestPersistence socialRequestPersistence) {
397                    this.socialRequestPersistence = socialRequestPersistence;
398            }
399    
400            /**
401             * Returns the counter local service.
402             *
403             * @return the counter local service
404             */
405            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
406                    return counterLocalService;
407            }
408    
409            /**
410             * Sets the counter local service.
411             *
412             * @param counterLocalService the counter local service
413             */
414            public void setCounterLocalService(
415                    com.liferay.counter.service.CounterLocalService counterLocalService) {
416                    this.counterLocalService = counterLocalService;
417            }
418    
419            /**
420             * Returns the class name local service.
421             *
422             * @return the class name local service
423             */
424            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
425                    return classNameLocalService;
426            }
427    
428            /**
429             * Sets the class name local service.
430             *
431             * @param classNameLocalService the class name local service
432             */
433            public void setClassNameLocalService(
434                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
435                    this.classNameLocalService = classNameLocalService;
436            }
437    
438            /**
439             * Returns the class name remote service.
440             *
441             * @return the class name remote service
442             */
443            public com.liferay.portal.service.ClassNameService getClassNameService() {
444                    return classNameService;
445            }
446    
447            /**
448             * Sets the class name remote service.
449             *
450             * @param classNameService the class name remote service
451             */
452            public void setClassNameService(
453                    com.liferay.portal.service.ClassNameService classNameService) {
454                    this.classNameService = classNameService;
455            }
456    
457            /**
458             * Returns the class name persistence.
459             *
460             * @return the class name persistence
461             */
462            public ClassNamePersistence getClassNamePersistence() {
463                    return classNamePersistence;
464            }
465    
466            /**
467             * Sets the class name persistence.
468             *
469             * @param classNamePersistence the class name persistence
470             */
471            public void setClassNamePersistence(
472                    ClassNamePersistence classNamePersistence) {
473                    this.classNamePersistence = classNamePersistence;
474            }
475    
476            /**
477             * Returns the user local service.
478             *
479             * @return the user local service
480             */
481            public com.liferay.portal.service.UserLocalService getUserLocalService() {
482                    return userLocalService;
483            }
484    
485            /**
486             * Sets the user local service.
487             *
488             * @param userLocalService the user local service
489             */
490            public void setUserLocalService(
491                    com.liferay.portal.service.UserLocalService userLocalService) {
492                    this.userLocalService = userLocalService;
493            }
494    
495            /**
496             * Returns the user remote service.
497             *
498             * @return the user remote service
499             */
500            public com.liferay.portal.service.UserService getUserService() {
501                    return userService;
502            }
503    
504            /**
505             * Sets the user remote service.
506             *
507             * @param userService the user remote service
508             */
509            public void setUserService(
510                    com.liferay.portal.service.UserService userService) {
511                    this.userService = userService;
512            }
513    
514            /**
515             * Returns the user persistence.
516             *
517             * @return the user persistence
518             */
519            public UserPersistence getUserPersistence() {
520                    return userPersistence;
521            }
522    
523            /**
524             * Sets the user persistence.
525             *
526             * @param userPersistence the user persistence
527             */
528            public void setUserPersistence(UserPersistence userPersistence) {
529                    this.userPersistence = userPersistence;
530            }
531    
532            /**
533             * Returns the user finder.
534             *
535             * @return the user finder
536             */
537            public UserFinder getUserFinder() {
538                    return userFinder;
539            }
540    
541            /**
542             * Sets the user finder.
543             *
544             * @param userFinder the user finder
545             */
546            public void setUserFinder(UserFinder userFinder) {
547                    this.userFinder = userFinder;
548            }
549    
550            /**
551             * Returns the social request interpreter local service.
552             *
553             * @return the social request interpreter local service
554             */
555            public com.liferay.portlet.social.service.SocialRequestInterpreterLocalService getSocialRequestInterpreterLocalService() {
556                    return socialRequestInterpreterLocalService;
557            }
558    
559            /**
560             * Sets the social request interpreter local service.
561             *
562             * @param socialRequestInterpreterLocalService the social request interpreter local service
563             */
564            public void setSocialRequestInterpreterLocalService(
565                    com.liferay.portlet.social.service.SocialRequestInterpreterLocalService socialRequestInterpreterLocalService) {
566                    this.socialRequestInterpreterLocalService = socialRequestInterpreterLocalService;
567            }
568    
569            public void afterPropertiesSet() {
570                    persistedModelLocalServiceRegistry.register("com.liferay.portlet.social.model.SocialRequest",
571                            socialRequestLocalService);
572            }
573    
574            public void destroy() {
575                    persistedModelLocalServiceRegistry.unregister(
576                            "com.liferay.portlet.social.model.SocialRequest");
577            }
578    
579            /**
580             * Returns the Spring bean ID for this bean.
581             *
582             * @return the Spring bean ID for this bean
583             */
584            @Override
585            public String getBeanIdentifier() {
586                    return _beanIdentifier;
587            }
588    
589            /**
590             * Sets the Spring bean ID for this bean.
591             *
592             * @param beanIdentifier the Spring bean ID for this bean
593             */
594            @Override
595            public void setBeanIdentifier(String beanIdentifier) {
596                    _beanIdentifier = beanIdentifier;
597            }
598    
599            protected Class<?> getModelClass() {
600                    return SocialRequest.class;
601            }
602    
603            protected String getModelClassName() {
604                    return SocialRequest.class.getName();
605            }
606    
607            /**
608             * Performs a SQL query.
609             *
610             * @param sql the sql query
611             */
612            protected void runSQL(String sql) {
613                    try {
614                            DataSource dataSource = socialRequestPersistence.getDataSource();
615    
616                            DB db = DBFactoryUtil.getDB();
617    
618                            sql = db.buildSQL(sql);
619                            sql = PortalUtil.transformSQL(sql);
620    
621                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
622                                            sql, new int[0]);
623    
624                            sqlUpdate.update();
625                    }
626                    catch (Exception e) {
627                            throw new SystemException(e);
628                    }
629            }
630    
631            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestLocalService.class)
632            protected com.liferay.portlet.social.service.SocialRequestLocalService socialRequestLocalService;
633            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestService.class)
634            protected com.liferay.portlet.social.service.SocialRequestService socialRequestService;
635            @BeanReference(type = SocialRequestPersistence.class)
636            protected SocialRequestPersistence socialRequestPersistence;
637            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
638            protected com.liferay.counter.service.CounterLocalService counterLocalService;
639            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
640            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
641            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
642            protected com.liferay.portal.service.ClassNameService classNameService;
643            @BeanReference(type = ClassNamePersistence.class)
644            protected ClassNamePersistence classNamePersistence;
645            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
646            protected com.liferay.portal.service.UserLocalService userLocalService;
647            @BeanReference(type = com.liferay.portal.service.UserService.class)
648            protected com.liferay.portal.service.UserService userService;
649            @BeanReference(type = UserPersistence.class)
650            protected UserPersistence userPersistence;
651            @BeanReference(type = UserFinder.class)
652            protected UserFinder userFinder;
653            @BeanReference(type = com.liferay.portlet.social.service.SocialRequestInterpreterLocalService.class)
654            protected com.liferay.portlet.social.service.SocialRequestInterpreterLocalService socialRequestInterpreterLocalService;
655            @BeanReference(type = PersistedModelLocalServiceRegistry.class)
656            protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
657            private String _beanIdentifier;
658    }