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;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    import com.liferay.portal.service.ServiceWrapper;
020    
021    /**
022     * Provides a wrapper for {@link DLFileEntryTypeLocalService}.
023     *
024     * @author Brian Wing Shun Chan
025     * @see DLFileEntryTypeLocalService
026     * @generated
027     */
028    @ProviderType
029    public class DLFileEntryTypeLocalServiceWrapper
030            implements DLFileEntryTypeLocalService,
031                    ServiceWrapper<DLFileEntryTypeLocalService> {
032            public DLFileEntryTypeLocalServiceWrapper(
033                    DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
034                    _dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
035            }
036    
037            /**
038            * Adds the document library file entry type to the database. Also notifies the appropriate model listeners.
039            *
040            * @param dlFileEntryType the document library file entry type
041            * @return the document library file entry type that was added
042            * @throws SystemException if a system exception occurred
043            */
044            @Override
045            public com.liferay.portlet.documentlibrary.model.DLFileEntryType addDLFileEntryType(
046                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
047                    throws com.liferay.portal.kernel.exception.SystemException {
048                    return _dlFileEntryTypeLocalService.addDLFileEntryType(dlFileEntryType);
049            }
050    
051            /**
052            * Creates a new document library file entry type with the primary key. Does not add the document library file entry type to the database.
053            *
054            * @param fileEntryTypeId the primary key for the new document library file entry type
055            * @return the new document library file entry type
056            */
057            @Override
058            public com.liferay.portlet.documentlibrary.model.DLFileEntryType createDLFileEntryType(
059                    long fileEntryTypeId) {
060                    return _dlFileEntryTypeLocalService.createDLFileEntryType(fileEntryTypeId);
061            }
062    
063            /**
064            * Deletes the document library file entry type with the primary key from the database. Also notifies the appropriate model listeners.
065            *
066            * @param fileEntryTypeId the primary key of the document library file entry type
067            * @return the document library file entry type that was removed
068            * @throws PortalException if a document library file entry type with the primary key could not be found
069            * @throws SystemException if a system exception occurred
070            */
071            @Override
072            public com.liferay.portlet.documentlibrary.model.DLFileEntryType deleteDLFileEntryType(
073                    long fileEntryTypeId)
074                    throws com.liferay.portal.kernel.exception.PortalException,
075                            com.liferay.portal.kernel.exception.SystemException {
076                    return _dlFileEntryTypeLocalService.deleteDLFileEntryType(fileEntryTypeId);
077            }
078    
079            /**
080            * Deletes the document library file entry type from the database. Also notifies the appropriate model listeners.
081            *
082            * @param dlFileEntryType the document library file entry type
083            * @return the document library file entry type that was removed
084            * @throws SystemException if a system exception occurred
085            */
086            @Override
087            public com.liferay.portlet.documentlibrary.model.DLFileEntryType deleteDLFileEntryType(
088                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
089                    throws com.liferay.portal.kernel.exception.SystemException {
090                    return _dlFileEntryTypeLocalService.deleteDLFileEntryType(dlFileEntryType);
091            }
092    
093            @Override
094            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
095                    return _dlFileEntryTypeLocalService.dynamicQuery();
096            }
097    
098            /**
099            * Performs a dynamic query on the database and returns the matching rows.
100            *
101            * @param dynamicQuery the dynamic query
102            * @return the matching rows
103            * @throws SystemException if a system exception occurred
104            */
105            @Override
106            @SuppressWarnings("rawtypes")
107            public java.util.List dynamicQuery(
108                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
109                    throws com.liferay.portal.kernel.exception.SystemException {
110                    return _dlFileEntryTypeLocalService.dynamicQuery(dynamicQuery);
111            }
112    
113            /**
114            * Performs a dynamic query on the database and returns a range of the matching rows.
115            *
116            * <p>
117            * 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.DLFileEntryTypeModelImpl}. 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.
118            * </p>
119            *
120            * @param dynamicQuery the dynamic query
121            * @param start the lower bound of the range of model instances
122            * @param end the upper bound of the range of model instances (not inclusive)
123            * @return the range of matching rows
124            * @throws SystemException if a system exception occurred
125            */
126            @Override
127            @SuppressWarnings("rawtypes")
128            public java.util.List dynamicQuery(
129                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
130                    int end) throws com.liferay.portal.kernel.exception.SystemException {
131                    return _dlFileEntryTypeLocalService.dynamicQuery(dynamicQuery, start,
132                            end);
133            }
134    
135            /**
136            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
137            *
138            * <p>
139            * 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.DLFileEntryTypeModelImpl}. 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.
140            * </p>
141            *
142            * @param dynamicQuery the dynamic query
143            * @param start the lower bound of the range of model instances
144            * @param end the upper bound of the range of model instances (not inclusive)
145            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
146            * @return the ordered range of matching rows
147            * @throws SystemException if a system exception occurred
148            */
149            @Override
150            @SuppressWarnings("rawtypes")
151            public java.util.List dynamicQuery(
152                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
153                    int end,
154                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
155                    throws com.liferay.portal.kernel.exception.SystemException {
156                    return _dlFileEntryTypeLocalService.dynamicQuery(dynamicQuery, start,
157                            end, orderByComparator);
158            }
159    
160            /**
161            * Returns the number of rows that match the dynamic query.
162            *
163            * @param dynamicQuery the dynamic query
164            * @return the number of rows that match the dynamic query
165            * @throws SystemException if a system exception occurred
166            */
167            @Override
168            public long dynamicQueryCount(
169                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
170                    throws com.liferay.portal.kernel.exception.SystemException {
171                    return _dlFileEntryTypeLocalService.dynamicQueryCount(dynamicQuery);
172            }
173    
174            /**
175            * Returns the number of rows that match the dynamic query.
176            *
177            * @param dynamicQuery the dynamic query
178            * @param projection the projection to apply to the query
179            * @return the number of rows that match the dynamic query
180            * @throws SystemException if a system exception occurred
181            */
182            @Override
183            public long dynamicQueryCount(
184                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
185                    com.liferay.portal.kernel.dao.orm.Projection projection)
186                    throws com.liferay.portal.kernel.exception.SystemException {
187                    return _dlFileEntryTypeLocalService.dynamicQueryCount(dynamicQuery,
188                            projection);
189            }
190    
191            @Override
192            public com.liferay.portlet.documentlibrary.model.DLFileEntryType fetchDLFileEntryType(
193                    long fileEntryTypeId)
194                    throws com.liferay.portal.kernel.exception.SystemException {
195                    return _dlFileEntryTypeLocalService.fetchDLFileEntryType(fileEntryTypeId);
196            }
197    
198            /**
199            * Returns the document library file entry type with the matching UUID and company.
200            *
201            * @param uuid the document library file entry type's UUID
202            * @param companyId the primary key of the company
203            * @return the matching document library file entry type, or <code>null</code> if a matching document library file entry type could not be found
204            * @throws SystemException if a system exception occurred
205            */
206            @Override
207            public com.liferay.portlet.documentlibrary.model.DLFileEntryType fetchDLFileEntryTypeByUuidAndCompanyId(
208                    java.lang.String uuid, long companyId)
209                    throws com.liferay.portal.kernel.exception.SystemException {
210                    return _dlFileEntryTypeLocalService.fetchDLFileEntryTypeByUuidAndCompanyId(uuid,
211                            companyId);
212            }
213    
214            /**
215            * Returns the document library file entry type matching the UUID and group.
216            *
217            * @param uuid the document library file entry type's UUID
218            * @param groupId the primary key of the group
219            * @return the matching document library file entry type, or <code>null</code> if a matching document library file entry type could not be found
220            * @throws SystemException if a system exception occurred
221            */
222            @Override
223            public com.liferay.portlet.documentlibrary.model.DLFileEntryType fetchDLFileEntryTypeByUuidAndGroupId(
224                    java.lang.String uuid, long groupId)
225                    throws com.liferay.portal.kernel.exception.SystemException {
226                    return _dlFileEntryTypeLocalService.fetchDLFileEntryTypeByUuidAndGroupId(uuid,
227                            groupId);
228            }
229    
230            /**
231            * Returns the document library file entry type with the primary key.
232            *
233            * @param fileEntryTypeId the primary key of the document library file entry type
234            * @return the document library file entry type
235            * @throws PortalException if a document library file entry type with the primary key could not be found
236            * @throws SystemException if a system exception occurred
237            */
238            @Override
239            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getDLFileEntryType(
240                    long fileEntryTypeId)
241                    throws com.liferay.portal.kernel.exception.PortalException,
242                            com.liferay.portal.kernel.exception.SystemException {
243                    return _dlFileEntryTypeLocalService.getDLFileEntryType(fileEntryTypeId);
244            }
245    
246            @Override
247            public com.liferay.portal.model.PersistedModel getPersistedModel(
248                    java.io.Serializable primaryKeyObj)
249                    throws com.liferay.portal.kernel.exception.PortalException,
250                            com.liferay.portal.kernel.exception.SystemException {
251                    return _dlFileEntryTypeLocalService.getPersistedModel(primaryKeyObj);
252            }
253    
254            /**
255            * Returns the document library file entry type with the matching UUID and company.
256            *
257            * @param uuid the document library file entry type's UUID
258            * @param companyId the primary key of the company
259            * @return the matching document library file entry type
260            * @throws PortalException if a matching document library file entry type could not be found
261            * @throws SystemException if a system exception occurred
262            */
263            @Override
264            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getDLFileEntryTypeByUuidAndCompanyId(
265                    java.lang.String uuid, long companyId)
266                    throws com.liferay.portal.kernel.exception.PortalException,
267                            com.liferay.portal.kernel.exception.SystemException {
268                    return _dlFileEntryTypeLocalService.getDLFileEntryTypeByUuidAndCompanyId(uuid,
269                            companyId);
270            }
271    
272            /**
273            * Returns the document library file entry type matching the UUID and group.
274            *
275            * @param uuid the document library file entry type's UUID
276            * @param groupId the primary key of the group
277            * @return the matching document library file entry type
278            * @throws PortalException if a matching document library file entry type could not be found
279            * @throws SystemException if a system exception occurred
280            */
281            @Override
282            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getDLFileEntryTypeByUuidAndGroupId(
283                    java.lang.String uuid, long groupId)
284                    throws com.liferay.portal.kernel.exception.PortalException,
285                            com.liferay.portal.kernel.exception.SystemException {
286                    return _dlFileEntryTypeLocalService.getDLFileEntryTypeByUuidAndGroupId(uuid,
287                            groupId);
288            }
289    
290            /**
291            * Returns a range of all the document library file entry types.
292            *
293            * <p>
294            * 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.DLFileEntryTypeModelImpl}. 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.
295            * </p>
296            *
297            * @param start the lower bound of the range of document library file entry types
298            * @param end the upper bound of the range of document library file entry types (not inclusive)
299            * @return the range of document library file entry types
300            * @throws SystemException if a system exception occurred
301            */
302            @Override
303            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDLFileEntryTypes(
304                    int start, int end)
305                    throws com.liferay.portal.kernel.exception.SystemException {
306                    return _dlFileEntryTypeLocalService.getDLFileEntryTypes(start, end);
307            }
308    
309            /**
310            * Returns the number of document library file entry types.
311            *
312            * @return the number of document library file entry types
313            * @throws SystemException if a system exception occurred
314            */
315            @Override
316            public int getDLFileEntryTypesCount()
317                    throws com.liferay.portal.kernel.exception.SystemException {
318                    return _dlFileEntryTypeLocalService.getDLFileEntryTypesCount();
319            }
320    
321            /**
322            * Updates the document library file entry type in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
323            *
324            * @param dlFileEntryType the document library file entry type
325            * @return the document library file entry type that was updated
326            * @throws SystemException if a system exception occurred
327            */
328            @Override
329            public com.liferay.portlet.documentlibrary.model.DLFileEntryType updateDLFileEntryType(
330                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
331                    throws com.liferay.portal.kernel.exception.SystemException {
332                    return _dlFileEntryTypeLocalService.updateDLFileEntryType(dlFileEntryType);
333            }
334    
335            /**
336            * @throws SystemException if a system exception occurred
337            */
338            @Override
339            public void addDLFolderDLFileEntryType(long folderId, long fileEntryTypeId)
340                    throws com.liferay.portal.kernel.exception.SystemException {
341                    _dlFileEntryTypeLocalService.addDLFolderDLFileEntryType(folderId,
342                            fileEntryTypeId);
343            }
344    
345            /**
346            * @throws SystemException if a system exception occurred
347            */
348            @Override
349            public void addDLFolderDLFileEntryType(long folderId,
350                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
351                    throws com.liferay.portal.kernel.exception.SystemException {
352                    _dlFileEntryTypeLocalService.addDLFolderDLFileEntryType(folderId,
353                            dlFileEntryType);
354            }
355    
356            /**
357            * @throws SystemException if a system exception occurred
358            */
359            @Override
360            public void addDLFolderDLFileEntryTypes(long folderId,
361                    long[] fileEntryTypeIds)
362                    throws com.liferay.portal.kernel.exception.SystemException {
363                    _dlFileEntryTypeLocalService.addDLFolderDLFileEntryTypes(folderId,
364                            fileEntryTypeIds);
365            }
366    
367            /**
368            * @throws SystemException if a system exception occurred
369            */
370            @Override
371            public void addDLFolderDLFileEntryTypes(long folderId,
372                    java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> DLFileEntryTypes)
373                    throws com.liferay.portal.kernel.exception.SystemException {
374                    _dlFileEntryTypeLocalService.addDLFolderDLFileEntryTypes(folderId,
375                            DLFileEntryTypes);
376            }
377    
378            /**
379            * @throws SystemException if a system exception occurred
380            */
381            @Override
382            public void clearDLFolderDLFileEntryTypes(long folderId)
383                    throws com.liferay.portal.kernel.exception.SystemException {
384                    _dlFileEntryTypeLocalService.clearDLFolderDLFileEntryTypes(folderId);
385            }
386    
387            /**
388            * @throws SystemException if a system exception occurred
389            */
390            @Override
391            public void deleteDLFolderDLFileEntryType(long folderId,
392                    long fileEntryTypeId)
393                    throws com.liferay.portal.kernel.exception.SystemException {
394                    _dlFileEntryTypeLocalService.deleteDLFolderDLFileEntryType(folderId,
395                            fileEntryTypeId);
396            }
397    
398            /**
399            * @throws SystemException if a system exception occurred
400            */
401            @Override
402            public void deleteDLFolderDLFileEntryType(long folderId,
403                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    _dlFileEntryTypeLocalService.deleteDLFolderDLFileEntryType(folderId,
406                            dlFileEntryType);
407            }
408    
409            /**
410            * @throws SystemException if a system exception occurred
411            */
412            @Override
413            public void deleteDLFolderDLFileEntryTypes(long folderId,
414                    long[] fileEntryTypeIds)
415                    throws com.liferay.portal.kernel.exception.SystemException {
416                    _dlFileEntryTypeLocalService.deleteDLFolderDLFileEntryTypes(folderId,
417                            fileEntryTypeIds);
418            }
419    
420            /**
421            * @throws SystemException if a system exception occurred
422            */
423            @Override
424            public void deleteDLFolderDLFileEntryTypes(long folderId,
425                    java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> DLFileEntryTypes)
426                    throws com.liferay.portal.kernel.exception.SystemException {
427                    _dlFileEntryTypeLocalService.deleteDLFolderDLFileEntryTypes(folderId,
428                            DLFileEntryTypes);
429            }
430    
431            /**
432            * @throws SystemException if a system exception occurred
433            */
434            @Override
435            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDLFolderDLFileEntryTypes(
436                    long folderId)
437                    throws com.liferay.portal.kernel.exception.SystemException {
438                    return _dlFileEntryTypeLocalService.getDLFolderDLFileEntryTypes(folderId);
439            }
440    
441            /**
442            * @throws SystemException if a system exception occurred
443            */
444            @Override
445            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDLFolderDLFileEntryTypes(
446                    long folderId, int start, int end)
447                    throws com.liferay.portal.kernel.exception.SystemException {
448                    return _dlFileEntryTypeLocalService.getDLFolderDLFileEntryTypes(folderId,
449                            start, end);
450            }
451    
452            /**
453            * @throws SystemException if a system exception occurred
454            */
455            @Override
456            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDLFolderDLFileEntryTypes(
457                    long folderId, int start, int end,
458                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
459                    throws com.liferay.portal.kernel.exception.SystemException {
460                    return _dlFileEntryTypeLocalService.getDLFolderDLFileEntryTypes(folderId,
461                            start, end, orderByComparator);
462            }
463    
464            /**
465            * @throws SystemException if a system exception occurred
466            */
467            @Override
468            public int getDLFolderDLFileEntryTypesCount(long folderId)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return _dlFileEntryTypeLocalService.getDLFolderDLFileEntryTypesCount(folderId);
471            }
472    
473            /**
474            * @throws SystemException if a system exception occurred
475            */
476            @Override
477            public boolean hasDLFolderDLFileEntryType(long folderId,
478                    long fileEntryTypeId)
479                    throws com.liferay.portal.kernel.exception.SystemException {
480                    return _dlFileEntryTypeLocalService.hasDLFolderDLFileEntryType(folderId,
481                            fileEntryTypeId);
482            }
483    
484            /**
485            * @throws SystemException if a system exception occurred
486            */
487            @Override
488            public boolean hasDLFolderDLFileEntryTypes(long folderId)
489                    throws com.liferay.portal.kernel.exception.SystemException {
490                    return _dlFileEntryTypeLocalService.hasDLFolderDLFileEntryTypes(folderId);
491            }
492    
493            /**
494            * @throws SystemException if a system exception occurred
495            */
496            @Override
497            public void setDLFolderDLFileEntryTypes(long folderId,
498                    long[] fileEntryTypeIds)
499                    throws com.liferay.portal.kernel.exception.SystemException {
500                    _dlFileEntryTypeLocalService.setDLFolderDLFileEntryTypes(folderId,
501                            fileEntryTypeIds);
502            }
503    
504            /**
505            * @throws SystemException if a system exception occurred
506            */
507            @Override
508            public void addDDMStructureDLFileEntryType(long structureId,
509                    long fileEntryTypeId)
510                    throws com.liferay.portal.kernel.exception.SystemException {
511                    _dlFileEntryTypeLocalService.addDDMStructureDLFileEntryType(structureId,
512                            fileEntryTypeId);
513            }
514    
515            /**
516            * @throws SystemException if a system exception occurred
517            */
518            @Override
519            public void addDDMStructureDLFileEntryType(long structureId,
520                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
521                    throws com.liferay.portal.kernel.exception.SystemException {
522                    _dlFileEntryTypeLocalService.addDDMStructureDLFileEntryType(structureId,
523                            dlFileEntryType);
524            }
525    
526            /**
527            * @throws SystemException if a system exception occurred
528            */
529            @Override
530            public void addDDMStructureDLFileEntryTypes(long structureId,
531                    long[] fileEntryTypeIds)
532                    throws com.liferay.portal.kernel.exception.SystemException {
533                    _dlFileEntryTypeLocalService.addDDMStructureDLFileEntryTypes(structureId,
534                            fileEntryTypeIds);
535            }
536    
537            /**
538            * @throws SystemException if a system exception occurred
539            */
540            @Override
541            public void addDDMStructureDLFileEntryTypes(long structureId,
542                    java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> DLFileEntryTypes)
543                    throws com.liferay.portal.kernel.exception.SystemException {
544                    _dlFileEntryTypeLocalService.addDDMStructureDLFileEntryTypes(structureId,
545                            DLFileEntryTypes);
546            }
547    
548            /**
549            * @throws SystemException if a system exception occurred
550            */
551            @Override
552            public void clearDDMStructureDLFileEntryTypes(long structureId)
553                    throws com.liferay.portal.kernel.exception.SystemException {
554                    _dlFileEntryTypeLocalService.clearDDMStructureDLFileEntryTypes(structureId);
555            }
556    
557            /**
558            * @throws SystemException if a system exception occurred
559            */
560            @Override
561            public void deleteDDMStructureDLFileEntryType(long structureId,
562                    long fileEntryTypeId)
563                    throws com.liferay.portal.kernel.exception.SystemException {
564                    _dlFileEntryTypeLocalService.deleteDDMStructureDLFileEntryType(structureId,
565                            fileEntryTypeId);
566            }
567    
568            /**
569            * @throws SystemException if a system exception occurred
570            */
571            @Override
572            public void deleteDDMStructureDLFileEntryType(long structureId,
573                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
574                    throws com.liferay.portal.kernel.exception.SystemException {
575                    _dlFileEntryTypeLocalService.deleteDDMStructureDLFileEntryType(structureId,
576                            dlFileEntryType);
577            }
578    
579            /**
580            * @throws SystemException if a system exception occurred
581            */
582            @Override
583            public void deleteDDMStructureDLFileEntryTypes(long structureId,
584                    long[] fileEntryTypeIds)
585                    throws com.liferay.portal.kernel.exception.SystemException {
586                    _dlFileEntryTypeLocalService.deleteDDMStructureDLFileEntryTypes(structureId,
587                            fileEntryTypeIds);
588            }
589    
590            /**
591            * @throws SystemException if a system exception occurred
592            */
593            @Override
594            public void deleteDDMStructureDLFileEntryTypes(long structureId,
595                    java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> DLFileEntryTypes)
596                    throws com.liferay.portal.kernel.exception.SystemException {
597                    _dlFileEntryTypeLocalService.deleteDDMStructureDLFileEntryTypes(structureId,
598                            DLFileEntryTypes);
599            }
600    
601            /**
602            * @throws SystemException if a system exception occurred
603            */
604            @Override
605            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDDMStructureDLFileEntryTypes(
606                    long structureId)
607                    throws com.liferay.portal.kernel.exception.SystemException {
608                    return _dlFileEntryTypeLocalService.getDDMStructureDLFileEntryTypes(structureId);
609            }
610    
611            /**
612            * @throws SystemException if a system exception occurred
613            */
614            @Override
615            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDDMStructureDLFileEntryTypes(
616                    long structureId, int start, int end)
617                    throws com.liferay.portal.kernel.exception.SystemException {
618                    return _dlFileEntryTypeLocalService.getDDMStructureDLFileEntryTypes(structureId,
619                            start, end);
620            }
621    
622            /**
623            * @throws SystemException if a system exception occurred
624            */
625            @Override
626            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getDDMStructureDLFileEntryTypes(
627                    long structureId, int start, int end,
628                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
629                    throws com.liferay.portal.kernel.exception.SystemException {
630                    return _dlFileEntryTypeLocalService.getDDMStructureDLFileEntryTypes(structureId,
631                            start, end, orderByComparator);
632            }
633    
634            /**
635            * @throws SystemException if a system exception occurred
636            */
637            @Override
638            public int getDDMStructureDLFileEntryTypesCount(long structureId)
639                    throws com.liferay.portal.kernel.exception.SystemException {
640                    return _dlFileEntryTypeLocalService.getDDMStructureDLFileEntryTypesCount(structureId);
641            }
642    
643            /**
644            * @throws SystemException if a system exception occurred
645            */
646            @Override
647            public boolean hasDDMStructureDLFileEntryType(long structureId,
648                    long fileEntryTypeId)
649                    throws com.liferay.portal.kernel.exception.SystemException {
650                    return _dlFileEntryTypeLocalService.hasDDMStructureDLFileEntryType(structureId,
651                            fileEntryTypeId);
652            }
653    
654            /**
655            * @throws SystemException if a system exception occurred
656            */
657            @Override
658            public boolean hasDDMStructureDLFileEntryTypes(long structureId)
659                    throws com.liferay.portal.kernel.exception.SystemException {
660                    return _dlFileEntryTypeLocalService.hasDDMStructureDLFileEntryTypes(structureId);
661            }
662    
663            /**
664            * @throws SystemException if a system exception occurred
665            */
666            @Override
667            public void setDDMStructureDLFileEntryTypes(long structureId,
668                    long[] fileEntryTypeIds)
669                    throws com.liferay.portal.kernel.exception.SystemException {
670                    _dlFileEntryTypeLocalService.setDDMStructureDLFileEntryTypes(structureId,
671                            fileEntryTypeIds);
672            }
673    
674            /**
675            * Returns the Spring bean ID for this bean.
676            *
677            * @return the Spring bean ID for this bean
678            */
679            @Override
680            public java.lang.String getBeanIdentifier() {
681                    return _dlFileEntryTypeLocalService.getBeanIdentifier();
682            }
683    
684            /**
685            * Sets the Spring bean ID for this bean.
686            *
687            * @param beanIdentifier the Spring bean ID for this bean
688            */
689            @Override
690            public void setBeanIdentifier(java.lang.String beanIdentifier) {
691                    _dlFileEntryTypeLocalService.setBeanIdentifier(beanIdentifier);
692            }
693    
694            @Override
695            public com.liferay.portlet.documentlibrary.model.DLFileEntryType addFileEntryType(
696                    long userId, long groupId, java.lang.String fileEntryTypeKey,
697                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
698                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
699                    long[] ddmStructureIds,
700                    com.liferay.portal.service.ServiceContext serviceContext)
701                    throws com.liferay.portal.kernel.exception.PortalException,
702                            com.liferay.portal.kernel.exception.SystemException {
703                    return _dlFileEntryTypeLocalService.addFileEntryType(userId, groupId,
704                            fileEntryTypeKey, nameMap, descriptionMap, ddmStructureIds,
705                            serviceContext);
706            }
707    
708            @Override
709            public com.liferay.portlet.documentlibrary.model.DLFileEntryType addFileEntryType(
710                    long userId, long groupId, java.lang.String name,
711                    java.lang.String description, long[] ddmStructureIds,
712                    com.liferay.portal.service.ServiceContext serviceContext)
713                    throws com.liferay.portal.kernel.exception.PortalException,
714                            com.liferay.portal.kernel.exception.SystemException {
715                    return _dlFileEntryTypeLocalService.addFileEntryType(userId, groupId,
716                            name, description, ddmStructureIds, serviceContext);
717            }
718    
719            @Override
720            public void cascadeFileEntryTypes(long userId,
721                    com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
722                    throws com.liferay.portal.kernel.exception.PortalException,
723                            com.liferay.portal.kernel.exception.SystemException {
724                    _dlFileEntryTypeLocalService.cascadeFileEntryTypes(userId, dlFolder);
725            }
726    
727            @Override
728            public void deleteFileEntryType(
729                    com.liferay.portlet.documentlibrary.model.DLFileEntryType dlFileEntryType)
730                    throws com.liferay.portal.kernel.exception.PortalException,
731                            com.liferay.portal.kernel.exception.SystemException {
732                    _dlFileEntryTypeLocalService.deleteFileEntryType(dlFileEntryType);
733            }
734    
735            @Override
736            public void deleteFileEntryType(long fileEntryTypeId)
737                    throws com.liferay.portal.kernel.exception.PortalException,
738                            com.liferay.portal.kernel.exception.SystemException {
739                    _dlFileEntryTypeLocalService.deleteFileEntryType(fileEntryTypeId);
740            }
741    
742            @Override
743            public void deleteFileEntryTypes(long groupId)
744                    throws com.liferay.portal.kernel.exception.PortalException,
745                            com.liferay.portal.kernel.exception.SystemException {
746                    _dlFileEntryTypeLocalService.deleteFileEntryTypes(groupId);
747            }
748    
749            @Override
750            public com.liferay.portlet.documentlibrary.model.DLFileEntryType fetchFileEntryType(
751                    long fileEntryTypeId)
752                    throws com.liferay.portal.kernel.exception.SystemException {
753                    return _dlFileEntryTypeLocalService.fetchFileEntryType(fileEntryTypeId);
754            }
755    
756            @Override
757            public com.liferay.portlet.documentlibrary.model.DLFileEntryType fetchFileEntryType(
758                    long groupId, java.lang.String fileEntryTypeKey)
759                    throws com.liferay.portal.kernel.exception.SystemException {
760                    return _dlFileEntryTypeLocalService.fetchFileEntryType(groupId,
761                            fileEntryTypeKey);
762            }
763    
764            @Override
765            public long getDefaultFileEntryTypeId(long folderId)
766                    throws com.liferay.portal.kernel.exception.PortalException,
767                            com.liferay.portal.kernel.exception.SystemException {
768                    return _dlFileEntryTypeLocalService.getDefaultFileEntryTypeId(folderId);
769            }
770    
771            @Override
772            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getFileEntryType(
773                    long fileEntryTypeId)
774                    throws com.liferay.portal.kernel.exception.PortalException,
775                            com.liferay.portal.kernel.exception.SystemException {
776                    return _dlFileEntryTypeLocalService.getFileEntryType(fileEntryTypeId);
777            }
778    
779            @Override
780            public com.liferay.portlet.documentlibrary.model.DLFileEntryType getFileEntryType(
781                    long groupId, java.lang.String fileEntryTypeKey)
782                    throws com.liferay.portal.kernel.exception.PortalException,
783                            com.liferay.portal.kernel.exception.SystemException {
784                    return _dlFileEntryTypeLocalService.getFileEntryType(groupId,
785                            fileEntryTypeKey);
786            }
787    
788            @Override
789            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getFileEntryTypes(
790                    long[] groupIds)
791                    throws com.liferay.portal.kernel.exception.SystemException {
792                    return _dlFileEntryTypeLocalService.getFileEntryTypes(groupIds);
793            }
794    
795            @Override
796            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> getFolderFileEntryTypes(
797                    long[] groupIds, long folderId, boolean inherited)
798                    throws com.liferay.portal.kernel.exception.PortalException,
799                            com.liferay.portal.kernel.exception.SystemException {
800                    return _dlFileEntryTypeLocalService.getFolderFileEntryTypes(groupIds,
801                            folderId, inherited);
802            }
803    
804            @Override
805            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFileEntryType> search(
806                    long companyId, long[] groupIds, java.lang.String keywords,
807                    boolean includeBasicFileEntryType, int start, int end,
808                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
809                    throws com.liferay.portal.kernel.exception.SystemException {
810                    return _dlFileEntryTypeLocalService.search(companyId, groupIds,
811                            keywords, includeBasicFileEntryType, start, end, orderByComparator);
812            }
813    
814            @Override
815            public int searchCount(long companyId, long[] groupIds,
816                    java.lang.String keywords, boolean includeBasicFileEntryType)
817                    throws com.liferay.portal.kernel.exception.SystemException {
818                    return _dlFileEntryTypeLocalService.searchCount(companyId, groupIds,
819                            keywords, includeBasicFileEntryType);
820            }
821    
822            @Override
823            public void unsetFolderFileEntryTypes(long folderId)
824                    throws com.liferay.portal.kernel.exception.SystemException {
825                    _dlFileEntryTypeLocalService.unsetFolderFileEntryTypes(folderId);
826            }
827    
828            @Override
829            public com.liferay.portlet.documentlibrary.model.DLFileEntry updateFileEntryFileEntryType(
830                    com.liferay.portlet.documentlibrary.model.DLFileEntry dlFileEntry,
831                    com.liferay.portal.service.ServiceContext serviceContext)
832                    throws com.liferay.portal.kernel.exception.PortalException,
833                            com.liferay.portal.kernel.exception.SystemException {
834                    return _dlFileEntryTypeLocalService.updateFileEntryFileEntryType(dlFileEntry,
835                            serviceContext);
836            }
837    
838            @Override
839            public void updateFileEntryType(long userId, long fileEntryTypeId,
840                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
841                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
842                    long[] ddmStructureIds,
843                    com.liferay.portal.service.ServiceContext serviceContext)
844                    throws com.liferay.portal.kernel.exception.PortalException,
845                            com.liferay.portal.kernel.exception.SystemException {
846                    _dlFileEntryTypeLocalService.updateFileEntryType(userId,
847                            fileEntryTypeId, nameMap, descriptionMap, ddmStructureIds,
848                            serviceContext);
849            }
850    
851            @Override
852            public void updateFileEntryType(long userId, long fileEntryTypeId,
853                    java.lang.String name, java.lang.String description,
854                    long[] ddmStructureIds,
855                    com.liferay.portal.service.ServiceContext serviceContext)
856                    throws com.liferay.portal.kernel.exception.PortalException,
857                            com.liferay.portal.kernel.exception.SystemException {
858                    _dlFileEntryTypeLocalService.updateFileEntryType(userId,
859                            fileEntryTypeId, name, description, ddmStructureIds, serviceContext);
860            }
861    
862            @Override
863            public void updateFolderFileEntryTypes(
864                    com.liferay.portlet.documentlibrary.model.DLFolder dlFolder,
865                    java.util.List<java.lang.Long> fileEntryTypeIds,
866                    long defaultFileEntryTypeId,
867                    com.liferay.portal.service.ServiceContext serviceContext)
868                    throws com.liferay.portal.kernel.exception.PortalException,
869                            com.liferay.portal.kernel.exception.SystemException {
870                    _dlFileEntryTypeLocalService.updateFolderFileEntryTypes(dlFolder,
871                            fileEntryTypeIds, defaultFileEntryTypeId, serviceContext);
872            }
873    
874            /**
875             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
876             */
877            public DLFileEntryTypeLocalService getWrappedDLFileEntryTypeLocalService() {
878                    return _dlFileEntryTypeLocalService;
879            }
880    
881            /**
882             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
883             */
884            public void setWrappedDLFileEntryTypeLocalService(
885                    DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
886                    _dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
887            }
888    
889            @Override
890            public DLFileEntryTypeLocalService getWrappedService() {
891                    return _dlFileEntryTypeLocalService;
892            }
893    
894            @Override
895            public void setWrappedService(
896                    DLFileEntryTypeLocalService dlFileEntryTypeLocalService) {
897                    _dlFileEntryTypeLocalService = dlFileEntryTypeLocalService;
898            }
899    
900            private DLFileEntryTypeLocalService _dlFileEntryTypeLocalService;
901    }