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.documentlibrary.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.db.DB;
020    import com.liferay.portal.kernel.dao.db.DBFactoryUtil;
021    import com.liferay.portal.kernel.dao.jdbc.SqlUpdate;
022    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
023    import com.liferay.portal.kernel.exception.SystemException;
024    import com.liferay.portal.service.BaseServiceImpl;
025    import com.liferay.portal.service.persistence.ClassNamePersistence;
026    import com.liferay.portal.service.persistence.UserFinder;
027    import com.liferay.portal.service.persistence.UserPersistence;
028    import com.liferay.portal.service.persistence.WorkflowDefinitionLinkPersistence;
029    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
030    import com.liferay.portal.util.PortalUtil;
031    
032    import com.liferay.portlet.documentlibrary.model.DLFileEntryType;
033    import com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService;
034    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
035    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
036    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
037    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
038    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
039    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
040    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
041    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
042    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
043    
044    import javax.sql.DataSource;
045    
046    /**
047     * Provides the base implementation for the document library file entry type remote service.
048     *
049     * <p>
050     * 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.documentlibrary.service.impl.DLFileEntryTypeServiceImpl}.
051     * </p>
052     *
053     * @author Brian Wing Shun Chan
054     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryTypeServiceImpl
055     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil
056     * @generated
057     */
058    public abstract class DLFileEntryTypeServiceBaseImpl extends BaseServiceImpl
059            implements DLFileEntryTypeService, IdentifiableBean {
060            /*
061             * NOTE FOR DEVELOPERS:
062             *
063             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryTypeServiceUtil} to access the document library file entry type remote service.
064             */
065    
066            /**
067             * Returns the document library file entry type local service.
068             *
069             * @return the document library file entry type local service
070             */
071            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
072                    return dlFileEntryTypeLocalService;
073            }
074    
075            /**
076             * Sets the document library file entry type local service.
077             *
078             * @param dlFileEntryTypeLocalService the document library file entry type local service
079             */
080            public void setDLFileEntryTypeLocalService(
081                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
082                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
083            }
084    
085            /**
086             * Returns the document library file entry type remote service.
087             *
088             * @return the document library file entry type remote service
089             */
090            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
091                    return dlFileEntryTypeService;
092            }
093    
094            /**
095             * Sets the document library file entry type remote service.
096             *
097             * @param dlFileEntryTypeService the document library file entry type remote service
098             */
099            public void setDLFileEntryTypeService(
100                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
101                    this.dlFileEntryTypeService = dlFileEntryTypeService;
102            }
103    
104            /**
105             * Returns the document library file entry type persistence.
106             *
107             * @return the document library file entry type persistence
108             */
109            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
110                    return dlFileEntryTypePersistence;
111            }
112    
113            /**
114             * Sets the document library file entry type persistence.
115             *
116             * @param dlFileEntryTypePersistence the document library file entry type persistence
117             */
118            public void setDLFileEntryTypePersistence(
119                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
120                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
121            }
122    
123            /**
124             * Returns the document library file entry type finder.
125             *
126             * @return the document library file entry type finder
127             */
128            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
129                    return dlFileEntryTypeFinder;
130            }
131    
132            /**
133             * Sets the document library file entry type finder.
134             *
135             * @param dlFileEntryTypeFinder the document library file entry type finder
136             */
137            public void setDLFileEntryTypeFinder(
138                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
139                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
140            }
141    
142            /**
143             * Returns the counter local service.
144             *
145             * @return the counter local service
146             */
147            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
148                    return counterLocalService;
149            }
150    
151            /**
152             * Sets the counter local service.
153             *
154             * @param counterLocalService the counter local service
155             */
156            public void setCounterLocalService(
157                    com.liferay.counter.service.CounterLocalService counterLocalService) {
158                    this.counterLocalService = counterLocalService;
159            }
160    
161            /**
162             * Returns the class name local service.
163             *
164             * @return the class name local service
165             */
166            public com.liferay.portal.service.ClassNameLocalService getClassNameLocalService() {
167                    return classNameLocalService;
168            }
169    
170            /**
171             * Sets the class name local service.
172             *
173             * @param classNameLocalService the class name local service
174             */
175            public void setClassNameLocalService(
176                    com.liferay.portal.service.ClassNameLocalService classNameLocalService) {
177                    this.classNameLocalService = classNameLocalService;
178            }
179    
180            /**
181             * Returns the class name remote service.
182             *
183             * @return the class name remote service
184             */
185            public com.liferay.portal.service.ClassNameService getClassNameService() {
186                    return classNameService;
187            }
188    
189            /**
190             * Sets the class name remote service.
191             *
192             * @param classNameService the class name remote service
193             */
194            public void setClassNameService(
195                    com.liferay.portal.service.ClassNameService classNameService) {
196                    this.classNameService = classNameService;
197            }
198    
199            /**
200             * Returns the class name persistence.
201             *
202             * @return the class name persistence
203             */
204            public ClassNamePersistence getClassNamePersistence() {
205                    return classNamePersistence;
206            }
207    
208            /**
209             * Sets the class name persistence.
210             *
211             * @param classNamePersistence the class name persistence
212             */
213            public void setClassNamePersistence(
214                    ClassNamePersistence classNamePersistence) {
215                    this.classNamePersistence = classNamePersistence;
216            }
217    
218            /**
219             * Returns the resource local service.
220             *
221             * @return the resource local service
222             */
223            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
224                    return resourceLocalService;
225            }
226    
227            /**
228             * Sets the resource local service.
229             *
230             * @param resourceLocalService the resource local service
231             */
232            public void setResourceLocalService(
233                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
234                    this.resourceLocalService = resourceLocalService;
235            }
236    
237            /**
238             * Returns the user local service.
239             *
240             * @return the user local service
241             */
242            public com.liferay.portal.service.UserLocalService getUserLocalService() {
243                    return userLocalService;
244            }
245    
246            /**
247             * Sets the user local service.
248             *
249             * @param userLocalService the user local service
250             */
251            public void setUserLocalService(
252                    com.liferay.portal.service.UserLocalService userLocalService) {
253                    this.userLocalService = userLocalService;
254            }
255    
256            /**
257             * Returns the user remote service.
258             *
259             * @return the user remote service
260             */
261            public com.liferay.portal.service.UserService getUserService() {
262                    return userService;
263            }
264    
265            /**
266             * Sets the user remote service.
267             *
268             * @param userService the user remote service
269             */
270            public void setUserService(
271                    com.liferay.portal.service.UserService userService) {
272                    this.userService = userService;
273            }
274    
275            /**
276             * Returns the user persistence.
277             *
278             * @return the user persistence
279             */
280            public UserPersistence getUserPersistence() {
281                    return userPersistence;
282            }
283    
284            /**
285             * Sets the user persistence.
286             *
287             * @param userPersistence the user persistence
288             */
289            public void setUserPersistence(UserPersistence userPersistence) {
290                    this.userPersistence = userPersistence;
291            }
292    
293            /**
294             * Returns the user finder.
295             *
296             * @return the user finder
297             */
298            public UserFinder getUserFinder() {
299                    return userFinder;
300            }
301    
302            /**
303             * Sets the user finder.
304             *
305             * @param userFinder the user finder
306             */
307            public void setUserFinder(UserFinder userFinder) {
308                    this.userFinder = userFinder;
309            }
310    
311            /**
312             * Returns the workflow definition link local service.
313             *
314             * @return the workflow definition link local service
315             */
316            public com.liferay.portal.service.WorkflowDefinitionLinkLocalService getWorkflowDefinitionLinkLocalService() {
317                    return workflowDefinitionLinkLocalService;
318            }
319    
320            /**
321             * Sets the workflow definition link local service.
322             *
323             * @param workflowDefinitionLinkLocalService the workflow definition link local service
324             */
325            public void setWorkflowDefinitionLinkLocalService(
326                    com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService) {
327                    this.workflowDefinitionLinkLocalService = workflowDefinitionLinkLocalService;
328            }
329    
330            /**
331             * Returns the workflow definition link persistence.
332             *
333             * @return the workflow definition link persistence
334             */
335            public WorkflowDefinitionLinkPersistence getWorkflowDefinitionLinkPersistence() {
336                    return workflowDefinitionLinkPersistence;
337            }
338    
339            /**
340             * Sets the workflow definition link persistence.
341             *
342             * @param workflowDefinitionLinkPersistence the workflow definition link persistence
343             */
344            public void setWorkflowDefinitionLinkPersistence(
345                    WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence) {
346                    this.workflowDefinitionLinkPersistence = workflowDefinitionLinkPersistence;
347            }
348    
349            /**
350             * Returns the workflow instance link local service.
351             *
352             * @return the workflow instance link local service
353             */
354            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
355                    return workflowInstanceLinkLocalService;
356            }
357    
358            /**
359             * Sets the workflow instance link local service.
360             *
361             * @param workflowInstanceLinkLocalService the workflow instance link local service
362             */
363            public void setWorkflowInstanceLinkLocalService(
364                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
365                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
366            }
367    
368            /**
369             * Returns the workflow instance link persistence.
370             *
371             * @return the workflow instance link persistence
372             */
373            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
374                    return workflowInstanceLinkPersistence;
375            }
376    
377            /**
378             * Sets the workflow instance link persistence.
379             *
380             * @param workflowInstanceLinkPersistence the workflow instance link persistence
381             */
382            public void setWorkflowInstanceLinkPersistence(
383                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
384                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
385            }
386    
387            /**
388             * Returns the d l app helper local service.
389             *
390             * @return the d l app helper local service
391             */
392            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
393                    return dlAppHelperLocalService;
394            }
395    
396            /**
397             * Sets the d l app helper local service.
398             *
399             * @param dlAppHelperLocalService the d l app helper local service
400             */
401            public void setDLAppHelperLocalService(
402                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
403                    this.dlAppHelperLocalService = dlAppHelperLocalService;
404            }
405    
406            /**
407             * Returns the document library file entry local service.
408             *
409             * @return the document library file entry local service
410             */
411            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
412                    return dlFileEntryLocalService;
413            }
414    
415            /**
416             * Sets the document library file entry local service.
417             *
418             * @param dlFileEntryLocalService the document library file entry local service
419             */
420            public void setDLFileEntryLocalService(
421                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
422                    this.dlFileEntryLocalService = dlFileEntryLocalService;
423            }
424    
425            /**
426             * Returns the document library file entry remote service.
427             *
428             * @return the document library file entry remote service
429             */
430            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
431                    return dlFileEntryService;
432            }
433    
434            /**
435             * Sets the document library file entry remote service.
436             *
437             * @param dlFileEntryService the document library file entry remote service
438             */
439            public void setDLFileEntryService(
440                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
441                    this.dlFileEntryService = dlFileEntryService;
442            }
443    
444            /**
445             * Returns the document library file entry persistence.
446             *
447             * @return the document library file entry persistence
448             */
449            public DLFileEntryPersistence getDLFileEntryPersistence() {
450                    return dlFileEntryPersistence;
451            }
452    
453            /**
454             * Sets the document library file entry persistence.
455             *
456             * @param dlFileEntryPersistence the document library file entry persistence
457             */
458            public void setDLFileEntryPersistence(
459                    DLFileEntryPersistence dlFileEntryPersistence) {
460                    this.dlFileEntryPersistence = dlFileEntryPersistence;
461            }
462    
463            /**
464             * Returns the document library file entry finder.
465             *
466             * @return the document library file entry finder
467             */
468            public DLFileEntryFinder getDLFileEntryFinder() {
469                    return dlFileEntryFinder;
470            }
471    
472            /**
473             * Sets the document library file entry finder.
474             *
475             * @param dlFileEntryFinder the document library file entry finder
476             */
477            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
478                    this.dlFileEntryFinder = dlFileEntryFinder;
479            }
480    
481            /**
482             * Returns the d d m structure local service.
483             *
484             * @return the d d m structure local service
485             */
486            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
487                    return ddmStructureLocalService;
488            }
489    
490            /**
491             * Sets the d d m structure local service.
492             *
493             * @param ddmStructureLocalService the d d m structure local service
494             */
495            public void setDDMStructureLocalService(
496                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
497                    this.ddmStructureLocalService = ddmStructureLocalService;
498            }
499    
500            /**
501             * Returns the d d m structure remote service.
502             *
503             * @return the d d m structure remote service
504             */
505            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
506                    return ddmStructureService;
507            }
508    
509            /**
510             * Sets the d d m structure remote service.
511             *
512             * @param ddmStructureService the d d m structure remote service
513             */
514            public void setDDMStructureService(
515                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
516                    this.ddmStructureService = ddmStructureService;
517            }
518    
519            /**
520             * Returns the d d m structure persistence.
521             *
522             * @return the d d m structure persistence
523             */
524            public DDMStructurePersistence getDDMStructurePersistence() {
525                    return ddmStructurePersistence;
526            }
527    
528            /**
529             * Sets the d d m structure persistence.
530             *
531             * @param ddmStructurePersistence the d d m structure persistence
532             */
533            public void setDDMStructurePersistence(
534                    DDMStructurePersistence ddmStructurePersistence) {
535                    this.ddmStructurePersistence = ddmStructurePersistence;
536            }
537    
538            /**
539             * Returns the d d m structure finder.
540             *
541             * @return the d d m structure finder
542             */
543            public DDMStructureFinder getDDMStructureFinder() {
544                    return ddmStructureFinder;
545            }
546    
547            /**
548             * Sets the d d m structure finder.
549             *
550             * @param ddmStructureFinder the d d m structure finder
551             */
552            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
553                    this.ddmStructureFinder = ddmStructureFinder;
554            }
555    
556            /**
557             * Returns the document library file version local service.
558             *
559             * @return the document library file version local service
560             */
561            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
562                    return dlFileVersionLocalService;
563            }
564    
565            /**
566             * Sets the document library file version local service.
567             *
568             * @param dlFileVersionLocalService the document library file version local service
569             */
570            public void setDLFileVersionLocalService(
571                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
572                    this.dlFileVersionLocalService = dlFileVersionLocalService;
573            }
574    
575            /**
576             * Returns the document library file version remote service.
577             *
578             * @return the document library file version remote service
579             */
580            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
581                    return dlFileVersionService;
582            }
583    
584            /**
585             * Sets the document library file version remote service.
586             *
587             * @param dlFileVersionService the document library file version remote service
588             */
589            public void setDLFileVersionService(
590                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
591                    this.dlFileVersionService = dlFileVersionService;
592            }
593    
594            /**
595             * Returns the document library file version persistence.
596             *
597             * @return the document library file version persistence
598             */
599            public DLFileVersionPersistence getDLFileVersionPersistence() {
600                    return dlFileVersionPersistence;
601            }
602    
603            /**
604             * Sets the document library file version persistence.
605             *
606             * @param dlFileVersionPersistence the document library file version persistence
607             */
608            public void setDLFileVersionPersistence(
609                    DLFileVersionPersistence dlFileVersionPersistence) {
610                    this.dlFileVersionPersistence = dlFileVersionPersistence;
611            }
612    
613            /**
614             * Returns the document library folder local service.
615             *
616             * @return the document library folder local service
617             */
618            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
619                    return dlFolderLocalService;
620            }
621    
622            /**
623             * Sets the document library folder local service.
624             *
625             * @param dlFolderLocalService the document library folder local service
626             */
627            public void setDLFolderLocalService(
628                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
629                    this.dlFolderLocalService = dlFolderLocalService;
630            }
631    
632            /**
633             * Returns the document library folder remote service.
634             *
635             * @return the document library folder remote service
636             */
637            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
638                    return dlFolderService;
639            }
640    
641            /**
642             * Sets the document library folder remote service.
643             *
644             * @param dlFolderService the document library folder remote service
645             */
646            public void setDLFolderService(
647                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
648                    this.dlFolderService = dlFolderService;
649            }
650    
651            /**
652             * Returns the document library folder persistence.
653             *
654             * @return the document library folder persistence
655             */
656            public DLFolderPersistence getDLFolderPersistence() {
657                    return dlFolderPersistence;
658            }
659    
660            /**
661             * Sets the document library folder persistence.
662             *
663             * @param dlFolderPersistence the document library folder persistence
664             */
665            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
666                    this.dlFolderPersistence = dlFolderPersistence;
667            }
668    
669            /**
670             * Returns the document library folder finder.
671             *
672             * @return the document library folder finder
673             */
674            public DLFolderFinder getDLFolderFinder() {
675                    return dlFolderFinder;
676            }
677    
678            /**
679             * Sets the document library folder finder.
680             *
681             * @param dlFolderFinder the document library folder finder
682             */
683            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
684                    this.dlFolderFinder = dlFolderFinder;
685            }
686    
687            public void afterPropertiesSet() {
688            }
689    
690            public void destroy() {
691            }
692    
693            /**
694             * Returns the Spring bean ID for this bean.
695             *
696             * @return the Spring bean ID for this bean
697             */
698            @Override
699            public String getBeanIdentifier() {
700                    return _beanIdentifier;
701            }
702    
703            /**
704             * Sets the Spring bean ID for this bean.
705             *
706             * @param beanIdentifier the Spring bean ID for this bean
707             */
708            @Override
709            public void setBeanIdentifier(String beanIdentifier) {
710                    _beanIdentifier = beanIdentifier;
711            }
712    
713            protected Class<?> getModelClass() {
714                    return DLFileEntryType.class;
715            }
716    
717            protected String getModelClassName() {
718                    return DLFileEntryType.class.getName();
719            }
720    
721            /**
722             * Performs a SQL query.
723             *
724             * @param sql the sql query
725             */
726            protected void runSQL(String sql) {
727                    try {
728                            DataSource dataSource = dlFileEntryTypePersistence.getDataSource();
729    
730                            DB db = DBFactoryUtil.getDB();
731    
732                            sql = db.buildSQL(sql);
733                            sql = PortalUtil.transformSQL(sql);
734    
735                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
736                                            sql, new int[0]);
737    
738                            sqlUpdate.update();
739                    }
740                    catch (Exception e) {
741                            throw new SystemException(e);
742                    }
743            }
744    
745            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
746            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
747            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
748            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
749            @BeanReference(type = DLFileEntryTypePersistence.class)
750            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
751            @BeanReference(type = DLFileEntryTypeFinder.class)
752            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
753            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
754            protected com.liferay.counter.service.CounterLocalService counterLocalService;
755            @BeanReference(type = com.liferay.portal.service.ClassNameLocalService.class)
756            protected com.liferay.portal.service.ClassNameLocalService classNameLocalService;
757            @BeanReference(type = com.liferay.portal.service.ClassNameService.class)
758            protected com.liferay.portal.service.ClassNameService classNameService;
759            @BeanReference(type = ClassNamePersistence.class)
760            protected ClassNamePersistence classNamePersistence;
761            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
762            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
763            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
764            protected com.liferay.portal.service.UserLocalService userLocalService;
765            @BeanReference(type = com.liferay.portal.service.UserService.class)
766            protected com.liferay.portal.service.UserService userService;
767            @BeanReference(type = UserPersistence.class)
768            protected UserPersistence userPersistence;
769            @BeanReference(type = UserFinder.class)
770            protected UserFinder userFinder;
771            @BeanReference(type = com.liferay.portal.service.WorkflowDefinitionLinkLocalService.class)
772            protected com.liferay.portal.service.WorkflowDefinitionLinkLocalService workflowDefinitionLinkLocalService;
773            @BeanReference(type = WorkflowDefinitionLinkPersistence.class)
774            protected WorkflowDefinitionLinkPersistence workflowDefinitionLinkPersistence;
775            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
776            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
777            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
778            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
779            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
780            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
781            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
782            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
783            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
784            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
785            @BeanReference(type = DLFileEntryPersistence.class)
786            protected DLFileEntryPersistence dlFileEntryPersistence;
787            @BeanReference(type = DLFileEntryFinder.class)
788            protected DLFileEntryFinder dlFileEntryFinder;
789            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
790            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
791            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
792            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
793            @BeanReference(type = DDMStructurePersistence.class)
794            protected DDMStructurePersistence ddmStructurePersistence;
795            @BeanReference(type = DDMStructureFinder.class)
796            protected DDMStructureFinder ddmStructureFinder;
797            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
798            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
799            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
800            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
801            @BeanReference(type = DLFileVersionPersistence.class)
802            protected DLFileVersionPersistence dlFileVersionPersistence;
803            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
804            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
805            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
806            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
807            @BeanReference(type = DLFolderPersistence.class)
808            protected DLFolderPersistence dlFolderPersistence;
809            @BeanReference(type = DLFolderFinder.class)
810            protected DLFolderFinder dlFolderFinder;
811            private String _beanIdentifier;
812    }