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