001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.blogs.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.exception.SystemException;
022    import com.liferay.portal.service.BaseServiceImpl;
023    import com.liferay.portal.service.persistence.CompanyPersistence;
024    import com.liferay.portal.service.persistence.GroupFinder;
025    import com.liferay.portal.service.persistence.GroupPersistence;
026    import com.liferay.portal.service.persistence.ImagePersistence;
027    import com.liferay.portal.service.persistence.OrganizationFinder;
028    import com.liferay.portal.service.persistence.OrganizationPersistence;
029    import com.liferay.portal.service.persistence.PortletPreferencesFinder;
030    import com.liferay.portal.service.persistence.PortletPreferencesPersistence;
031    import com.liferay.portal.service.persistence.SubscriptionPersistence;
032    import com.liferay.portal.service.persistence.UserFinder;
033    import com.liferay.portal.service.persistence.UserPersistence;
034    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
035    
036    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
037    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
038    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
039    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
040    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
041    import com.liferay.portlet.blogs.model.BlogsEntry;
042    import com.liferay.portlet.blogs.service.BlogsEntryService;
043    import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
044    import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
045    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserFinder;
046    import com.liferay.portlet.blogs.service.persistence.BlogsStatsUserPersistence;
047    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
048    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
049    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
050    import com.liferay.portlet.ratings.service.persistence.RatingsStatsFinder;
051    import com.liferay.portlet.ratings.service.persistence.RatingsStatsPersistence;
052    import com.liferay.portlet.social.service.persistence.SocialActivityCounterFinder;
053    import com.liferay.portlet.social.service.persistence.SocialActivityCounterPersistence;
054    import com.liferay.portlet.social.service.persistence.SocialActivityFinder;
055    import com.liferay.portlet.social.service.persistence.SocialActivityPersistence;
056    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
057    
058    import javax.sql.DataSource;
059    
060    /**
061     * Provides the base implementation for the blogs entry remote service.
062     *
063     * <p>
064     * 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.blogs.service.impl.BlogsEntryServiceImpl}.
065     * </p>
066     *
067     * @author Brian Wing Shun Chan
068     * @see com.liferay.portlet.blogs.service.impl.BlogsEntryServiceImpl
069     * @see com.liferay.portlet.blogs.service.BlogsEntryServiceUtil
070     * @generated
071     */
072    public abstract class BlogsEntryServiceBaseImpl extends BaseServiceImpl
073            implements BlogsEntryService, IdentifiableBean {
074            /*
075             * NOTE FOR DEVELOPERS:
076             *
077             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.blogs.service.BlogsEntryServiceUtil} to access the blogs entry remote service.
078             */
079    
080            /**
081             * Returns the blogs entry local service.
082             *
083             * @return the blogs entry local service
084             */
085            public com.liferay.portlet.blogs.service.BlogsEntryLocalService getBlogsEntryLocalService() {
086                    return blogsEntryLocalService;
087            }
088    
089            /**
090             * Sets the blogs entry local service.
091             *
092             * @param blogsEntryLocalService the blogs entry local service
093             */
094            public void setBlogsEntryLocalService(
095                    com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService) {
096                    this.blogsEntryLocalService = blogsEntryLocalService;
097            }
098    
099            /**
100             * Returns the blogs entry remote service.
101             *
102             * @return the blogs entry remote service
103             */
104            public com.liferay.portlet.blogs.service.BlogsEntryService getBlogsEntryService() {
105                    return blogsEntryService;
106            }
107    
108            /**
109             * Sets the blogs entry remote service.
110             *
111             * @param blogsEntryService the blogs entry remote service
112             */
113            public void setBlogsEntryService(
114                    com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService) {
115                    this.blogsEntryService = blogsEntryService;
116            }
117    
118            /**
119             * Returns the blogs entry persistence.
120             *
121             * @return the blogs entry persistence
122             */
123            public BlogsEntryPersistence getBlogsEntryPersistence() {
124                    return blogsEntryPersistence;
125            }
126    
127            /**
128             * Sets the blogs entry persistence.
129             *
130             * @param blogsEntryPersistence the blogs entry persistence
131             */
132            public void setBlogsEntryPersistence(
133                    BlogsEntryPersistence blogsEntryPersistence) {
134                    this.blogsEntryPersistence = blogsEntryPersistence;
135            }
136    
137            /**
138             * Returns the blogs entry finder.
139             *
140             * @return the blogs entry finder
141             */
142            public BlogsEntryFinder getBlogsEntryFinder() {
143                    return blogsEntryFinder;
144            }
145    
146            /**
147             * Sets the blogs entry finder.
148             *
149             * @param blogsEntryFinder the blogs entry finder
150             */
151            public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
152                    this.blogsEntryFinder = blogsEntryFinder;
153            }
154    
155            /**
156             * Returns the blogs stats user local service.
157             *
158             * @return the blogs stats user local service
159             */
160            public com.liferay.portlet.blogs.service.BlogsStatsUserLocalService getBlogsStatsUserLocalService() {
161                    return blogsStatsUserLocalService;
162            }
163    
164            /**
165             * Sets the blogs stats user local service.
166             *
167             * @param blogsStatsUserLocalService the blogs stats user local service
168             */
169            public void setBlogsStatsUserLocalService(
170                    com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService) {
171                    this.blogsStatsUserLocalService = blogsStatsUserLocalService;
172            }
173    
174            /**
175             * Returns the blogs stats user persistence.
176             *
177             * @return the blogs stats user persistence
178             */
179            public BlogsStatsUserPersistence getBlogsStatsUserPersistence() {
180                    return blogsStatsUserPersistence;
181            }
182    
183            /**
184             * Sets the blogs stats user persistence.
185             *
186             * @param blogsStatsUserPersistence the blogs stats user persistence
187             */
188            public void setBlogsStatsUserPersistence(
189                    BlogsStatsUserPersistence blogsStatsUserPersistence) {
190                    this.blogsStatsUserPersistence = blogsStatsUserPersistence;
191            }
192    
193            /**
194             * Returns the blogs stats user finder.
195             *
196             * @return the blogs stats user finder
197             */
198            public BlogsStatsUserFinder getBlogsStatsUserFinder() {
199                    return blogsStatsUserFinder;
200            }
201    
202            /**
203             * Sets the blogs stats user finder.
204             *
205             * @param blogsStatsUserFinder the blogs stats user finder
206             */
207            public void setBlogsStatsUserFinder(
208                    BlogsStatsUserFinder blogsStatsUserFinder) {
209                    this.blogsStatsUserFinder = blogsStatsUserFinder;
210            }
211    
212            /**
213             * Returns the counter local service.
214             *
215             * @return the counter local service
216             */
217            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
218                    return counterLocalService;
219            }
220    
221            /**
222             * Sets the counter local service.
223             *
224             * @param counterLocalService the counter local service
225             */
226            public void setCounterLocalService(
227                    com.liferay.counter.service.CounterLocalService counterLocalService) {
228                    this.counterLocalService = counterLocalService;
229            }
230    
231            /**
232             * Returns the company local service.
233             *
234             * @return the company local service
235             */
236            public com.liferay.portal.service.CompanyLocalService getCompanyLocalService() {
237                    return companyLocalService;
238            }
239    
240            /**
241             * Sets the company local service.
242             *
243             * @param companyLocalService the company local service
244             */
245            public void setCompanyLocalService(
246                    com.liferay.portal.service.CompanyLocalService companyLocalService) {
247                    this.companyLocalService = companyLocalService;
248            }
249    
250            /**
251             * Returns the company remote service.
252             *
253             * @return the company remote service
254             */
255            public com.liferay.portal.service.CompanyService getCompanyService() {
256                    return companyService;
257            }
258    
259            /**
260             * Sets the company remote service.
261             *
262             * @param companyService the company remote service
263             */
264            public void setCompanyService(
265                    com.liferay.portal.service.CompanyService companyService) {
266                    this.companyService = companyService;
267            }
268    
269            /**
270             * Returns the company persistence.
271             *
272             * @return the company persistence
273             */
274            public CompanyPersistence getCompanyPersistence() {
275                    return companyPersistence;
276            }
277    
278            /**
279             * Sets the company persistence.
280             *
281             * @param companyPersistence the company persistence
282             */
283            public void setCompanyPersistence(CompanyPersistence companyPersistence) {
284                    this.companyPersistence = companyPersistence;
285            }
286    
287            /**
288             * Returns the group local service.
289             *
290             * @return the group local service
291             */
292            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
293                    return groupLocalService;
294            }
295    
296            /**
297             * Sets the group local service.
298             *
299             * @param groupLocalService the group local service
300             */
301            public void setGroupLocalService(
302                    com.liferay.portal.service.GroupLocalService groupLocalService) {
303                    this.groupLocalService = groupLocalService;
304            }
305    
306            /**
307             * Returns the group remote service.
308             *
309             * @return the group remote service
310             */
311            public com.liferay.portal.service.GroupService getGroupService() {
312                    return groupService;
313            }
314    
315            /**
316             * Sets the group remote service.
317             *
318             * @param groupService the group remote service
319             */
320            public void setGroupService(
321                    com.liferay.portal.service.GroupService groupService) {
322                    this.groupService = groupService;
323            }
324    
325            /**
326             * Returns the group persistence.
327             *
328             * @return the group persistence
329             */
330            public GroupPersistence getGroupPersistence() {
331                    return groupPersistence;
332            }
333    
334            /**
335             * Sets the group persistence.
336             *
337             * @param groupPersistence the group persistence
338             */
339            public void setGroupPersistence(GroupPersistence groupPersistence) {
340                    this.groupPersistence = groupPersistence;
341            }
342    
343            /**
344             * Returns the group finder.
345             *
346             * @return the group finder
347             */
348            public GroupFinder getGroupFinder() {
349                    return groupFinder;
350            }
351    
352            /**
353             * Sets the group finder.
354             *
355             * @param groupFinder the group finder
356             */
357            public void setGroupFinder(GroupFinder groupFinder) {
358                    this.groupFinder = groupFinder;
359            }
360    
361            /**
362             * Returns the image local service.
363             *
364             * @return the image local service
365             */
366            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
367                    return imageLocalService;
368            }
369    
370            /**
371             * Sets the image local service.
372             *
373             * @param imageLocalService the image local service
374             */
375            public void setImageLocalService(
376                    com.liferay.portal.service.ImageLocalService imageLocalService) {
377                    this.imageLocalService = imageLocalService;
378            }
379    
380            /**
381             * Returns the image remote service.
382             *
383             * @return the image remote service
384             */
385            public com.liferay.portal.service.ImageService getImageService() {
386                    return imageService;
387            }
388    
389            /**
390             * Sets the image remote service.
391             *
392             * @param imageService the image remote service
393             */
394            public void setImageService(
395                    com.liferay.portal.service.ImageService imageService) {
396                    this.imageService = imageService;
397            }
398    
399            /**
400             * Returns the image persistence.
401             *
402             * @return the image persistence
403             */
404            public ImagePersistence getImagePersistence() {
405                    return imagePersistence;
406            }
407    
408            /**
409             * Sets the image persistence.
410             *
411             * @param imagePersistence the image persistence
412             */
413            public void setImagePersistence(ImagePersistence imagePersistence) {
414                    this.imagePersistence = imagePersistence;
415            }
416    
417            /**
418             * Returns the organization local service.
419             *
420             * @return the organization local service
421             */
422            public com.liferay.portal.service.OrganizationLocalService getOrganizationLocalService() {
423                    return organizationLocalService;
424            }
425    
426            /**
427             * Sets the organization local service.
428             *
429             * @param organizationLocalService the organization local service
430             */
431            public void setOrganizationLocalService(
432                    com.liferay.portal.service.OrganizationLocalService organizationLocalService) {
433                    this.organizationLocalService = organizationLocalService;
434            }
435    
436            /**
437             * Returns the organization remote service.
438             *
439             * @return the organization remote service
440             */
441            public com.liferay.portal.service.OrganizationService getOrganizationService() {
442                    return organizationService;
443            }
444    
445            /**
446             * Sets the organization remote service.
447             *
448             * @param organizationService the organization remote service
449             */
450            public void setOrganizationService(
451                    com.liferay.portal.service.OrganizationService organizationService) {
452                    this.organizationService = organizationService;
453            }
454    
455            /**
456             * Returns the organization persistence.
457             *
458             * @return the organization persistence
459             */
460            public OrganizationPersistence getOrganizationPersistence() {
461                    return organizationPersistence;
462            }
463    
464            /**
465             * Sets the organization persistence.
466             *
467             * @param organizationPersistence the organization persistence
468             */
469            public void setOrganizationPersistence(
470                    OrganizationPersistence organizationPersistence) {
471                    this.organizationPersistence = organizationPersistence;
472            }
473    
474            /**
475             * Returns the organization finder.
476             *
477             * @return the organization finder
478             */
479            public OrganizationFinder getOrganizationFinder() {
480                    return organizationFinder;
481            }
482    
483            /**
484             * Sets the organization finder.
485             *
486             * @param organizationFinder the organization finder
487             */
488            public void setOrganizationFinder(OrganizationFinder organizationFinder) {
489                    this.organizationFinder = organizationFinder;
490            }
491    
492            /**
493             * Returns the portlet preferences local service.
494             *
495             * @return the portlet preferences local service
496             */
497            public com.liferay.portal.service.PortletPreferencesLocalService getPortletPreferencesLocalService() {
498                    return portletPreferencesLocalService;
499            }
500    
501            /**
502             * Sets the portlet preferences local service.
503             *
504             * @param portletPreferencesLocalService the portlet preferences local service
505             */
506            public void setPortletPreferencesLocalService(
507                    com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService) {
508                    this.portletPreferencesLocalService = portletPreferencesLocalService;
509            }
510    
511            /**
512             * Returns the portlet preferences remote service.
513             *
514             * @return the portlet preferences remote service
515             */
516            public com.liferay.portal.service.PortletPreferencesService getPortletPreferencesService() {
517                    return portletPreferencesService;
518            }
519    
520            /**
521             * Sets the portlet preferences remote service.
522             *
523             * @param portletPreferencesService the portlet preferences remote service
524             */
525            public void setPortletPreferencesService(
526                    com.liferay.portal.service.PortletPreferencesService portletPreferencesService) {
527                    this.portletPreferencesService = portletPreferencesService;
528            }
529    
530            /**
531             * Returns the portlet preferences persistence.
532             *
533             * @return the portlet preferences persistence
534             */
535            public PortletPreferencesPersistence getPortletPreferencesPersistence() {
536                    return portletPreferencesPersistence;
537            }
538    
539            /**
540             * Sets the portlet preferences persistence.
541             *
542             * @param portletPreferencesPersistence the portlet preferences persistence
543             */
544            public void setPortletPreferencesPersistence(
545                    PortletPreferencesPersistence portletPreferencesPersistence) {
546                    this.portletPreferencesPersistence = portletPreferencesPersistence;
547            }
548    
549            /**
550             * Returns the portlet preferences finder.
551             *
552             * @return the portlet preferences finder
553             */
554            public PortletPreferencesFinder getPortletPreferencesFinder() {
555                    return portletPreferencesFinder;
556            }
557    
558            /**
559             * Sets the portlet preferences finder.
560             *
561             * @param portletPreferencesFinder the portlet preferences finder
562             */
563            public void setPortletPreferencesFinder(
564                    PortletPreferencesFinder portletPreferencesFinder) {
565                    this.portletPreferencesFinder = portletPreferencesFinder;
566            }
567    
568            /**
569             * Returns the resource local service.
570             *
571             * @return the resource local service
572             */
573            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
574                    return resourceLocalService;
575            }
576    
577            /**
578             * Sets the resource local service.
579             *
580             * @param resourceLocalService the resource local service
581             */
582            public void setResourceLocalService(
583                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
584                    this.resourceLocalService = resourceLocalService;
585            }
586    
587            /**
588             * Returns the subscription local service.
589             *
590             * @return the subscription local service
591             */
592            public com.liferay.portal.service.SubscriptionLocalService getSubscriptionLocalService() {
593                    return subscriptionLocalService;
594            }
595    
596            /**
597             * Sets the subscription local service.
598             *
599             * @param subscriptionLocalService the subscription local service
600             */
601            public void setSubscriptionLocalService(
602                    com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService) {
603                    this.subscriptionLocalService = subscriptionLocalService;
604            }
605    
606            /**
607             * Returns the subscription persistence.
608             *
609             * @return the subscription persistence
610             */
611            public SubscriptionPersistence getSubscriptionPersistence() {
612                    return subscriptionPersistence;
613            }
614    
615            /**
616             * Sets the subscription persistence.
617             *
618             * @param subscriptionPersistence the subscription persistence
619             */
620            public void setSubscriptionPersistence(
621                    SubscriptionPersistence subscriptionPersistence) {
622                    this.subscriptionPersistence = subscriptionPersistence;
623            }
624    
625            /**
626             * Returns the user local service.
627             *
628             * @return the user local service
629             */
630            public com.liferay.portal.service.UserLocalService getUserLocalService() {
631                    return userLocalService;
632            }
633    
634            /**
635             * Sets the user local service.
636             *
637             * @param userLocalService the user local service
638             */
639            public void setUserLocalService(
640                    com.liferay.portal.service.UserLocalService userLocalService) {
641                    this.userLocalService = userLocalService;
642            }
643    
644            /**
645             * Returns the user remote service.
646             *
647             * @return the user remote service
648             */
649            public com.liferay.portal.service.UserService getUserService() {
650                    return userService;
651            }
652    
653            /**
654             * Sets the user remote service.
655             *
656             * @param userService the user remote service
657             */
658            public void setUserService(
659                    com.liferay.portal.service.UserService userService) {
660                    this.userService = userService;
661            }
662    
663            /**
664             * Returns the user persistence.
665             *
666             * @return the user persistence
667             */
668            public UserPersistence getUserPersistence() {
669                    return userPersistence;
670            }
671    
672            /**
673             * Sets the user persistence.
674             *
675             * @param userPersistence the user persistence
676             */
677            public void setUserPersistence(UserPersistence userPersistence) {
678                    this.userPersistence = userPersistence;
679            }
680    
681            /**
682             * Returns the user finder.
683             *
684             * @return the user finder
685             */
686            public UserFinder getUserFinder() {
687                    return userFinder;
688            }
689    
690            /**
691             * Sets the user finder.
692             *
693             * @param userFinder the user finder
694             */
695            public void setUserFinder(UserFinder userFinder) {
696                    this.userFinder = userFinder;
697            }
698    
699            /**
700             * Returns the workflow instance link local service.
701             *
702             * @return the workflow instance link local service
703             */
704            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
705                    return workflowInstanceLinkLocalService;
706            }
707    
708            /**
709             * Sets the workflow instance link local service.
710             *
711             * @param workflowInstanceLinkLocalService the workflow instance link local service
712             */
713            public void setWorkflowInstanceLinkLocalService(
714                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
715                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
716            }
717    
718            /**
719             * Returns the workflow instance link persistence.
720             *
721             * @return the workflow instance link persistence
722             */
723            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
724                    return workflowInstanceLinkPersistence;
725            }
726    
727            /**
728             * Sets the workflow instance link persistence.
729             *
730             * @param workflowInstanceLinkPersistence the workflow instance link persistence
731             */
732            public void setWorkflowInstanceLinkPersistence(
733                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
734                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
735            }
736    
737            /**
738             * Returns the asset entry local service.
739             *
740             * @return the asset entry local service
741             */
742            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
743                    return assetEntryLocalService;
744            }
745    
746            /**
747             * Sets the asset entry local service.
748             *
749             * @param assetEntryLocalService the asset entry local service
750             */
751            public void setAssetEntryLocalService(
752                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
753                    this.assetEntryLocalService = assetEntryLocalService;
754            }
755    
756            /**
757             * Returns the asset entry remote service.
758             *
759             * @return the asset entry remote service
760             */
761            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
762                    return assetEntryService;
763            }
764    
765            /**
766             * Sets the asset entry remote service.
767             *
768             * @param assetEntryService the asset entry remote service
769             */
770            public void setAssetEntryService(
771                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
772                    this.assetEntryService = assetEntryService;
773            }
774    
775            /**
776             * Returns the asset entry persistence.
777             *
778             * @return the asset entry persistence
779             */
780            public AssetEntryPersistence getAssetEntryPersistence() {
781                    return assetEntryPersistence;
782            }
783    
784            /**
785             * Sets the asset entry persistence.
786             *
787             * @param assetEntryPersistence the asset entry persistence
788             */
789            public void setAssetEntryPersistence(
790                    AssetEntryPersistence assetEntryPersistence) {
791                    this.assetEntryPersistence = assetEntryPersistence;
792            }
793    
794            /**
795             * Returns the asset entry finder.
796             *
797             * @return the asset entry finder
798             */
799            public AssetEntryFinder getAssetEntryFinder() {
800                    return assetEntryFinder;
801            }
802    
803            /**
804             * Sets the asset entry finder.
805             *
806             * @param assetEntryFinder the asset entry finder
807             */
808            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
809                    this.assetEntryFinder = assetEntryFinder;
810            }
811    
812            /**
813             * Returns the asset link local service.
814             *
815             * @return the asset link local service
816             */
817            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
818                    return assetLinkLocalService;
819            }
820    
821            /**
822             * Sets the asset link local service.
823             *
824             * @param assetLinkLocalService the asset link local service
825             */
826            public void setAssetLinkLocalService(
827                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
828                    this.assetLinkLocalService = assetLinkLocalService;
829            }
830    
831            /**
832             * Returns the asset link persistence.
833             *
834             * @return the asset link persistence
835             */
836            public AssetLinkPersistence getAssetLinkPersistence() {
837                    return assetLinkPersistence;
838            }
839    
840            /**
841             * Sets the asset link persistence.
842             *
843             * @param assetLinkPersistence the asset link persistence
844             */
845            public void setAssetLinkPersistence(
846                    AssetLinkPersistence assetLinkPersistence) {
847                    this.assetLinkPersistence = assetLinkPersistence;
848            }
849    
850            /**
851             * Returns the asset tag local service.
852             *
853             * @return the asset tag local service
854             */
855            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
856                    return assetTagLocalService;
857            }
858    
859            /**
860             * Sets the asset tag local service.
861             *
862             * @param assetTagLocalService the asset tag local service
863             */
864            public void setAssetTagLocalService(
865                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
866                    this.assetTagLocalService = assetTagLocalService;
867            }
868    
869            /**
870             * Returns the asset tag remote service.
871             *
872             * @return the asset tag remote service
873             */
874            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
875                    return assetTagService;
876            }
877    
878            /**
879             * Sets the asset tag remote service.
880             *
881             * @param assetTagService the asset tag remote service
882             */
883            public void setAssetTagService(
884                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
885                    this.assetTagService = assetTagService;
886            }
887    
888            /**
889             * Returns the asset tag persistence.
890             *
891             * @return the asset tag persistence
892             */
893            public AssetTagPersistence getAssetTagPersistence() {
894                    return assetTagPersistence;
895            }
896    
897            /**
898             * Sets the asset tag persistence.
899             *
900             * @param assetTagPersistence the asset tag persistence
901             */
902            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
903                    this.assetTagPersistence = assetTagPersistence;
904            }
905    
906            /**
907             * Returns the asset tag finder.
908             *
909             * @return the asset tag finder
910             */
911            public AssetTagFinder getAssetTagFinder() {
912                    return assetTagFinder;
913            }
914    
915            /**
916             * Sets the asset tag finder.
917             *
918             * @param assetTagFinder the asset tag finder
919             */
920            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
921                    this.assetTagFinder = assetTagFinder;
922            }
923    
924            /**
925             * Returns the expando row local service.
926             *
927             * @return the expando row local service
928             */
929            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
930                    return expandoRowLocalService;
931            }
932    
933            /**
934             * Sets the expando row local service.
935             *
936             * @param expandoRowLocalService the expando row local service
937             */
938            public void setExpandoRowLocalService(
939                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
940                    this.expandoRowLocalService = expandoRowLocalService;
941            }
942    
943            /**
944             * Returns the expando row persistence.
945             *
946             * @return the expando row persistence
947             */
948            public ExpandoRowPersistence getExpandoRowPersistence() {
949                    return expandoRowPersistence;
950            }
951    
952            /**
953             * Sets the expando row persistence.
954             *
955             * @param expandoRowPersistence the expando row persistence
956             */
957            public void setExpandoRowPersistence(
958                    ExpandoRowPersistence expandoRowPersistence) {
959                    this.expandoRowPersistence = expandoRowPersistence;
960            }
961    
962            /**
963             * Returns the message-boards message local service.
964             *
965             * @return the message-boards message local service
966             */
967            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
968                    return mbMessageLocalService;
969            }
970    
971            /**
972             * Sets the message-boards message local service.
973             *
974             * @param mbMessageLocalService the message-boards message local service
975             */
976            public void setMBMessageLocalService(
977                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
978                    this.mbMessageLocalService = mbMessageLocalService;
979            }
980    
981            /**
982             * Returns the message-boards message remote service.
983             *
984             * @return the message-boards message remote service
985             */
986            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
987                    return mbMessageService;
988            }
989    
990            /**
991             * Sets the message-boards message remote service.
992             *
993             * @param mbMessageService the message-boards message remote service
994             */
995            public void setMBMessageService(
996                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
997                    this.mbMessageService = mbMessageService;
998            }
999    
1000            /**
1001             * Returns the message-boards message persistence.
1002             *
1003             * @return the message-boards message persistence
1004             */
1005            public MBMessagePersistence getMBMessagePersistence() {
1006                    return mbMessagePersistence;
1007            }
1008    
1009            /**
1010             * Sets the message-boards message persistence.
1011             *
1012             * @param mbMessagePersistence the message-boards message persistence
1013             */
1014            public void setMBMessagePersistence(
1015                    MBMessagePersistence mbMessagePersistence) {
1016                    this.mbMessagePersistence = mbMessagePersistence;
1017            }
1018    
1019            /**
1020             * Returns the message-boards message finder.
1021             *
1022             * @return the message-boards message finder
1023             */
1024            public MBMessageFinder getMBMessageFinder() {
1025                    return mbMessageFinder;
1026            }
1027    
1028            /**
1029             * Sets the message-boards message finder.
1030             *
1031             * @param mbMessageFinder the message-boards message finder
1032             */
1033            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1034                    this.mbMessageFinder = mbMessageFinder;
1035            }
1036    
1037            /**
1038             * Returns the ratings stats local service.
1039             *
1040             * @return the ratings stats local service
1041             */
1042            public com.liferay.portlet.ratings.service.RatingsStatsLocalService getRatingsStatsLocalService() {
1043                    return ratingsStatsLocalService;
1044            }
1045    
1046            /**
1047             * Sets the ratings stats local service.
1048             *
1049             * @param ratingsStatsLocalService the ratings stats local service
1050             */
1051            public void setRatingsStatsLocalService(
1052                    com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService) {
1053                    this.ratingsStatsLocalService = ratingsStatsLocalService;
1054            }
1055    
1056            /**
1057             * Returns the ratings stats persistence.
1058             *
1059             * @return the ratings stats persistence
1060             */
1061            public RatingsStatsPersistence getRatingsStatsPersistence() {
1062                    return ratingsStatsPersistence;
1063            }
1064    
1065            /**
1066             * Sets the ratings stats persistence.
1067             *
1068             * @param ratingsStatsPersistence the ratings stats persistence
1069             */
1070            public void setRatingsStatsPersistence(
1071                    RatingsStatsPersistence ratingsStatsPersistence) {
1072                    this.ratingsStatsPersistence = ratingsStatsPersistence;
1073            }
1074    
1075            /**
1076             * Returns the ratings stats finder.
1077             *
1078             * @return the ratings stats finder
1079             */
1080            public RatingsStatsFinder getRatingsStatsFinder() {
1081                    return ratingsStatsFinder;
1082            }
1083    
1084            /**
1085             * Sets the ratings stats finder.
1086             *
1087             * @param ratingsStatsFinder the ratings stats finder
1088             */
1089            public void setRatingsStatsFinder(RatingsStatsFinder ratingsStatsFinder) {
1090                    this.ratingsStatsFinder = ratingsStatsFinder;
1091            }
1092    
1093            /**
1094             * Returns the social activity local service.
1095             *
1096             * @return the social activity local service
1097             */
1098            public com.liferay.portlet.social.service.SocialActivityLocalService getSocialActivityLocalService() {
1099                    return socialActivityLocalService;
1100            }
1101    
1102            /**
1103             * Sets the social activity local service.
1104             *
1105             * @param socialActivityLocalService the social activity local service
1106             */
1107            public void setSocialActivityLocalService(
1108                    com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService) {
1109                    this.socialActivityLocalService = socialActivityLocalService;
1110            }
1111    
1112            /**
1113             * Returns the social activity persistence.
1114             *
1115             * @return the social activity persistence
1116             */
1117            public SocialActivityPersistence getSocialActivityPersistence() {
1118                    return socialActivityPersistence;
1119            }
1120    
1121            /**
1122             * Sets the social activity persistence.
1123             *
1124             * @param socialActivityPersistence the social activity persistence
1125             */
1126            public void setSocialActivityPersistence(
1127                    SocialActivityPersistence socialActivityPersistence) {
1128                    this.socialActivityPersistence = socialActivityPersistence;
1129            }
1130    
1131            /**
1132             * Returns the social activity finder.
1133             *
1134             * @return the social activity finder
1135             */
1136            public SocialActivityFinder getSocialActivityFinder() {
1137                    return socialActivityFinder;
1138            }
1139    
1140            /**
1141             * Sets the social activity finder.
1142             *
1143             * @param socialActivityFinder the social activity finder
1144             */
1145            public void setSocialActivityFinder(
1146                    SocialActivityFinder socialActivityFinder) {
1147                    this.socialActivityFinder = socialActivityFinder;
1148            }
1149    
1150            /**
1151             * Returns the social activity counter local service.
1152             *
1153             * @return the social activity counter local service
1154             */
1155            public com.liferay.portlet.social.service.SocialActivityCounterLocalService getSocialActivityCounterLocalService() {
1156                    return socialActivityCounterLocalService;
1157            }
1158    
1159            /**
1160             * Sets the social activity counter local service.
1161             *
1162             * @param socialActivityCounterLocalService the social activity counter local service
1163             */
1164            public void setSocialActivityCounterLocalService(
1165                    com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService) {
1166                    this.socialActivityCounterLocalService = socialActivityCounterLocalService;
1167            }
1168    
1169            /**
1170             * Returns the social activity counter persistence.
1171             *
1172             * @return the social activity counter persistence
1173             */
1174            public SocialActivityCounterPersistence getSocialActivityCounterPersistence() {
1175                    return socialActivityCounterPersistence;
1176            }
1177    
1178            /**
1179             * Sets the social activity counter persistence.
1180             *
1181             * @param socialActivityCounterPersistence the social activity counter persistence
1182             */
1183            public void setSocialActivityCounterPersistence(
1184                    SocialActivityCounterPersistence socialActivityCounterPersistence) {
1185                    this.socialActivityCounterPersistence = socialActivityCounterPersistence;
1186            }
1187    
1188            /**
1189             * Returns the social activity counter finder.
1190             *
1191             * @return the social activity counter finder
1192             */
1193            public SocialActivityCounterFinder getSocialActivityCounterFinder() {
1194                    return socialActivityCounterFinder;
1195            }
1196    
1197            /**
1198             * Sets the social activity counter finder.
1199             *
1200             * @param socialActivityCounterFinder the social activity counter finder
1201             */
1202            public void setSocialActivityCounterFinder(
1203                    SocialActivityCounterFinder socialActivityCounterFinder) {
1204                    this.socialActivityCounterFinder = socialActivityCounterFinder;
1205            }
1206    
1207            /**
1208             * Returns the trash entry local service.
1209             *
1210             * @return the trash entry local service
1211             */
1212            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1213                    return trashEntryLocalService;
1214            }
1215    
1216            /**
1217             * Sets the trash entry local service.
1218             *
1219             * @param trashEntryLocalService the trash entry local service
1220             */
1221            public void setTrashEntryLocalService(
1222                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1223                    this.trashEntryLocalService = trashEntryLocalService;
1224            }
1225    
1226            /**
1227             * Returns the trash entry remote service.
1228             *
1229             * @return the trash entry remote service
1230             */
1231            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1232                    return trashEntryService;
1233            }
1234    
1235            /**
1236             * Sets the trash entry remote service.
1237             *
1238             * @param trashEntryService the trash entry remote service
1239             */
1240            public void setTrashEntryService(
1241                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1242                    this.trashEntryService = trashEntryService;
1243            }
1244    
1245            /**
1246             * Returns the trash entry persistence.
1247             *
1248             * @return the trash entry persistence
1249             */
1250            public TrashEntryPersistence getTrashEntryPersistence() {
1251                    return trashEntryPersistence;
1252            }
1253    
1254            /**
1255             * Sets the trash entry persistence.
1256             *
1257             * @param trashEntryPersistence the trash entry persistence
1258             */
1259            public void setTrashEntryPersistence(
1260                    TrashEntryPersistence trashEntryPersistence) {
1261                    this.trashEntryPersistence = trashEntryPersistence;
1262            }
1263    
1264            public void afterPropertiesSet() {
1265            }
1266    
1267            public void destroy() {
1268            }
1269    
1270            /**
1271             * Returns the Spring bean ID for this bean.
1272             *
1273             * @return the Spring bean ID for this bean
1274             */
1275            @Override
1276            public String getBeanIdentifier() {
1277                    return _beanIdentifier;
1278            }
1279    
1280            /**
1281             * Sets the Spring bean ID for this bean.
1282             *
1283             * @param beanIdentifier the Spring bean ID for this bean
1284             */
1285            @Override
1286            public void setBeanIdentifier(String beanIdentifier) {
1287                    _beanIdentifier = beanIdentifier;
1288            }
1289    
1290            protected Class<?> getModelClass() {
1291                    return BlogsEntry.class;
1292            }
1293    
1294            protected String getModelClassName() {
1295                    return BlogsEntry.class.getName();
1296            }
1297    
1298            /**
1299             * Performs an SQL query.
1300             *
1301             * @param sql the sql query
1302             */
1303            protected void runSQL(String sql) throws SystemException {
1304                    try {
1305                            DataSource dataSource = blogsEntryPersistence.getDataSource();
1306    
1307                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1308                                            sql, new int[0]);
1309    
1310                            sqlUpdate.update();
1311                    }
1312                    catch (Exception e) {
1313                            throw new SystemException(e);
1314                    }
1315            }
1316    
1317            @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryLocalService.class)
1318            protected com.liferay.portlet.blogs.service.BlogsEntryLocalService blogsEntryLocalService;
1319            @BeanReference(type = com.liferay.portlet.blogs.service.BlogsEntryService.class)
1320            protected com.liferay.portlet.blogs.service.BlogsEntryService blogsEntryService;
1321            @BeanReference(type = BlogsEntryPersistence.class)
1322            protected BlogsEntryPersistence blogsEntryPersistence;
1323            @BeanReference(type = BlogsEntryFinder.class)
1324            protected BlogsEntryFinder blogsEntryFinder;
1325            @BeanReference(type = com.liferay.portlet.blogs.service.BlogsStatsUserLocalService.class)
1326            protected com.liferay.portlet.blogs.service.BlogsStatsUserLocalService blogsStatsUserLocalService;
1327            @BeanReference(type = BlogsStatsUserPersistence.class)
1328            protected BlogsStatsUserPersistence blogsStatsUserPersistence;
1329            @BeanReference(type = BlogsStatsUserFinder.class)
1330            protected BlogsStatsUserFinder blogsStatsUserFinder;
1331            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
1332            protected com.liferay.counter.service.CounterLocalService counterLocalService;
1333            @BeanReference(type = com.liferay.portal.service.CompanyLocalService.class)
1334            protected com.liferay.portal.service.CompanyLocalService companyLocalService;
1335            @BeanReference(type = com.liferay.portal.service.CompanyService.class)
1336            protected com.liferay.portal.service.CompanyService companyService;
1337            @BeanReference(type = CompanyPersistence.class)
1338            protected CompanyPersistence companyPersistence;
1339            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
1340            protected com.liferay.portal.service.GroupLocalService groupLocalService;
1341            @BeanReference(type = com.liferay.portal.service.GroupService.class)
1342            protected com.liferay.portal.service.GroupService groupService;
1343            @BeanReference(type = GroupPersistence.class)
1344            protected GroupPersistence groupPersistence;
1345            @BeanReference(type = GroupFinder.class)
1346            protected GroupFinder groupFinder;
1347            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
1348            protected com.liferay.portal.service.ImageLocalService imageLocalService;
1349            @BeanReference(type = com.liferay.portal.service.ImageService.class)
1350            protected com.liferay.portal.service.ImageService imageService;
1351            @BeanReference(type = ImagePersistence.class)
1352            protected ImagePersistence imagePersistence;
1353            @BeanReference(type = com.liferay.portal.service.OrganizationLocalService.class)
1354            protected com.liferay.portal.service.OrganizationLocalService organizationLocalService;
1355            @BeanReference(type = com.liferay.portal.service.OrganizationService.class)
1356            protected com.liferay.portal.service.OrganizationService organizationService;
1357            @BeanReference(type = OrganizationPersistence.class)
1358            protected OrganizationPersistence organizationPersistence;
1359            @BeanReference(type = OrganizationFinder.class)
1360            protected OrganizationFinder organizationFinder;
1361            @BeanReference(type = com.liferay.portal.service.PortletPreferencesLocalService.class)
1362            protected com.liferay.portal.service.PortletPreferencesLocalService portletPreferencesLocalService;
1363            @BeanReference(type = com.liferay.portal.service.PortletPreferencesService.class)
1364            protected com.liferay.portal.service.PortletPreferencesService portletPreferencesService;
1365            @BeanReference(type = PortletPreferencesPersistence.class)
1366            protected PortletPreferencesPersistence portletPreferencesPersistence;
1367            @BeanReference(type = PortletPreferencesFinder.class)
1368            protected PortletPreferencesFinder portletPreferencesFinder;
1369            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
1370            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
1371            @BeanReference(type = com.liferay.portal.service.SubscriptionLocalService.class)
1372            protected com.liferay.portal.service.SubscriptionLocalService subscriptionLocalService;
1373            @BeanReference(type = SubscriptionPersistence.class)
1374            protected SubscriptionPersistence subscriptionPersistence;
1375            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
1376            protected com.liferay.portal.service.UserLocalService userLocalService;
1377            @BeanReference(type = com.liferay.portal.service.UserService.class)
1378            protected com.liferay.portal.service.UserService userService;
1379            @BeanReference(type = UserPersistence.class)
1380            protected UserPersistence userPersistence;
1381            @BeanReference(type = UserFinder.class)
1382            protected UserFinder userFinder;
1383            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
1384            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
1385            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
1386            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
1387            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
1388            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
1389            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
1390            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
1391            @BeanReference(type = AssetEntryPersistence.class)
1392            protected AssetEntryPersistence assetEntryPersistence;
1393            @BeanReference(type = AssetEntryFinder.class)
1394            protected AssetEntryFinder assetEntryFinder;
1395            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
1396            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
1397            @BeanReference(type = AssetLinkPersistence.class)
1398            protected AssetLinkPersistence assetLinkPersistence;
1399            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
1400            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
1401            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
1402            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
1403            @BeanReference(type = AssetTagPersistence.class)
1404            protected AssetTagPersistence assetTagPersistence;
1405            @BeanReference(type = AssetTagFinder.class)
1406            protected AssetTagFinder assetTagFinder;
1407            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
1408            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
1409            @BeanReference(type = ExpandoRowPersistence.class)
1410            protected ExpandoRowPersistence expandoRowPersistence;
1411            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
1412            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
1413            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
1414            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
1415            @BeanReference(type = MBMessagePersistence.class)
1416            protected MBMessagePersistence mbMessagePersistence;
1417            @BeanReference(type = MBMessageFinder.class)
1418            protected MBMessageFinder mbMessageFinder;
1419            @BeanReference(type = com.liferay.portlet.ratings.service.RatingsStatsLocalService.class)
1420            protected com.liferay.portlet.ratings.service.RatingsStatsLocalService ratingsStatsLocalService;
1421            @BeanReference(type = RatingsStatsPersistence.class)
1422            protected RatingsStatsPersistence ratingsStatsPersistence;
1423            @BeanReference(type = RatingsStatsFinder.class)
1424            protected RatingsStatsFinder ratingsStatsFinder;
1425            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityLocalService.class)
1426            protected com.liferay.portlet.social.service.SocialActivityLocalService socialActivityLocalService;
1427            @BeanReference(type = SocialActivityPersistence.class)
1428            protected SocialActivityPersistence socialActivityPersistence;
1429            @BeanReference(type = SocialActivityFinder.class)
1430            protected SocialActivityFinder socialActivityFinder;
1431            @BeanReference(type = com.liferay.portlet.social.service.SocialActivityCounterLocalService.class)
1432            protected com.liferay.portlet.social.service.SocialActivityCounterLocalService socialActivityCounterLocalService;
1433            @BeanReference(type = SocialActivityCounterPersistence.class)
1434            protected SocialActivityCounterPersistence socialActivityCounterPersistence;
1435            @BeanReference(type = SocialActivityCounterFinder.class)
1436            protected SocialActivityCounterFinder socialActivityCounterFinder;
1437            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
1438            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
1439            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
1440            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
1441            @BeanReference(type = TrashEntryPersistence.class)
1442            protected TrashEntryPersistence trashEntryPersistence;
1443            private String _beanIdentifier;
1444    }