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.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.jdbc.SqlUpdate;
020    import com.liferay.portal.kernel.dao.jdbc.SqlUpdateFactoryUtil;
021    import com.liferay.portal.kernel.dao.orm.DynamicQuery;
022    import com.liferay.portal.kernel.dao.orm.DynamicQueryFactoryUtil;
023    import com.liferay.portal.kernel.dao.orm.Projection;
024    import com.liferay.portal.kernel.exception.PortalException;
025    import com.liferay.portal.kernel.exception.SystemException;
026    import com.liferay.portal.kernel.search.Indexable;
027    import com.liferay.portal.kernel.search.IndexableType;
028    import com.liferay.portal.kernel.util.OrderByComparator;
029    import com.liferay.portal.model.PersistedModel;
030    import com.liferay.portal.service.BaseLocalServiceImpl;
031    import com.liferay.portal.service.PersistedModelLocalServiceRegistry;
032    import com.liferay.portal.service.persistence.GroupFinder;
033    import com.liferay.portal.service.persistence.GroupPersistence;
034    import com.liferay.portal.service.persistence.ImagePersistence;
035    import com.liferay.portal.service.persistence.LockFinder;
036    import com.liferay.portal.service.persistence.LockPersistence;
037    import com.liferay.portal.service.persistence.RepositoryPersistence;
038    import com.liferay.portal.service.persistence.UserFinder;
039    import com.liferay.portal.service.persistence.UserPersistence;
040    import com.liferay.portal.service.persistence.WebDAVPropsPersistence;
041    import com.liferay.portal.service.persistence.WorkflowInstanceLinkPersistence;
042    
043    import com.liferay.portlet.asset.service.persistence.AssetCategoryFinder;
044    import com.liferay.portlet.asset.service.persistence.AssetCategoryPersistence;
045    import com.liferay.portlet.asset.service.persistence.AssetEntryFinder;
046    import com.liferay.portlet.asset.service.persistence.AssetEntryPersistence;
047    import com.liferay.portlet.asset.service.persistence.AssetLinkPersistence;
048    import com.liferay.portlet.asset.service.persistence.AssetTagFinder;
049    import com.liferay.portlet.asset.service.persistence.AssetTagPersistence;
050    import com.liferay.portlet.documentlibrary.model.DLFileEntry;
051    import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
052    import com.liferay.portlet.documentlibrary.service.persistence.DLContentPersistence;
053    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
054    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
055    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
056    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
057    import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
058    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankFinder;
059    import com.liferay.portlet.documentlibrary.service.persistence.DLFileRankPersistence;
060    import com.liferay.portlet.documentlibrary.service.persistence.DLFileShortcutPersistence;
061    import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
062    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
063    import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
064    import com.liferay.portlet.documentlibrary.service.persistence.DLSyncEventPersistence;
065    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
066    import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
067    import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
068    import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
069    import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
070    import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
071    import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
072    
073    import java.io.Serializable;
074    
075    import java.util.List;
076    
077    import javax.sql.DataSource;
078    
079    /**
080     * Provides the base implementation for the document library file entry local service.
081     *
082     * <p>
083     * 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.DLFileEntryLocalServiceImpl}.
084     * </p>
085     *
086     * @author Brian Wing Shun Chan
087     * @see com.liferay.portlet.documentlibrary.service.impl.DLFileEntryLocalServiceImpl
088     * @see com.liferay.portlet.documentlibrary.service.DLFileEntryLocalServiceUtil
089     * @generated
090     */
091    public abstract class DLFileEntryLocalServiceBaseImpl
092            extends BaseLocalServiceImpl implements DLFileEntryLocalService,
093                    IdentifiableBean {
094            /*
095             * NOTE FOR DEVELOPERS:
096             *
097             * Never modify or reference this class directly. Always use {@link com.liferay.portlet.documentlibrary.service.DLFileEntryLocalServiceUtil} to access the document library file entry local service.
098             */
099    
100            /**
101             * Adds the document library file entry to the database. Also notifies the appropriate model listeners.
102             *
103             * @param dlFileEntry the document library file entry
104             * @return the document library file entry that was added
105             * @throws SystemException if a system exception occurred
106             */
107            @Indexable(type = IndexableType.REINDEX)
108            @Override
109            public DLFileEntry addDLFileEntry(DLFileEntry dlFileEntry)
110                    throws SystemException {
111                    dlFileEntry.setNew(true);
112    
113                    return dlFileEntryPersistence.update(dlFileEntry);
114            }
115    
116            /**
117             * Creates a new document library file entry with the primary key. Does not add the document library file entry to the database.
118             *
119             * @param fileEntryId the primary key for the new document library file entry
120             * @return the new document library file entry
121             */
122            @Override
123            public DLFileEntry createDLFileEntry(long fileEntryId) {
124                    return dlFileEntryPersistence.create(fileEntryId);
125            }
126    
127            /**
128             * Deletes the document library file entry with the primary key from the database. Also notifies the appropriate model listeners.
129             *
130             * @param fileEntryId the primary key of the document library file entry
131             * @return the document library file entry that was removed
132             * @throws PortalException if a document library file entry with the primary key could not be found
133             * @throws SystemException if a system exception occurred
134             */
135            @Indexable(type = IndexableType.DELETE)
136            @Override
137            public DLFileEntry deleteDLFileEntry(long fileEntryId)
138                    throws PortalException, SystemException {
139                    return dlFileEntryPersistence.remove(fileEntryId);
140            }
141    
142            /**
143             * Deletes the document library file entry from the database. Also notifies the appropriate model listeners.
144             *
145             * @param dlFileEntry the document library file entry
146             * @return the document library file entry that was removed
147             * @throws SystemException if a system exception occurred
148             */
149            @Indexable(type = IndexableType.DELETE)
150            @Override
151            public DLFileEntry deleteDLFileEntry(DLFileEntry dlFileEntry)
152                    throws SystemException {
153                    return dlFileEntryPersistence.remove(dlFileEntry);
154            }
155    
156            @Override
157            public DynamicQuery dynamicQuery() {
158                    Class<?> clazz = getClass();
159    
160                    return DynamicQueryFactoryUtil.forClass(DLFileEntry.class,
161                            clazz.getClassLoader());
162            }
163    
164            /**
165             * Performs a dynamic query on the database and returns the matching rows.
166             *
167             * @param dynamicQuery the dynamic query
168             * @return the matching rows
169             * @throws SystemException if a system exception occurred
170             */
171            @Override
172            @SuppressWarnings("rawtypes")
173            public List dynamicQuery(DynamicQuery dynamicQuery)
174                    throws SystemException {
175                    return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery);
176            }
177    
178            /**
179             * Performs a dynamic query on the database and returns a range of the matching rows.
180             *
181             * <p>
182             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
183             * </p>
184             *
185             * @param dynamicQuery the dynamic query
186             * @param start the lower bound of the range of model instances
187             * @param end the upper bound of the range of model instances (not inclusive)
188             * @return the range of matching rows
189             * @throws SystemException if a system exception occurred
190             */
191            @Override
192            @SuppressWarnings("rawtypes")
193            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
194                    throws SystemException {
195                    return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
196                            end);
197            }
198    
199            /**
200             * Performs a dynamic query on the database and returns an ordered range of the matching rows.
201             *
202             * <p>
203             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
204             * </p>
205             *
206             * @param dynamicQuery the dynamic query
207             * @param start the lower bound of the range of model instances
208             * @param end the upper bound of the range of model instances (not inclusive)
209             * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
210             * @return the ordered range of matching rows
211             * @throws SystemException if a system exception occurred
212             */
213            @Override
214            @SuppressWarnings("rawtypes")
215            public List dynamicQuery(DynamicQuery dynamicQuery, int start, int end,
216                    OrderByComparator orderByComparator) throws SystemException {
217                    return dlFileEntryPersistence.findWithDynamicQuery(dynamicQuery, start,
218                            end, orderByComparator);
219            }
220    
221            /**
222             * Returns the number of rows that match the dynamic query.
223             *
224             * @param dynamicQuery the dynamic query
225             * @return the number of rows that match the dynamic query
226             * @throws SystemException if a system exception occurred
227             */
228            @Override
229            public long dynamicQueryCount(DynamicQuery dynamicQuery)
230                    throws SystemException {
231                    return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery);
232            }
233    
234            /**
235             * Returns the number of rows that match the dynamic query.
236             *
237             * @param dynamicQuery the dynamic query
238             * @param projection the projection to apply to the query
239             * @return the number of rows that match the dynamic query
240             * @throws SystemException if a system exception occurred
241             */
242            @Override
243            public long dynamicQueryCount(DynamicQuery dynamicQuery,
244                    Projection projection) throws SystemException {
245                    return dlFileEntryPersistence.countWithDynamicQuery(dynamicQuery,
246                            projection);
247            }
248    
249            @Override
250            public DLFileEntry fetchDLFileEntry(long fileEntryId)
251                    throws SystemException {
252                    return dlFileEntryPersistence.fetchByPrimaryKey(fileEntryId);
253            }
254    
255            /**
256             * Returns the document library file entry with the matching UUID and company.
257             *
258             * @param uuid the document library file entry's UUID
259             * @param  companyId the primary key of the company
260             * @return the matching document library file entry, or <code>null</code> if a matching document library file entry could not be found
261             * @throws SystemException if a system exception occurred
262             */
263            @Override
264            public DLFileEntry fetchDLFileEntryByUuidAndCompanyId(String uuid,
265                    long companyId) throws SystemException {
266                    return dlFileEntryPersistence.fetchByUuid_C_First(uuid, companyId, null);
267            }
268    
269            /**
270             * Returns the document library file entry matching the UUID and group.
271             *
272             * @param uuid the document library file entry's UUID
273             * @param groupId the primary key of the group
274             * @return the matching document library file entry, or <code>null</code> if a matching document library file entry could not be found
275             * @throws SystemException if a system exception occurred
276             */
277            @Override
278            public DLFileEntry fetchDLFileEntryByUuidAndGroupId(String uuid,
279                    long groupId) throws SystemException {
280                    return dlFileEntryPersistence.fetchByUUID_G(uuid, groupId);
281            }
282    
283            /**
284             * Returns the document library file entry with the primary key.
285             *
286             * @param fileEntryId the primary key of the document library file entry
287             * @return the document library file entry
288             * @throws PortalException if a document library file entry with the primary key could not be found
289             * @throws SystemException if a system exception occurred
290             */
291            @Override
292            public DLFileEntry getDLFileEntry(long fileEntryId)
293                    throws PortalException, SystemException {
294                    return dlFileEntryPersistence.findByPrimaryKey(fileEntryId);
295            }
296    
297            @Override
298            public PersistedModel getPersistedModel(Serializable primaryKeyObj)
299                    throws PortalException, SystemException {
300                    return dlFileEntryPersistence.findByPrimaryKey(primaryKeyObj);
301            }
302    
303            /**
304             * Returns the document library file entry with the matching UUID and company.
305             *
306             * @param uuid the document library file entry's UUID
307             * @param  companyId the primary key of the company
308             * @return the matching document library file entry
309             * @throws PortalException if a matching document library file entry could not be found
310             * @throws SystemException if a system exception occurred
311             */
312            @Override
313            public DLFileEntry getDLFileEntryByUuidAndCompanyId(String uuid,
314                    long companyId) throws PortalException, SystemException {
315                    return dlFileEntryPersistence.findByUuid_C_First(uuid, companyId, null);
316            }
317    
318            /**
319             * Returns the document library file entry matching the UUID and group.
320             *
321             * @param uuid the document library file entry's UUID
322             * @param groupId the primary key of the group
323             * @return the matching document library file entry
324             * @throws PortalException if a matching document library file entry could not be found
325             * @throws SystemException if a system exception occurred
326             */
327            @Override
328            public DLFileEntry getDLFileEntryByUuidAndGroupId(String uuid, long groupId)
329                    throws PortalException, SystemException {
330                    return dlFileEntryPersistence.findByUUID_G(uuid, groupId);
331            }
332    
333            /**
334             * Returns a range of all the document library file entries.
335             *
336             * <p>
337             * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.documentlibrary.model.impl.DLFileEntryModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
338             * </p>
339             *
340             * @param start the lower bound of the range of document library file entries
341             * @param end the upper bound of the range of document library file entries (not inclusive)
342             * @return the range of document library file entries
343             * @throws SystemException if a system exception occurred
344             */
345            @Override
346            public List<DLFileEntry> getDLFileEntries(int start, int end)
347                    throws SystemException {
348                    return dlFileEntryPersistence.findAll(start, end);
349            }
350    
351            /**
352             * Returns the number of document library file entries.
353             *
354             * @return the number of document library file entries
355             * @throws SystemException if a system exception occurred
356             */
357            @Override
358            public int getDLFileEntriesCount() throws SystemException {
359                    return dlFileEntryPersistence.countAll();
360            }
361    
362            /**
363             * Updates the document library file entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
364             *
365             * @param dlFileEntry the document library file entry
366             * @return the document library file entry that was updated
367             * @throws SystemException if a system exception occurred
368             */
369            @Indexable(type = IndexableType.REINDEX)
370            @Override
371            public DLFileEntry updateDLFileEntry(DLFileEntry dlFileEntry)
372                    throws SystemException {
373                    return dlFileEntryPersistence.update(dlFileEntry);
374            }
375    
376            /**
377             * Returns the d l app local service.
378             *
379             * @return the d l app local service
380             */
381            public com.liferay.portlet.documentlibrary.service.DLAppLocalService getDLAppLocalService() {
382                    return dlAppLocalService;
383            }
384    
385            /**
386             * Sets the d l app local service.
387             *
388             * @param dlAppLocalService the d l app local service
389             */
390            public void setDLAppLocalService(
391                    com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService) {
392                    this.dlAppLocalService = dlAppLocalService;
393            }
394    
395            /**
396             * Returns the d l app remote service.
397             *
398             * @return the d l app remote service
399             */
400            public com.liferay.portlet.documentlibrary.service.DLAppService getDLAppService() {
401                    return dlAppService;
402            }
403    
404            /**
405             * Sets the d l app remote service.
406             *
407             * @param dlAppService the d l app remote service
408             */
409            public void setDLAppService(
410                    com.liferay.portlet.documentlibrary.service.DLAppService dlAppService) {
411                    this.dlAppService = dlAppService;
412            }
413    
414            /**
415             * Returns the d l app helper local service.
416             *
417             * @return the d l app helper local service
418             */
419            public com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService getDLAppHelperLocalService() {
420                    return dlAppHelperLocalService;
421            }
422    
423            /**
424             * Sets the d l app helper local service.
425             *
426             * @param dlAppHelperLocalService the d l app helper local service
427             */
428            public void setDLAppHelperLocalService(
429                    com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService) {
430                    this.dlAppHelperLocalService = dlAppHelperLocalService;
431            }
432    
433            /**
434             * Returns the document library content local service.
435             *
436             * @return the document library content local service
437             */
438            public com.liferay.portlet.documentlibrary.service.DLContentLocalService getDLContentLocalService() {
439                    return dlContentLocalService;
440            }
441    
442            /**
443             * Sets the document library content local service.
444             *
445             * @param dlContentLocalService the document library content local service
446             */
447            public void setDLContentLocalService(
448                    com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService) {
449                    this.dlContentLocalService = dlContentLocalService;
450            }
451    
452            /**
453             * Returns the document library content persistence.
454             *
455             * @return the document library content persistence
456             */
457            public DLContentPersistence getDLContentPersistence() {
458                    return dlContentPersistence;
459            }
460    
461            /**
462             * Sets the document library content persistence.
463             *
464             * @param dlContentPersistence the document library content persistence
465             */
466            public void setDLContentPersistence(
467                    DLContentPersistence dlContentPersistence) {
468                    this.dlContentPersistence = dlContentPersistence;
469            }
470    
471            /**
472             * Returns the document library file entry local service.
473             *
474             * @return the document library file entry local service
475             */
476            public com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService getDLFileEntryLocalService() {
477                    return dlFileEntryLocalService;
478            }
479    
480            /**
481             * Sets the document library file entry local service.
482             *
483             * @param dlFileEntryLocalService the document library file entry local service
484             */
485            public void setDLFileEntryLocalService(
486                    com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService) {
487                    this.dlFileEntryLocalService = dlFileEntryLocalService;
488            }
489    
490            /**
491             * Returns the document library file entry remote service.
492             *
493             * @return the document library file entry remote service
494             */
495            public com.liferay.portlet.documentlibrary.service.DLFileEntryService getDLFileEntryService() {
496                    return dlFileEntryService;
497            }
498    
499            /**
500             * Sets the document library file entry remote service.
501             *
502             * @param dlFileEntryService the document library file entry remote service
503             */
504            public void setDLFileEntryService(
505                    com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService) {
506                    this.dlFileEntryService = dlFileEntryService;
507            }
508    
509            /**
510             * Returns the document library file entry persistence.
511             *
512             * @return the document library file entry persistence
513             */
514            public DLFileEntryPersistence getDLFileEntryPersistence() {
515                    return dlFileEntryPersistence;
516            }
517    
518            /**
519             * Sets the document library file entry persistence.
520             *
521             * @param dlFileEntryPersistence the document library file entry persistence
522             */
523            public void setDLFileEntryPersistence(
524                    DLFileEntryPersistence dlFileEntryPersistence) {
525                    this.dlFileEntryPersistence = dlFileEntryPersistence;
526            }
527    
528            /**
529             * Returns the document library file entry finder.
530             *
531             * @return the document library file entry finder
532             */
533            public DLFileEntryFinder getDLFileEntryFinder() {
534                    return dlFileEntryFinder;
535            }
536    
537            /**
538             * Sets the document library file entry finder.
539             *
540             * @param dlFileEntryFinder the document library file entry finder
541             */
542            public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
543                    this.dlFileEntryFinder = dlFileEntryFinder;
544            }
545    
546            /**
547             * Returns the document library file entry metadata local service.
548             *
549             * @return the document library file entry metadata local service
550             */
551            public com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService getDLFileEntryMetadataLocalService() {
552                    return dlFileEntryMetadataLocalService;
553            }
554    
555            /**
556             * Sets the document library file entry metadata local service.
557             *
558             * @param dlFileEntryMetadataLocalService the document library file entry metadata local service
559             */
560            public void setDLFileEntryMetadataLocalService(
561                    com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService) {
562                    this.dlFileEntryMetadataLocalService = dlFileEntryMetadataLocalService;
563            }
564    
565            /**
566             * Returns the document library file entry metadata persistence.
567             *
568             * @return the document library file entry metadata persistence
569             */
570            public DLFileEntryMetadataPersistence getDLFileEntryMetadataPersistence() {
571                    return dlFileEntryMetadataPersistence;
572            }
573    
574            /**
575             * Sets the document library file entry metadata persistence.
576             *
577             * @param dlFileEntryMetadataPersistence the document library file entry metadata persistence
578             */
579            public void setDLFileEntryMetadataPersistence(
580                    DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence) {
581                    this.dlFileEntryMetadataPersistence = dlFileEntryMetadataPersistence;
582            }
583    
584            /**
585             * Returns the document library file entry type local service.
586             *
587             * @return the document library file entry type local service
588             */
589            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService getDLFileEntryTypeLocalService() {
590                    return dlFileEntryTypeLocalService;
591            }
592    
593            /**
594             * Sets the document library file entry type local service.
595             *
596             * @param dlFileEntryTypeLocalService the document library file entry type local service
597             */
598            public void setDLFileEntryTypeLocalService(
599                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
600                    this.dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
601            }
602    
603            /**
604             * Returns the document library file entry type remote service.
605             *
606             * @return the document library file entry type remote service
607             */
608            public com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService getDLFileEntryTypeService() {
609                    return dlFileEntryTypeService;
610            }
611    
612            /**
613             * Sets the document library file entry type remote service.
614             *
615             * @param dlFileEntryTypeService the document library file entry type remote service
616             */
617            public void setDLFileEntryTypeService(
618                    com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService) {
619                    this.dlFileEntryTypeService = dlFileEntryTypeService;
620            }
621    
622            /**
623             * Returns the document library file entry type persistence.
624             *
625             * @return the document library file entry type persistence
626             */
627            public DLFileEntryTypePersistence getDLFileEntryTypePersistence() {
628                    return dlFileEntryTypePersistence;
629            }
630    
631            /**
632             * Sets the document library file entry type persistence.
633             *
634             * @param dlFileEntryTypePersistence the document library file entry type persistence
635             */
636            public void setDLFileEntryTypePersistence(
637                    DLFileEntryTypePersistence dlFileEntryTypePersistence) {
638                    this.dlFileEntryTypePersistence = dlFileEntryTypePersistence;
639            }
640    
641            /**
642             * Returns the document library file entry type finder.
643             *
644             * @return the document library file entry type finder
645             */
646            public DLFileEntryTypeFinder getDLFileEntryTypeFinder() {
647                    return dlFileEntryTypeFinder;
648            }
649    
650            /**
651             * Sets the document library file entry type finder.
652             *
653             * @param dlFileEntryTypeFinder the document library file entry type finder
654             */
655            public void setDLFileEntryTypeFinder(
656                    DLFileEntryTypeFinder dlFileEntryTypeFinder) {
657                    this.dlFileEntryTypeFinder = dlFileEntryTypeFinder;
658            }
659    
660            /**
661             * Returns the document library file rank local service.
662             *
663             * @return the document library file rank local service
664             */
665            public com.liferay.portlet.documentlibrary.service.DLFileRankLocalService getDLFileRankLocalService() {
666                    return dlFileRankLocalService;
667            }
668    
669            /**
670             * Sets the document library file rank local service.
671             *
672             * @param dlFileRankLocalService the document library file rank local service
673             */
674            public void setDLFileRankLocalService(
675                    com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService) {
676                    this.dlFileRankLocalService = dlFileRankLocalService;
677            }
678    
679            /**
680             * Returns the document library file rank persistence.
681             *
682             * @return the document library file rank persistence
683             */
684            public DLFileRankPersistence getDLFileRankPersistence() {
685                    return dlFileRankPersistence;
686            }
687    
688            /**
689             * Sets the document library file rank persistence.
690             *
691             * @param dlFileRankPersistence the document library file rank persistence
692             */
693            public void setDLFileRankPersistence(
694                    DLFileRankPersistence dlFileRankPersistence) {
695                    this.dlFileRankPersistence = dlFileRankPersistence;
696            }
697    
698            /**
699             * Returns the document library file rank finder.
700             *
701             * @return the document library file rank finder
702             */
703            public DLFileRankFinder getDLFileRankFinder() {
704                    return dlFileRankFinder;
705            }
706    
707            /**
708             * Sets the document library file rank finder.
709             *
710             * @param dlFileRankFinder the document library file rank finder
711             */
712            public void setDLFileRankFinder(DLFileRankFinder dlFileRankFinder) {
713                    this.dlFileRankFinder = dlFileRankFinder;
714            }
715    
716            /**
717             * Returns the document library file shortcut local service.
718             *
719             * @return the document library file shortcut local service
720             */
721            public com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService getDLFileShortcutLocalService() {
722                    return dlFileShortcutLocalService;
723            }
724    
725            /**
726             * Sets the document library file shortcut local service.
727             *
728             * @param dlFileShortcutLocalService the document library file shortcut local service
729             */
730            public void setDLFileShortcutLocalService(
731                    com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService) {
732                    this.dlFileShortcutLocalService = dlFileShortcutLocalService;
733            }
734    
735            /**
736             * Returns the document library file shortcut remote service.
737             *
738             * @return the document library file shortcut remote service
739             */
740            public com.liferay.portlet.documentlibrary.service.DLFileShortcutService getDLFileShortcutService() {
741                    return dlFileShortcutService;
742            }
743    
744            /**
745             * Sets the document library file shortcut remote service.
746             *
747             * @param dlFileShortcutService the document library file shortcut remote service
748             */
749            public void setDLFileShortcutService(
750                    com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService) {
751                    this.dlFileShortcutService = dlFileShortcutService;
752            }
753    
754            /**
755             * Returns the document library file shortcut persistence.
756             *
757             * @return the document library file shortcut persistence
758             */
759            public DLFileShortcutPersistence getDLFileShortcutPersistence() {
760                    return dlFileShortcutPersistence;
761            }
762    
763            /**
764             * Sets the document library file shortcut persistence.
765             *
766             * @param dlFileShortcutPersistence the document library file shortcut persistence
767             */
768            public void setDLFileShortcutPersistence(
769                    DLFileShortcutPersistence dlFileShortcutPersistence) {
770                    this.dlFileShortcutPersistence = dlFileShortcutPersistence;
771            }
772    
773            /**
774             * Returns the document library file version local service.
775             *
776             * @return the document library file version local service
777             */
778            public com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService getDLFileVersionLocalService() {
779                    return dlFileVersionLocalService;
780            }
781    
782            /**
783             * Sets the document library file version local service.
784             *
785             * @param dlFileVersionLocalService the document library file version local service
786             */
787            public void setDLFileVersionLocalService(
788                    com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService) {
789                    this.dlFileVersionLocalService = dlFileVersionLocalService;
790            }
791    
792            /**
793             * Returns the document library file version remote service.
794             *
795             * @return the document library file version remote service
796             */
797            public com.liferay.portlet.documentlibrary.service.DLFileVersionService getDLFileVersionService() {
798                    return dlFileVersionService;
799            }
800    
801            /**
802             * Sets the document library file version remote service.
803             *
804             * @param dlFileVersionService the document library file version remote service
805             */
806            public void setDLFileVersionService(
807                    com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService) {
808                    this.dlFileVersionService = dlFileVersionService;
809            }
810    
811            /**
812             * Returns the document library file version persistence.
813             *
814             * @return the document library file version persistence
815             */
816            public DLFileVersionPersistence getDLFileVersionPersistence() {
817                    return dlFileVersionPersistence;
818            }
819    
820            /**
821             * Sets the document library file version persistence.
822             *
823             * @param dlFileVersionPersistence the document library file version persistence
824             */
825            public void setDLFileVersionPersistence(
826                    DLFileVersionPersistence dlFileVersionPersistence) {
827                    this.dlFileVersionPersistence = dlFileVersionPersistence;
828            }
829    
830            /**
831             * Returns the document library folder local service.
832             *
833             * @return the document library folder local service
834             */
835            public com.liferay.portlet.documentlibrary.service.DLFolderLocalService getDLFolderLocalService() {
836                    return dlFolderLocalService;
837            }
838    
839            /**
840             * Sets the document library folder local service.
841             *
842             * @param dlFolderLocalService the document library folder local service
843             */
844            public void setDLFolderLocalService(
845                    com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService) {
846                    this.dlFolderLocalService = dlFolderLocalService;
847            }
848    
849            /**
850             * Returns the document library folder remote service.
851             *
852             * @return the document library folder remote service
853             */
854            public com.liferay.portlet.documentlibrary.service.DLFolderService getDLFolderService() {
855                    return dlFolderService;
856            }
857    
858            /**
859             * Sets the document library folder remote service.
860             *
861             * @param dlFolderService the document library folder remote service
862             */
863            public void setDLFolderService(
864                    com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService) {
865                    this.dlFolderService = dlFolderService;
866            }
867    
868            /**
869             * Returns the document library folder persistence.
870             *
871             * @return the document library folder persistence
872             */
873            public DLFolderPersistence getDLFolderPersistence() {
874                    return dlFolderPersistence;
875            }
876    
877            /**
878             * Sets the document library folder persistence.
879             *
880             * @param dlFolderPersistence the document library folder persistence
881             */
882            public void setDLFolderPersistence(DLFolderPersistence dlFolderPersistence) {
883                    this.dlFolderPersistence = dlFolderPersistence;
884            }
885    
886            /**
887             * Returns the document library folder finder.
888             *
889             * @return the document library folder finder
890             */
891            public DLFolderFinder getDLFolderFinder() {
892                    return dlFolderFinder;
893            }
894    
895            /**
896             * Sets the document library folder finder.
897             *
898             * @param dlFolderFinder the document library folder finder
899             */
900            public void setDLFolderFinder(DLFolderFinder dlFolderFinder) {
901                    this.dlFolderFinder = dlFolderFinder;
902            }
903    
904            /**
905             * Returns the d l sync event local service.
906             *
907             * @return the d l sync event local service
908             */
909            public com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService getDLSyncEventLocalService() {
910                    return dlSyncEventLocalService;
911            }
912    
913            /**
914             * Sets the d l sync event local service.
915             *
916             * @param dlSyncEventLocalService the d l sync event local service
917             */
918            public void setDLSyncEventLocalService(
919                    com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService) {
920                    this.dlSyncEventLocalService = dlSyncEventLocalService;
921            }
922    
923            /**
924             * Returns the d l sync event persistence.
925             *
926             * @return the d l sync event persistence
927             */
928            public DLSyncEventPersistence getDLSyncEventPersistence() {
929                    return dlSyncEventPersistence;
930            }
931    
932            /**
933             * Sets the d l sync event persistence.
934             *
935             * @param dlSyncEventPersistence the d l sync event persistence
936             */
937            public void setDLSyncEventPersistence(
938                    DLSyncEventPersistence dlSyncEventPersistence) {
939                    this.dlSyncEventPersistence = dlSyncEventPersistence;
940            }
941    
942            /**
943             * Returns the counter local service.
944             *
945             * @return the counter local service
946             */
947            public com.liferay.counter.service.CounterLocalService getCounterLocalService() {
948                    return counterLocalService;
949            }
950    
951            /**
952             * Sets the counter local service.
953             *
954             * @param counterLocalService the counter local service
955             */
956            public void setCounterLocalService(
957                    com.liferay.counter.service.CounterLocalService counterLocalService) {
958                    this.counterLocalService = counterLocalService;
959            }
960    
961            /**
962             * Returns the group local service.
963             *
964             * @return the group local service
965             */
966            public com.liferay.portal.service.GroupLocalService getGroupLocalService() {
967                    return groupLocalService;
968            }
969    
970            /**
971             * Sets the group local service.
972             *
973             * @param groupLocalService the group local service
974             */
975            public void setGroupLocalService(
976                    com.liferay.portal.service.GroupLocalService groupLocalService) {
977                    this.groupLocalService = groupLocalService;
978            }
979    
980            /**
981             * Returns the group remote service.
982             *
983             * @return the group remote service
984             */
985            public com.liferay.portal.service.GroupService getGroupService() {
986                    return groupService;
987            }
988    
989            /**
990             * Sets the group remote service.
991             *
992             * @param groupService the group remote service
993             */
994            public void setGroupService(
995                    com.liferay.portal.service.GroupService groupService) {
996                    this.groupService = groupService;
997            }
998    
999            /**
1000             * Returns the group persistence.
1001             *
1002             * @return the group persistence
1003             */
1004            public GroupPersistence getGroupPersistence() {
1005                    return groupPersistence;
1006            }
1007    
1008            /**
1009             * Sets the group persistence.
1010             *
1011             * @param groupPersistence the group persistence
1012             */
1013            public void setGroupPersistence(GroupPersistence groupPersistence) {
1014                    this.groupPersistence = groupPersistence;
1015            }
1016    
1017            /**
1018             * Returns the group finder.
1019             *
1020             * @return the group finder
1021             */
1022            public GroupFinder getGroupFinder() {
1023                    return groupFinder;
1024            }
1025    
1026            /**
1027             * Sets the group finder.
1028             *
1029             * @param groupFinder the group finder
1030             */
1031            public void setGroupFinder(GroupFinder groupFinder) {
1032                    this.groupFinder = groupFinder;
1033            }
1034    
1035            /**
1036             * Returns the image local service.
1037             *
1038             * @return the image local service
1039             */
1040            public com.liferay.portal.service.ImageLocalService getImageLocalService() {
1041                    return imageLocalService;
1042            }
1043    
1044            /**
1045             * Sets the image local service.
1046             *
1047             * @param imageLocalService the image local service
1048             */
1049            public void setImageLocalService(
1050                    com.liferay.portal.service.ImageLocalService imageLocalService) {
1051                    this.imageLocalService = imageLocalService;
1052            }
1053    
1054            /**
1055             * Returns the image remote service.
1056             *
1057             * @return the image remote service
1058             */
1059            public com.liferay.portal.service.ImageService getImageService() {
1060                    return imageService;
1061            }
1062    
1063            /**
1064             * Sets the image remote service.
1065             *
1066             * @param imageService the image remote service
1067             */
1068            public void setImageService(
1069                    com.liferay.portal.service.ImageService imageService) {
1070                    this.imageService = imageService;
1071            }
1072    
1073            /**
1074             * Returns the image persistence.
1075             *
1076             * @return the image persistence
1077             */
1078            public ImagePersistence getImagePersistence() {
1079                    return imagePersistence;
1080            }
1081    
1082            /**
1083             * Sets the image persistence.
1084             *
1085             * @param imagePersistence the image persistence
1086             */
1087            public void setImagePersistence(ImagePersistence imagePersistence) {
1088                    this.imagePersistence = imagePersistence;
1089            }
1090    
1091            /**
1092             * Returns the lock local service.
1093             *
1094             * @return the lock local service
1095             */
1096            public com.liferay.portal.service.LockLocalService getLockLocalService() {
1097                    return lockLocalService;
1098            }
1099    
1100            /**
1101             * Sets the lock local service.
1102             *
1103             * @param lockLocalService the lock local service
1104             */
1105            public void setLockLocalService(
1106                    com.liferay.portal.service.LockLocalService lockLocalService) {
1107                    this.lockLocalService = lockLocalService;
1108            }
1109    
1110            /**
1111             * Returns the lock persistence.
1112             *
1113             * @return the lock persistence
1114             */
1115            public LockPersistence getLockPersistence() {
1116                    return lockPersistence;
1117            }
1118    
1119            /**
1120             * Sets the lock persistence.
1121             *
1122             * @param lockPersistence the lock persistence
1123             */
1124            public void setLockPersistence(LockPersistence lockPersistence) {
1125                    this.lockPersistence = lockPersistence;
1126            }
1127    
1128            /**
1129             * Returns the lock finder.
1130             *
1131             * @return the lock finder
1132             */
1133            public LockFinder getLockFinder() {
1134                    return lockFinder;
1135            }
1136    
1137            /**
1138             * Sets the lock finder.
1139             *
1140             * @param lockFinder the lock finder
1141             */
1142            public void setLockFinder(LockFinder lockFinder) {
1143                    this.lockFinder = lockFinder;
1144            }
1145    
1146            /**
1147             * Returns the repository local service.
1148             *
1149             * @return the repository local service
1150             */
1151            public com.liferay.portal.service.RepositoryLocalService getRepositoryLocalService() {
1152                    return repositoryLocalService;
1153            }
1154    
1155            /**
1156             * Sets the repository local service.
1157             *
1158             * @param repositoryLocalService the repository local service
1159             */
1160            public void setRepositoryLocalService(
1161                    com.liferay.portal.service.RepositoryLocalService repositoryLocalService) {
1162                    this.repositoryLocalService = repositoryLocalService;
1163            }
1164    
1165            /**
1166             * Returns the repository remote service.
1167             *
1168             * @return the repository remote service
1169             */
1170            public com.liferay.portal.service.RepositoryService getRepositoryService() {
1171                    return repositoryService;
1172            }
1173    
1174            /**
1175             * Sets the repository remote service.
1176             *
1177             * @param repositoryService the repository remote service
1178             */
1179            public void setRepositoryService(
1180                    com.liferay.portal.service.RepositoryService repositoryService) {
1181                    this.repositoryService = repositoryService;
1182            }
1183    
1184            /**
1185             * Returns the repository persistence.
1186             *
1187             * @return the repository persistence
1188             */
1189            public RepositoryPersistence getRepositoryPersistence() {
1190                    return repositoryPersistence;
1191            }
1192    
1193            /**
1194             * Sets the repository persistence.
1195             *
1196             * @param repositoryPersistence the repository persistence
1197             */
1198            public void setRepositoryPersistence(
1199                    RepositoryPersistence repositoryPersistence) {
1200                    this.repositoryPersistence = repositoryPersistence;
1201            }
1202    
1203            /**
1204             * Returns the resource local service.
1205             *
1206             * @return the resource local service
1207             */
1208            public com.liferay.portal.service.ResourceLocalService getResourceLocalService() {
1209                    return resourceLocalService;
1210            }
1211    
1212            /**
1213             * Sets the resource local service.
1214             *
1215             * @param resourceLocalService the resource local service
1216             */
1217            public void setResourceLocalService(
1218                    com.liferay.portal.service.ResourceLocalService resourceLocalService) {
1219                    this.resourceLocalService = resourceLocalService;
1220            }
1221    
1222            /**
1223             * Returns the user local service.
1224             *
1225             * @return the user local service
1226             */
1227            public com.liferay.portal.service.UserLocalService getUserLocalService() {
1228                    return userLocalService;
1229            }
1230    
1231            /**
1232             * Sets the user local service.
1233             *
1234             * @param userLocalService the user local service
1235             */
1236            public void setUserLocalService(
1237                    com.liferay.portal.service.UserLocalService userLocalService) {
1238                    this.userLocalService = userLocalService;
1239            }
1240    
1241            /**
1242             * Returns the user remote service.
1243             *
1244             * @return the user remote service
1245             */
1246            public com.liferay.portal.service.UserService getUserService() {
1247                    return userService;
1248            }
1249    
1250            /**
1251             * Sets the user remote service.
1252             *
1253             * @param userService the user remote service
1254             */
1255            public void setUserService(
1256                    com.liferay.portal.service.UserService userService) {
1257                    this.userService = userService;
1258            }
1259    
1260            /**
1261             * Returns the user persistence.
1262             *
1263             * @return the user persistence
1264             */
1265            public UserPersistence getUserPersistence() {
1266                    return userPersistence;
1267            }
1268    
1269            /**
1270             * Sets the user persistence.
1271             *
1272             * @param userPersistence the user persistence
1273             */
1274            public void setUserPersistence(UserPersistence userPersistence) {
1275                    this.userPersistence = userPersistence;
1276            }
1277    
1278            /**
1279             * Returns the user finder.
1280             *
1281             * @return the user finder
1282             */
1283            public UserFinder getUserFinder() {
1284                    return userFinder;
1285            }
1286    
1287            /**
1288             * Sets the user finder.
1289             *
1290             * @param userFinder the user finder
1291             */
1292            public void setUserFinder(UserFinder userFinder) {
1293                    this.userFinder = userFinder;
1294            }
1295    
1296            /**
1297             * Returns the web d a v props local service.
1298             *
1299             * @return the web d a v props local service
1300             */
1301            public com.liferay.portal.service.WebDAVPropsLocalService getWebDAVPropsLocalService() {
1302                    return webDAVPropsLocalService;
1303            }
1304    
1305            /**
1306             * Sets the web d a v props local service.
1307             *
1308             * @param webDAVPropsLocalService the web d a v props local service
1309             */
1310            public void setWebDAVPropsLocalService(
1311                    com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService) {
1312                    this.webDAVPropsLocalService = webDAVPropsLocalService;
1313            }
1314    
1315            /**
1316             * Returns the web d a v props persistence.
1317             *
1318             * @return the web d a v props persistence
1319             */
1320            public WebDAVPropsPersistence getWebDAVPropsPersistence() {
1321                    return webDAVPropsPersistence;
1322            }
1323    
1324            /**
1325             * Sets the web d a v props persistence.
1326             *
1327             * @param webDAVPropsPersistence the web d a v props persistence
1328             */
1329            public void setWebDAVPropsPersistence(
1330                    WebDAVPropsPersistence webDAVPropsPersistence) {
1331                    this.webDAVPropsPersistence = webDAVPropsPersistence;
1332            }
1333    
1334            /**
1335             * Returns the workflow instance link local service.
1336             *
1337             * @return the workflow instance link local service
1338             */
1339            public com.liferay.portal.service.WorkflowInstanceLinkLocalService getWorkflowInstanceLinkLocalService() {
1340                    return workflowInstanceLinkLocalService;
1341            }
1342    
1343            /**
1344             * Sets the workflow instance link local service.
1345             *
1346             * @param workflowInstanceLinkLocalService the workflow instance link local service
1347             */
1348            public void setWorkflowInstanceLinkLocalService(
1349                    com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService) {
1350                    this.workflowInstanceLinkLocalService = workflowInstanceLinkLocalService;
1351            }
1352    
1353            /**
1354             * Returns the workflow instance link persistence.
1355             *
1356             * @return the workflow instance link persistence
1357             */
1358            public WorkflowInstanceLinkPersistence getWorkflowInstanceLinkPersistence() {
1359                    return workflowInstanceLinkPersistence;
1360            }
1361    
1362            /**
1363             * Sets the workflow instance link persistence.
1364             *
1365             * @param workflowInstanceLinkPersistence the workflow instance link persistence
1366             */
1367            public void setWorkflowInstanceLinkPersistence(
1368                    WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence) {
1369                    this.workflowInstanceLinkPersistence = workflowInstanceLinkPersistence;
1370            }
1371    
1372            /**
1373             * Returns the asset category local service.
1374             *
1375             * @return the asset category local service
1376             */
1377            public com.liferay.portlet.asset.service.AssetCategoryLocalService getAssetCategoryLocalService() {
1378                    return assetCategoryLocalService;
1379            }
1380    
1381            /**
1382             * Sets the asset category local service.
1383             *
1384             * @param assetCategoryLocalService the asset category local service
1385             */
1386            public void setAssetCategoryLocalService(
1387                    com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService) {
1388                    this.assetCategoryLocalService = assetCategoryLocalService;
1389            }
1390    
1391            /**
1392             * Returns the asset category remote service.
1393             *
1394             * @return the asset category remote service
1395             */
1396            public com.liferay.portlet.asset.service.AssetCategoryService getAssetCategoryService() {
1397                    return assetCategoryService;
1398            }
1399    
1400            /**
1401             * Sets the asset category remote service.
1402             *
1403             * @param assetCategoryService the asset category remote service
1404             */
1405            public void setAssetCategoryService(
1406                    com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService) {
1407                    this.assetCategoryService = assetCategoryService;
1408            }
1409    
1410            /**
1411             * Returns the asset category persistence.
1412             *
1413             * @return the asset category persistence
1414             */
1415            public AssetCategoryPersistence getAssetCategoryPersistence() {
1416                    return assetCategoryPersistence;
1417            }
1418    
1419            /**
1420             * Sets the asset category persistence.
1421             *
1422             * @param assetCategoryPersistence the asset category persistence
1423             */
1424            public void setAssetCategoryPersistence(
1425                    AssetCategoryPersistence assetCategoryPersistence) {
1426                    this.assetCategoryPersistence = assetCategoryPersistence;
1427            }
1428    
1429            /**
1430             * Returns the asset category finder.
1431             *
1432             * @return the asset category finder
1433             */
1434            public AssetCategoryFinder getAssetCategoryFinder() {
1435                    return assetCategoryFinder;
1436            }
1437    
1438            /**
1439             * Sets the asset category finder.
1440             *
1441             * @param assetCategoryFinder the asset category finder
1442             */
1443            public void setAssetCategoryFinder(AssetCategoryFinder assetCategoryFinder) {
1444                    this.assetCategoryFinder = assetCategoryFinder;
1445            }
1446    
1447            /**
1448             * Returns the asset entry local service.
1449             *
1450             * @return the asset entry local service
1451             */
1452            public com.liferay.portlet.asset.service.AssetEntryLocalService getAssetEntryLocalService() {
1453                    return assetEntryLocalService;
1454            }
1455    
1456            /**
1457             * Sets the asset entry local service.
1458             *
1459             * @param assetEntryLocalService the asset entry local service
1460             */
1461            public void setAssetEntryLocalService(
1462                    com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService) {
1463                    this.assetEntryLocalService = assetEntryLocalService;
1464            }
1465    
1466            /**
1467             * Returns the asset entry remote service.
1468             *
1469             * @return the asset entry remote service
1470             */
1471            public com.liferay.portlet.asset.service.AssetEntryService getAssetEntryService() {
1472                    return assetEntryService;
1473            }
1474    
1475            /**
1476             * Sets the asset entry remote service.
1477             *
1478             * @param assetEntryService the asset entry remote service
1479             */
1480            public void setAssetEntryService(
1481                    com.liferay.portlet.asset.service.AssetEntryService assetEntryService) {
1482                    this.assetEntryService = assetEntryService;
1483            }
1484    
1485            /**
1486             * Returns the asset entry persistence.
1487             *
1488             * @return the asset entry persistence
1489             */
1490            public AssetEntryPersistence getAssetEntryPersistence() {
1491                    return assetEntryPersistence;
1492            }
1493    
1494            /**
1495             * Sets the asset entry persistence.
1496             *
1497             * @param assetEntryPersistence the asset entry persistence
1498             */
1499            public void setAssetEntryPersistence(
1500                    AssetEntryPersistence assetEntryPersistence) {
1501                    this.assetEntryPersistence = assetEntryPersistence;
1502            }
1503    
1504            /**
1505             * Returns the asset entry finder.
1506             *
1507             * @return the asset entry finder
1508             */
1509            public AssetEntryFinder getAssetEntryFinder() {
1510                    return assetEntryFinder;
1511            }
1512    
1513            /**
1514             * Sets the asset entry finder.
1515             *
1516             * @param assetEntryFinder the asset entry finder
1517             */
1518            public void setAssetEntryFinder(AssetEntryFinder assetEntryFinder) {
1519                    this.assetEntryFinder = assetEntryFinder;
1520            }
1521    
1522            /**
1523             * Returns the asset link local service.
1524             *
1525             * @return the asset link local service
1526             */
1527            public com.liferay.portlet.asset.service.AssetLinkLocalService getAssetLinkLocalService() {
1528                    return assetLinkLocalService;
1529            }
1530    
1531            /**
1532             * Sets the asset link local service.
1533             *
1534             * @param assetLinkLocalService the asset link local service
1535             */
1536            public void setAssetLinkLocalService(
1537                    com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService) {
1538                    this.assetLinkLocalService = assetLinkLocalService;
1539            }
1540    
1541            /**
1542             * Returns the asset link persistence.
1543             *
1544             * @return the asset link persistence
1545             */
1546            public AssetLinkPersistence getAssetLinkPersistence() {
1547                    return assetLinkPersistence;
1548            }
1549    
1550            /**
1551             * Sets the asset link persistence.
1552             *
1553             * @param assetLinkPersistence the asset link persistence
1554             */
1555            public void setAssetLinkPersistence(
1556                    AssetLinkPersistence assetLinkPersistence) {
1557                    this.assetLinkPersistence = assetLinkPersistence;
1558            }
1559    
1560            /**
1561             * Returns the asset tag local service.
1562             *
1563             * @return the asset tag local service
1564             */
1565            public com.liferay.portlet.asset.service.AssetTagLocalService getAssetTagLocalService() {
1566                    return assetTagLocalService;
1567            }
1568    
1569            /**
1570             * Sets the asset tag local service.
1571             *
1572             * @param assetTagLocalService the asset tag local service
1573             */
1574            public void setAssetTagLocalService(
1575                    com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService) {
1576                    this.assetTagLocalService = assetTagLocalService;
1577            }
1578    
1579            /**
1580             * Returns the asset tag remote service.
1581             *
1582             * @return the asset tag remote service
1583             */
1584            public com.liferay.portlet.asset.service.AssetTagService getAssetTagService() {
1585                    return assetTagService;
1586            }
1587    
1588            /**
1589             * Sets the asset tag remote service.
1590             *
1591             * @param assetTagService the asset tag remote service
1592             */
1593            public void setAssetTagService(
1594                    com.liferay.portlet.asset.service.AssetTagService assetTagService) {
1595                    this.assetTagService = assetTagService;
1596            }
1597    
1598            /**
1599             * Returns the asset tag persistence.
1600             *
1601             * @return the asset tag persistence
1602             */
1603            public AssetTagPersistence getAssetTagPersistence() {
1604                    return assetTagPersistence;
1605            }
1606    
1607            /**
1608             * Sets the asset tag persistence.
1609             *
1610             * @param assetTagPersistence the asset tag persistence
1611             */
1612            public void setAssetTagPersistence(AssetTagPersistence assetTagPersistence) {
1613                    this.assetTagPersistence = assetTagPersistence;
1614            }
1615    
1616            /**
1617             * Returns the asset tag finder.
1618             *
1619             * @return the asset tag finder
1620             */
1621            public AssetTagFinder getAssetTagFinder() {
1622                    return assetTagFinder;
1623            }
1624    
1625            /**
1626             * Sets the asset tag finder.
1627             *
1628             * @param assetTagFinder the asset tag finder
1629             */
1630            public void setAssetTagFinder(AssetTagFinder assetTagFinder) {
1631                    this.assetTagFinder = assetTagFinder;
1632            }
1633    
1634            /**
1635             * Returns the d d m structure local service.
1636             *
1637             * @return the d d m structure local service
1638             */
1639            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
1640                    return ddmStructureLocalService;
1641            }
1642    
1643            /**
1644             * Sets the d d m structure local service.
1645             *
1646             * @param ddmStructureLocalService the d d m structure local service
1647             */
1648            public void setDDMStructureLocalService(
1649                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
1650                    this.ddmStructureLocalService = ddmStructureLocalService;
1651            }
1652    
1653            /**
1654             * Returns the d d m structure remote service.
1655             *
1656             * @return the d d m structure remote service
1657             */
1658            public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
1659                    return ddmStructureService;
1660            }
1661    
1662            /**
1663             * Sets the d d m structure remote service.
1664             *
1665             * @param ddmStructureService the d d m structure remote service
1666             */
1667            public void setDDMStructureService(
1668                    com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
1669                    this.ddmStructureService = ddmStructureService;
1670            }
1671    
1672            /**
1673             * Returns the d d m structure persistence.
1674             *
1675             * @return the d d m structure persistence
1676             */
1677            public DDMStructurePersistence getDDMStructurePersistence() {
1678                    return ddmStructurePersistence;
1679            }
1680    
1681            /**
1682             * Sets the d d m structure persistence.
1683             *
1684             * @param ddmStructurePersistence the d d m structure persistence
1685             */
1686            public void setDDMStructurePersistence(
1687                    DDMStructurePersistence ddmStructurePersistence) {
1688                    this.ddmStructurePersistence = ddmStructurePersistence;
1689            }
1690    
1691            /**
1692             * Returns the d d m structure finder.
1693             *
1694             * @return the d d m structure finder
1695             */
1696            public DDMStructureFinder getDDMStructureFinder() {
1697                    return ddmStructureFinder;
1698            }
1699    
1700            /**
1701             * Sets the d d m structure finder.
1702             *
1703             * @param ddmStructureFinder the d d m structure finder
1704             */
1705            public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
1706                    this.ddmStructureFinder = ddmStructureFinder;
1707            }
1708    
1709            /**
1710             * Returns the expando row local service.
1711             *
1712             * @return the expando row local service
1713             */
1714            public com.liferay.portlet.expando.service.ExpandoRowLocalService getExpandoRowLocalService() {
1715                    return expandoRowLocalService;
1716            }
1717    
1718            /**
1719             * Sets the expando row local service.
1720             *
1721             * @param expandoRowLocalService the expando row local service
1722             */
1723            public void setExpandoRowLocalService(
1724                    com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService) {
1725                    this.expandoRowLocalService = expandoRowLocalService;
1726            }
1727    
1728            /**
1729             * Returns the expando row persistence.
1730             *
1731             * @return the expando row persistence
1732             */
1733            public ExpandoRowPersistence getExpandoRowPersistence() {
1734                    return expandoRowPersistence;
1735            }
1736    
1737            /**
1738             * Sets the expando row persistence.
1739             *
1740             * @param expandoRowPersistence the expando row persistence
1741             */
1742            public void setExpandoRowPersistence(
1743                    ExpandoRowPersistence expandoRowPersistence) {
1744                    this.expandoRowPersistence = expandoRowPersistence;
1745            }
1746    
1747            /**
1748             * Returns the expando table local service.
1749             *
1750             * @return the expando table local service
1751             */
1752            public com.liferay.portlet.expando.service.ExpandoTableLocalService getExpandoTableLocalService() {
1753                    return expandoTableLocalService;
1754            }
1755    
1756            /**
1757             * Sets the expando table local service.
1758             *
1759             * @param expandoTableLocalService the expando table local service
1760             */
1761            public void setExpandoTableLocalService(
1762                    com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService) {
1763                    this.expandoTableLocalService = expandoTableLocalService;
1764            }
1765    
1766            /**
1767             * Returns the expando table persistence.
1768             *
1769             * @return the expando table persistence
1770             */
1771            public ExpandoTablePersistence getExpandoTablePersistence() {
1772                    return expandoTablePersistence;
1773            }
1774    
1775            /**
1776             * Sets the expando table persistence.
1777             *
1778             * @param expandoTablePersistence the expando table persistence
1779             */
1780            public void setExpandoTablePersistence(
1781                    ExpandoTablePersistence expandoTablePersistence) {
1782                    this.expandoTablePersistence = expandoTablePersistence;
1783            }
1784    
1785            /**
1786             * Returns the message-boards message local service.
1787             *
1788             * @return the message-boards message local service
1789             */
1790            public com.liferay.portlet.messageboards.service.MBMessageLocalService getMBMessageLocalService() {
1791                    return mbMessageLocalService;
1792            }
1793    
1794            /**
1795             * Sets the message-boards message local service.
1796             *
1797             * @param mbMessageLocalService the message-boards message local service
1798             */
1799            public void setMBMessageLocalService(
1800                    com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService) {
1801                    this.mbMessageLocalService = mbMessageLocalService;
1802            }
1803    
1804            /**
1805             * Returns the message-boards message remote service.
1806             *
1807             * @return the message-boards message remote service
1808             */
1809            public com.liferay.portlet.messageboards.service.MBMessageService getMBMessageService() {
1810                    return mbMessageService;
1811            }
1812    
1813            /**
1814             * Sets the message-boards message remote service.
1815             *
1816             * @param mbMessageService the message-boards message remote service
1817             */
1818            public void setMBMessageService(
1819                    com.liferay.portlet.messageboards.service.MBMessageService mbMessageService) {
1820                    this.mbMessageService = mbMessageService;
1821            }
1822    
1823            /**
1824             * Returns the message-boards message persistence.
1825             *
1826             * @return the message-boards message persistence
1827             */
1828            public MBMessagePersistence getMBMessagePersistence() {
1829                    return mbMessagePersistence;
1830            }
1831    
1832            /**
1833             * Sets the message-boards message persistence.
1834             *
1835             * @param mbMessagePersistence the message-boards message persistence
1836             */
1837            public void setMBMessagePersistence(
1838                    MBMessagePersistence mbMessagePersistence) {
1839                    this.mbMessagePersistence = mbMessagePersistence;
1840            }
1841    
1842            /**
1843             * Returns the message-boards message finder.
1844             *
1845             * @return the message-boards message finder
1846             */
1847            public MBMessageFinder getMBMessageFinder() {
1848                    return mbMessageFinder;
1849            }
1850    
1851            /**
1852             * Sets the message-boards message finder.
1853             *
1854             * @param mbMessageFinder the message-boards message finder
1855             */
1856            public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
1857                    this.mbMessageFinder = mbMessageFinder;
1858            }
1859    
1860            /**
1861             * Returns the trash entry local service.
1862             *
1863             * @return the trash entry local service
1864             */
1865            public com.liferay.portlet.trash.service.TrashEntryLocalService getTrashEntryLocalService() {
1866                    return trashEntryLocalService;
1867            }
1868    
1869            /**
1870             * Sets the trash entry local service.
1871             *
1872             * @param trashEntryLocalService the trash entry local service
1873             */
1874            public void setTrashEntryLocalService(
1875                    com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService) {
1876                    this.trashEntryLocalService = trashEntryLocalService;
1877            }
1878    
1879            /**
1880             * Returns the trash entry remote service.
1881             *
1882             * @return the trash entry remote service
1883             */
1884            public com.liferay.portlet.trash.service.TrashEntryService getTrashEntryService() {
1885                    return trashEntryService;
1886            }
1887    
1888            /**
1889             * Sets the trash entry remote service.
1890             *
1891             * @param trashEntryService the trash entry remote service
1892             */
1893            public void setTrashEntryService(
1894                    com.liferay.portlet.trash.service.TrashEntryService trashEntryService) {
1895                    this.trashEntryService = trashEntryService;
1896            }
1897    
1898            /**
1899             * Returns the trash entry persistence.
1900             *
1901             * @return the trash entry persistence
1902             */
1903            public TrashEntryPersistence getTrashEntryPersistence() {
1904                    return trashEntryPersistence;
1905            }
1906    
1907            /**
1908             * Sets the trash entry persistence.
1909             *
1910             * @param trashEntryPersistence the trash entry persistence
1911             */
1912            public void setTrashEntryPersistence(
1913                    TrashEntryPersistence trashEntryPersistence) {
1914                    this.trashEntryPersistence = trashEntryPersistence;
1915            }
1916    
1917            public void afterPropertiesSet() {
1918                    persistedModelLocalServiceRegistry.register("com.liferay.portlet.documentlibrary.model.DLFileEntry",
1919                            dlFileEntryLocalService);
1920            }
1921    
1922            public void destroy() {
1923                    persistedModelLocalServiceRegistry.unregister(
1924                            "com.liferay.portlet.documentlibrary.model.DLFileEntry");
1925            }
1926    
1927            /**
1928             * Returns the Spring bean ID for this bean.
1929             *
1930             * @return the Spring bean ID for this bean
1931             */
1932            @Override
1933            public String getBeanIdentifier() {
1934                    return _beanIdentifier;
1935            }
1936    
1937            /**
1938             * Sets the Spring bean ID for this bean.
1939             *
1940             * @param beanIdentifier the Spring bean ID for this bean
1941             */
1942            @Override
1943            public void setBeanIdentifier(String beanIdentifier) {
1944                    _beanIdentifier = beanIdentifier;
1945            }
1946    
1947            protected Class<?> getModelClass() {
1948                    return DLFileEntry.class;
1949            }
1950    
1951            protected String getModelClassName() {
1952                    return DLFileEntry.class.getName();
1953            }
1954    
1955            /**
1956             * Performs an SQL query.
1957             *
1958             * @param sql the sql query
1959             */
1960            protected void runSQL(String sql) throws SystemException {
1961                    try {
1962                            DataSource dataSource = dlFileEntryPersistence.getDataSource();
1963    
1964                            SqlUpdate sqlUpdate = SqlUpdateFactoryUtil.getSqlUpdate(dataSource,
1965                                            sql, new int[0]);
1966    
1967                            sqlUpdate.update();
1968                    }
1969                    catch (Exception e) {
1970                            throw new SystemException(e);
1971                    }
1972            }
1973    
1974            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppLocalService.class)
1975            protected com.liferay.portlet.documentlibrary.service.DLAppLocalService dlAppLocalService;
1976            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppService.class)
1977            protected com.liferay.portlet.documentlibrary.service.DLAppService dlAppService;
1978            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
1979            protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
1980            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLContentLocalService.class)
1981            protected com.liferay.portlet.documentlibrary.service.DLContentLocalService dlContentLocalService;
1982            @BeanReference(type = DLContentPersistence.class)
1983            protected DLContentPersistence dlContentPersistence;
1984            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.class)
1985            protected com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService dlFileEntryLocalService;
1986            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryService.class)
1987            protected com.liferay.portlet.documentlibrary.service.DLFileEntryService dlFileEntryService;
1988            @BeanReference(type = DLFileEntryPersistence.class)
1989            protected DLFileEntryPersistence dlFileEntryPersistence;
1990            @BeanReference(type = DLFileEntryFinder.class)
1991            protected DLFileEntryFinder dlFileEntryFinder;
1992            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService.class)
1993            protected com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService;
1994            @BeanReference(type = DLFileEntryMetadataPersistence.class)
1995            protected DLFileEntryMetadataPersistence dlFileEntryMetadataPersistence;
1996            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
1997            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
1998            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
1999            protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService dlFileEntryTypeService;
2000            @BeanReference(type = DLFileEntryTypePersistence.class)
2001            protected DLFileEntryTypePersistence dlFileEntryTypePersistence;
2002            @BeanReference(type = DLFileEntryTypeFinder.class)
2003            protected DLFileEntryTypeFinder dlFileEntryTypeFinder;
2004            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileRankLocalService.class)
2005            protected com.liferay.portlet.documentlibrary.service.DLFileRankLocalService dlFileRankLocalService;
2006            @BeanReference(type = DLFileRankPersistence.class)
2007            protected DLFileRankPersistence dlFileRankPersistence;
2008            @BeanReference(type = DLFileRankFinder.class)
2009            protected DLFileRankFinder dlFileRankFinder;
2010            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService.class)
2011            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutLocalService dlFileShortcutLocalService;
2012            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileShortcutService.class)
2013            protected com.liferay.portlet.documentlibrary.service.DLFileShortcutService dlFileShortcutService;
2014            @BeanReference(type = DLFileShortcutPersistence.class)
2015            protected DLFileShortcutPersistence dlFileShortcutPersistence;
2016            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService.class)
2017            protected com.liferay.portlet.documentlibrary.service.DLFileVersionLocalService dlFileVersionLocalService;
2018            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileVersionService.class)
2019            protected com.liferay.portlet.documentlibrary.service.DLFileVersionService dlFileVersionService;
2020            @BeanReference(type = DLFileVersionPersistence.class)
2021            protected DLFileVersionPersistence dlFileVersionPersistence;
2022            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderLocalService.class)
2023            protected com.liferay.portlet.documentlibrary.service.DLFolderLocalService dlFolderLocalService;
2024            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFolderService.class)
2025            protected com.liferay.portlet.documentlibrary.service.DLFolderService dlFolderService;
2026            @BeanReference(type = DLFolderPersistence.class)
2027            protected DLFolderPersistence dlFolderPersistence;
2028            @BeanReference(type = DLFolderFinder.class)
2029            protected DLFolderFinder dlFolderFinder;
2030            @BeanReference(type = com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService.class)
2031            protected com.liferay.portlet.documentlibrary.service.DLSyncEventLocalService dlSyncEventLocalService;
2032            @BeanReference(type = DLSyncEventPersistence.class)
2033            protected DLSyncEventPersistence dlSyncEventPersistence;
2034            @BeanReference(type = com.liferay.counter.service.CounterLocalService.class)
2035            protected com.liferay.counter.service.CounterLocalService counterLocalService;
2036            @BeanReference(type = com.liferay.portal.service.GroupLocalService.class)
2037            protected com.liferay.portal.service.GroupLocalService groupLocalService;
2038            @BeanReference(type = com.liferay.portal.service.GroupService.class)
2039            protected com.liferay.portal.service.GroupService groupService;
2040            @BeanReference(type = GroupPersistence.class)
2041            protected GroupPersistence groupPersistence;
2042            @BeanReference(type = GroupFinder.class)
2043            protected GroupFinder groupFinder;
2044            @BeanReference(type = com.liferay.portal.service.ImageLocalService.class)
2045            protected com.liferay.portal.service.ImageLocalService imageLocalService;
2046            @BeanReference(type = com.liferay.portal.service.ImageService.class)
2047            protected com.liferay.portal.service.ImageService imageService;
2048            @BeanReference(type = ImagePersistence.class)
2049            protected ImagePersistence imagePersistence;
2050            @BeanReference(type = com.liferay.portal.service.LockLocalService.class)
2051            protected com.liferay.portal.service.LockLocalService lockLocalService;
2052            @BeanReference(type = LockPersistence.class)
2053            protected LockPersistence lockPersistence;
2054            @BeanReference(type = LockFinder.class)
2055            protected LockFinder lockFinder;
2056            @BeanReference(type = com.liferay.portal.service.RepositoryLocalService.class)
2057            protected com.liferay.portal.service.RepositoryLocalService repositoryLocalService;
2058            @BeanReference(type = com.liferay.portal.service.RepositoryService.class)
2059            protected com.liferay.portal.service.RepositoryService repositoryService;
2060            @BeanReference(type = RepositoryPersistence.class)
2061            protected RepositoryPersistence repositoryPersistence;
2062            @BeanReference(type = com.liferay.portal.service.ResourceLocalService.class)
2063            protected com.liferay.portal.service.ResourceLocalService resourceLocalService;
2064            @BeanReference(type = com.liferay.portal.service.UserLocalService.class)
2065            protected com.liferay.portal.service.UserLocalService userLocalService;
2066            @BeanReference(type = com.liferay.portal.service.UserService.class)
2067            protected com.liferay.portal.service.UserService userService;
2068            @BeanReference(type = UserPersistence.class)
2069            protected UserPersistence userPersistence;
2070            @BeanReference(type = UserFinder.class)
2071            protected UserFinder userFinder;
2072            @BeanReference(type = com.liferay.portal.service.WebDAVPropsLocalService.class)
2073            protected com.liferay.portal.service.WebDAVPropsLocalService webDAVPropsLocalService;
2074            @BeanReference(type = WebDAVPropsPersistence.class)
2075            protected WebDAVPropsPersistence webDAVPropsPersistence;
2076            @BeanReference(type = com.liferay.portal.service.WorkflowInstanceLinkLocalService.class)
2077            protected com.liferay.portal.service.WorkflowInstanceLinkLocalService workflowInstanceLinkLocalService;
2078            @BeanReference(type = WorkflowInstanceLinkPersistence.class)
2079            protected WorkflowInstanceLinkPersistence workflowInstanceLinkPersistence;
2080            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryLocalService.class)
2081            protected com.liferay.portlet.asset.service.AssetCategoryLocalService assetCategoryLocalService;
2082            @BeanReference(type = com.liferay.portlet.asset.service.AssetCategoryService.class)
2083            protected com.liferay.portlet.asset.service.AssetCategoryService assetCategoryService;
2084            @BeanReference(type = AssetCategoryPersistence.class)
2085            protected AssetCategoryPersistence assetCategoryPersistence;
2086            @BeanReference(type = AssetCategoryFinder.class)
2087            protected AssetCategoryFinder assetCategoryFinder;
2088            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryLocalService.class)
2089            protected com.liferay.portlet.asset.service.AssetEntryLocalService assetEntryLocalService;
2090            @BeanReference(type = com.liferay.portlet.asset.service.AssetEntryService.class)
2091            protected com.liferay.portlet.asset.service.AssetEntryService assetEntryService;
2092            @BeanReference(type = AssetEntryPersistence.class)
2093            protected AssetEntryPersistence assetEntryPersistence;
2094            @BeanReference(type = AssetEntryFinder.class)
2095            protected AssetEntryFinder assetEntryFinder;
2096            @BeanReference(type = com.liferay.portlet.asset.service.AssetLinkLocalService.class)
2097            protected com.liferay.portlet.asset.service.AssetLinkLocalService assetLinkLocalService;
2098            @BeanReference(type = AssetLinkPersistence.class)
2099            protected AssetLinkPersistence assetLinkPersistence;
2100            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagLocalService.class)
2101            protected com.liferay.portlet.asset.service.AssetTagLocalService assetTagLocalService;
2102            @BeanReference(type = com.liferay.portlet.asset.service.AssetTagService.class)
2103            protected com.liferay.portlet.asset.service.AssetTagService assetTagService;
2104            @BeanReference(type = AssetTagPersistence.class)
2105            protected AssetTagPersistence assetTagPersistence;
2106            @BeanReference(type = AssetTagFinder.class)
2107            protected AssetTagFinder assetTagFinder;
2108            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
2109            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
2110            @BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
2111            protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
2112            @BeanReference(type = DDMStructurePersistence.class)
2113            protected DDMStructurePersistence ddmStructurePersistence;
2114            @BeanReference(type = DDMStructureFinder.class)
2115            protected DDMStructureFinder ddmStructureFinder;
2116            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
2117            protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
2118            @BeanReference(type = ExpandoRowPersistence.class)
2119            protected ExpandoRowPersistence expandoRowPersistence;
2120            @BeanReference(type = com.liferay.portlet.expando.service.ExpandoTableLocalService.class)
2121            protected com.liferay.portlet.expando.service.ExpandoTableLocalService expandoTableLocalService;
2122            @BeanReference(type = ExpandoTablePersistence.class)
2123            protected ExpandoTablePersistence expandoTablePersistence;
2124            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageLocalService.class)
2125            protected com.liferay.portlet.messageboards.service.MBMessageLocalService mbMessageLocalService;
2126            @BeanReference(type = com.liferay.portlet.messageboards.service.MBMessageService.class)
2127            protected com.liferay.portlet.messageboards.service.MBMessageService mbMessageService;
2128            @BeanReference(type = MBMessagePersistence.class)
2129            protected MBMessagePersistence mbMessagePersistence;
2130            @BeanReference(type = MBMessageFinder.class)
2131            protected MBMessageFinder mbMessageFinder;
2132            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryLocalService.class)
2133            protected com.liferay.portlet.trash.service.TrashEntryLocalService trashEntryLocalService;
2134            @BeanReference(type = com.liferay.portlet.trash.service.TrashEntryService.class)
2135            protected com.liferay.portlet.trash.service.TrashEntryService trashEntryService;
2136            @BeanReference(type = TrashEntryPersistence.class)
2137            protected TrashEntryPersistence trashEntryPersistence;
2138            @BeanReference(type = PersistedModelLocalServiceRegistry.class)
2139            protected PersistedModelLocalServiceRegistry persistedModelLocalServiceRegistry;
2140            private String _beanIdentifier;
2141    }