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